This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch bump-to-version-0.33.2 in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit 4db2472ca0269529f27f0e6c6727e6badfd64e2d Author: Xuanwo <[email protected]> AuthorDate: Thu Apr 27 21:37:03 2023 +0800 Bump to version 0.33.2 Signed-off-by: Xuanwo <[email protected]> --- CHANGELOG.md | 29 +++++++++++++++++++++++++ Cargo.lock | 12 +++++----- Cargo.toml | 2 +- bindings/nodejs/npm/darwin-arm64/package.json | 2 +- bindings/nodejs/npm/darwin-x64/package.json | 2 +- bindings/nodejs/npm/linux-x64-gnu/package.json | 2 +- bindings/nodejs/npm/win32-x64-msvc/package.json | 2 +- bindings/nodejs/package.json | 2 +- 8 files changed, 41 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f823424e..c15435c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,33 @@ 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.33.2] - 2023-04-27 + +### Added + +- feat(core): add test for `stat_with_if_none_match` (#2122) +- feat(services/gcs): Add start-after support for list (#2107) +- feat(services/azblob): Add supporting presign (#2120) +- feat(services/gcs): Add supporting presign support (#2126) +- feat(java): connect rust async/await with java future (#2112) +- docs: add hdfs classpath related troubleshoot (#2130) +- fix(clippy): suppress dead_code check (#2135) +- feat(core): Add `cache-control` to Metadata (#2136) +- fix(services/gcs): Remove HOST header to avoid gcs RESET connection (#2139) +- test(core): test for `write_with_cache_control` (#2131) +- test(core): test for `write_with_content_type` (#2140) +- test(core): test for `read_with_if_none_match` (#2141) +- feat(services/supabase): Add read/write/stat support for supabase (#2119) + +### Docs + +- docs: add hdfs classpath related troubleshoot (#2130) + +### CI + +- ci: Mark job as skipped if owner is not apache (#2128) +- ci: Enable native-tls to test gcs presign for workaround (#2138) + ## [v0.33.1] - 2023-04-25 ### Added @@ -1985,6 +2012,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/). Hello, OpenDAL! +[v0.33.2]: https://github.com/apache/incubator-opendal/compare/v0.33.1...v0.33.2 +[v0.33.1]: https://github.com/apache/incubator-opendal/compare/v0.33.0...v0.33.1 [v0.33.0]: https://github.com/apache/incubator-opendal/compare/v0.32.0...v0.33.0 [v0.32.0]: https://github.com/apache/incubator-opendal/compare/v0.31.1...v0.32.0 [v0.31.1]: https://github.com/apache/incubator-opendal/compare/v0.31.0...v0.31.1 diff --git a/Cargo.lock b/Cargo.lock index b97a917e..7a50e9a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2293,7 +2293,7 @@ dependencies = [ [[package]] name = "oay" -version = "0.33.1" +version = "0.33.2" dependencies = [ "anyhow", "clap 4.1.11", @@ -2330,7 +2330,7 @@ dependencies = [ [[package]] name = "object_store_opendal" -version = "0.33.1" +version = "0.33.2" dependencies = [ "async-trait", "bytes", @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "oli" -version = "0.33.1" +version = "0.33.2" dependencies = [ "anyhow", "assert_cmd", @@ -2373,7 +2373,7 @@ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" [[package]] name = "opendal" -version = "0.33.1" +version = "0.33.2" dependencies = [ "anyhow", "async-compat", @@ -2453,7 +2453,7 @@ dependencies = [ [[package]] name = "opendal-nodejs" -version = "0.33.1" +version = "0.33.2" dependencies = [ "futures", "napi", @@ -2464,7 +2464,7 @@ dependencies = [ [[package]] name = "opendal-python" -version = "0.33.1" +version = "0.33.2" dependencies = [ "chrono", "futures", diff --git a/Cargo.toml b/Cargo.toml index 3a5f67fe..986d3cbe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/incubator-opendal" rust-version = "1.64" -version = "0.33.1" +version = "0.33.2" [workspace.dependencies] opendal = { version = "0.33", path = "core" } diff --git a/bindings/nodejs/npm/darwin-arm64/package.json b/bindings/nodejs/npm/darwin-arm64/package.json index 23dfd4eb..2f97ecf2 100644 --- a/bindings/nodejs/npm/darwin-arm64/package.json +++ b/bindings/nodejs/npm/darwin-arm64/package.json @@ -1,7 +1,7 @@ { "name": "@opendal/lib-darwin-arm64", "repository": "[email protected]/apache/incubator-opendal.git", - "version": "0.33.1", + "version": "0.33.2", "os": [ "darwin" ], diff --git a/bindings/nodejs/npm/darwin-x64/package.json b/bindings/nodejs/npm/darwin-x64/package.json index 11554d25..79362ee4 100644 --- a/bindings/nodejs/npm/darwin-x64/package.json +++ b/bindings/nodejs/npm/darwin-x64/package.json @@ -1,7 +1,7 @@ { "name": "@opendal/lib-darwin-x64", "repository": "[email protected]/apache/incubator-opendal.git", - "version": "0.33.1", + "version": "0.33.2", "os": [ "darwin" ], diff --git a/bindings/nodejs/npm/linux-x64-gnu/package.json b/bindings/nodejs/npm/linux-x64-gnu/package.json index cf33f7c3..c83097ea 100644 --- a/bindings/nodejs/npm/linux-x64-gnu/package.json +++ b/bindings/nodejs/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-linux-x64-gnu", - "version": "0.33.1", + "version": "0.33.2", "repository": "[email protected]/apache/incubator-opendal.git", "os": [ "linux" diff --git a/bindings/nodejs/npm/win32-x64-msvc/package.json b/bindings/nodejs/npm/win32-x64-msvc/package.json index 6ec9b54d..d10265a6 100644 --- a/bindings/nodejs/npm/win32-x64-msvc/package.json +++ b/bindings/nodejs/npm/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-win32-x64-msvc", - "version": "0.33.1", + "version": "0.33.2", "repository": "[email protected]/apache/incubator-opendal.git", "os": [ "win32" diff --git a/bindings/nodejs/package.json b/bindings/nodejs/package.json index 39fc9ff5..7b8a1ae7 100644 --- a/bindings/nodejs/package.json +++ b/bindings/nodejs/package.json @@ -1,7 +1,7 @@ { "name": "opendal", "author": "OpenDAL Contributors <[email protected]>", - "version": "0.33.1", + "version": "0.33.2", "license": "Apache-2.0", "main": "index.js", "types": "index.d.ts",
