From 8e12fed08e8ce20780f387a248593f06fd0cb10f Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Tue, 25 Apr 2023 23:51:58 +0800 Subject: [PATCH] Bump to version 0.33.1 (#2123) * Bump to version 0.33.1 Signed-off-by: Xuanwo * Update Signed-off-by: Xuanwo --------- Signed-off-by: Xuanwo Co-authored-by: Suyan --- CHANGELOG.md | 27 +++++++++++++++++++ Cargo.lock | 12 ++++----- Cargo.toml | 2 +- bindings/nodejs/npm/darwin-arm64/package.json | 2 +- bindings/nodejs/npm/darwin-x64/package.json | 2 +- .../nodejs/npm/linux-x64-gnu/package.json | 2 +- .../nodejs/npm/win32-x64-msvc/package.json | 2 +- bindings/nodejs/package.json | 2 +- 8 files changed, 39 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 433e9c884f93..f823424ed688 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.1] - 2023-04-25 + +### Added + +- feat: Add behavior test for read_with_if_match & stat_with_if_match (#2088) +- feat(tests): Add fuzz test for writer without content length (#2100) +- feat: add if_none_match support for obs (#2103) +- feat(services/oss): Add server side encryption support for oss (#2092) +- feat(core): update errorKind `PreconditionFailed` to `ConditionNotMatch` (#2104) +- feat(services/s3): Add `start-after` support for list (#2096) +- feat: gcs support cache control (#2116) + +### Fixed + +- fix(services/gcs): set `content length=0` for gcs initiate_resumable_upload (#2110) +- fix(bindings/nodejs): Fix index.d.ts not updated (#2117) + +### Docs + +- chore: improve LoggingLayer docs and pub use log::Level (#2089) +- docs(refactor): Add more detailed description of operator, accessor, and builder (#2094) + +### CI + +- chore(bindings/nodejs): update `package.json` repository info (#2078) +- ci: Bring hdfs test back (#2114) + ## [v0.33.0] - 2023-04-23 ### Added diff --git a/Cargo.lock b/Cargo.lock index 0922e6c72873..5ad025660522 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2293,7 +2293,7 @@ dependencies = [ [[package]] name = "oay" -version = "0.33.0" +version = "0.33.1" dependencies = [ "anyhow", "clap 4.1.11", @@ -2330,7 +2330,7 @@ dependencies = [ [[package]] name = "object_store_opendal" -version = "0.33.0" +version = "0.33.1" dependencies = [ "async-trait", "bytes", @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "oli" -version = "0.33.0" +version = "0.33.1" dependencies = [ "anyhow", "assert_cmd", @@ -2373,7 +2373,7 @@ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" [[package]] name = "opendal" -version = "0.33.0" +version = "0.33.1" dependencies = [ "anyhow", "async-compat", @@ -2450,7 +2450,7 @@ dependencies = [ [[package]] name = "opendal-nodejs" -version = "0.33.0" +version = "0.33.1" dependencies = [ "futures", "napi", @@ -2461,7 +2461,7 @@ dependencies = [ [[package]] name = "opendal-python" -version = "0.33.0" +version = "0.33.1" dependencies = [ "chrono", "futures", diff --git a/Cargo.toml b/Cargo.toml index 75cb0822af34..3a5f67fe49dc 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.0" +version = "0.33.1" [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 d5ca5c748f81..23dfd4eb5b6a 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": "git@github.com/apache/incubator-opendal.git", - "version": "0.33.0", + "version": "0.33.1", "os": [ "darwin" ], diff --git a/bindings/nodejs/npm/darwin-x64/package.json b/bindings/nodejs/npm/darwin-x64/package.json index 9ddc7f7a05de..11554d2537e7 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": "git@github.com/apache/incubator-opendal.git", - "version": "0.33.0", + "version": "0.33.1", "os": [ "darwin" ], diff --git a/bindings/nodejs/npm/linux-x64-gnu/package.json b/bindings/nodejs/npm/linux-x64-gnu/package.json index c5e4cf88dd00..cf33f7c3c81c 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.0", + "version": "0.33.1", "repository": "git@github.com/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 cf9c50686b28..6ec9b54dce75 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.0", + "version": "0.33.1", "repository": "git@github.com/apache/incubator-opendal.git", "os": [ "win32" diff --git a/bindings/nodejs/package.json b/bindings/nodejs/package.json index 7c36a607df31..39fc9ff5d639 100644 --- a/bindings/nodejs/package.json +++ b/bindings/nodejs/package.json @@ -1,7 +1,7 @@ { "name": "opendal", "author": "OpenDAL Contributors ", - "version": "0.33.0", + "version": "0.33.1", "license": "Apache-2.0", "main": "index.js", "types": "index.d.ts",