From 350fd7c39fcb2c2ef517e175e2df93a6c4652c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=81=A5=E8=8E=B9?= Date: Fri, 13 Sep 2024 21:17:09 +0800 Subject: [PATCH] v3.5.1 --- CHANGELOG.md | 27 +++++++++++++++++++++++++-- pubspec.yaml | 2 +- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13c9351..be7b482 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,37 +1,60 @@ +# 3.5.1 + +- Updates minimum supported SDK version to Dart 3.0. +- Fixes all lint warnings. +- Added x-amz-security-token header support for session tokens. +- Wait for rename to finish before in `fGetObject`. +- Updated `MinioError` to implement the `Exception` interface. +- Added XML validation before parsing response body. +- Updated return type of `presignedPostPolicy` to `Future`. +- Replaced `push` with `add` for adding conditions to the policy. + # 3.5.0 + - Fix listObject with utf-8 prefix # 3.4.0-pre + - Better upload progress on web + # 3.3.3 + - Fix empty upload error - Update README.md # 3.3.3-pre + - Update stream file upload # 3.3.2-pre + - Add tests # 3.3.1-pre + - Improve upload progress granularity - Fix broken test # 3.3.0-pre + - Support listening upload progress # 3.2.0 + - Fix response body utf-8 encoding [#14] # 3.1.0 + - Add `listAllObjects` and `listAllObjectsV2` - Fix signing error in `listObjects` when prefix contains spaces [#34] - Improved compatibility with Filebase [#31] # 3.0.0 + - Fixes signing error in case object name contains symbols [#29] # 2.1.0-pre + - `getObject` now returns `MinioByteStream` with an additional `contentLength` field. ## 2.0.0-pre @@ -43,6 +66,7 @@ - Object's ACL Query; Include object's ACL in stat [#23](https://github.com/xtyxtyx/minio-dart/pull/23), thanks [@rtgnx](https://github.com/rtgnx) ## 1.3.0 + - fix HTTP header for user-defined object metadata [#17](https://github.com/xtyxtyx/minio-dart/issues/17), thanks [@philenius](https://github.com/philenius) ## 1.2.0 @@ -55,7 +79,6 @@ - fix bucketExists is true when bucket doesn't exist #13 - ## 1.0.2-pre - Replace static region 'us-east-1' in method listBuckets() with variable's value @@ -114,4 +137,4 @@ [#34]: https://github.com/xtyxtyx/minio-dart/issues/34 [#31]: https://github.com/xtyxtyx/minio-dart/issues/31 [#29]: https://github.com/xtyxtyx/minio-dart/issues/29 -[#14]: https://github.com/xtyxtyx/minio-dart/issues/14 \ No newline at end of file +[#14]: https://github.com/xtyxtyx/minio-dart/issues/14 diff --git a/pubspec.yaml b/pubspec.yaml index 3270d09..ac75592 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: minio description: Unofficial MinIO Dart Client SDK that provides simple APIs to access any Amazon S3 compatible object storage server. -version: 3.5.0 +version: 3.5.1 homepage: https://github.com/xtyxtyx/minio-dart issue_tracker: https://github.com/xtyxtyx/minio-dart/issues