diff --git a/CHANGELOG.md b/CHANGELOG.md index 012f1b0dd8ba..832c0cc41958 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/). +## [v0.19.1] - 2022-10-11 + +### Added + +- feat: Allow retry read and write (#826) +- feat: Convert interrupted error to permanent after retry (#827) +- feat(services/ftp): Add connection pool for FTP (#832) +- feat: Implement retry for write operation (#831) +- feat: Bump reqsign to latest version (#837) +- feat(services/s3): Add role_arn and external_id for assume_role (#838) + +### Changed + +- test: accelerate behaviour test `test_list_rich_dir` (#828) + +### Fixed + +- fix: ObjectEntry returned in batch operator doesn't have corrent accessor (#839) +- fix: Accessor in layers not set correctly (#840) + ## [v0.19.0] - 2022-10-08 ### Added @@ -841,6 +861,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). Hello, OpenDAL! +[v0.19.1]: https://github.com/datafuselabs/opendal/compare/v0.19.0...v0.19.1 [v0.19.0]: https://github.com/datafuselabs/opendal/compare/v0.18.2...v0.19.0 [v0.18.2]: https://github.com/datafuselabs/opendal/compare/v0.18.1...v0.18.2 [v0.18.1]: https://github.com/datafuselabs/opendal/compare/v0.18.0...v0.18.1 diff --git a/Cargo.toml b/Cargo.toml index 9ced39b3563e..1741865415bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["storage", "fs", "s3", "azblob", "gcs"] license = "Apache-2.0" name = "opendal" repository = "https://github.com/datafuselabs/opendal" -version = "0.19.0" +version = "0.19.1" [package.metadata.docs.rs] all-features = true diff --git a/oay/Cargo.lock b/oay/Cargo.lock index 220c417c05f1..812807e931ce 100644 --- a/oay/Cargo.lock +++ b/oay/Cargo.lock @@ -1061,7 +1061,7 @@ dependencies = [ [[package]] name = "oay" -version = "0.19.0" +version = "0.19.1" dependencies = [ "actix-web", "anyhow", @@ -1083,7 +1083,7 @@ checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" [[package]] name = "opendal" -version = "0.19.0" +version = "0.19.1" dependencies = [ "anyhow", "async-compat", diff --git a/oay/Cargo.toml b/oay/Cargo.toml index 119494512c14..4406daf6d72e 100644 --- a/oay/Cargo.toml +++ b/oay/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["storage", "data", "s3", "fs", "azblob"] license = "Apache-2.0" name = "oay" repository = "https://github.com/datafuselabs/opendal" -version = "0.19.0" +version = "0.19.1" [dependencies] actix-web = "4" diff --git a/oli/Cargo.lock b/oli/Cargo.lock index 50acaa5fefd2..24e93c3f7607 100644 --- a/oli/Cargo.lock +++ b/oli/Cargo.lock @@ -806,7 +806,7 @@ dependencies = [ [[package]] name = "oli" -version = "0.19.0" +version = "0.19.1" dependencies = [ "anyhow", "assert_cmd", @@ -826,7 +826,7 @@ checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" [[package]] name = "opendal" -version = "0.19.0" +version = "0.19.1" dependencies = [ "anyhow", "async-compat", diff --git a/oli/Cargo.toml b/oli/Cargo.toml index a0e1fdca63d2..98a7160e0808 100644 --- a/oli/Cargo.toml +++ b/oli/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["storage", "data", "s3", "fs", "azblob"] license = "Apache-2.0" name = "oli" repository = "https://github.com/datafuselabs/opendal" -version = "0.19.0" +version = "0.19.1" [dependencies] anyhow = "1"