Skip to content

Commit 402aae7

Browse files
authored
Bump to version 0.33.3 (#2212)
* Bump to version 0.33.3 Signed-off-by: Xuanwo <[email protected]> * Update Signed-off-by: Xuanwo <[email protected]> --------- Signed-off-by: Xuanwo <[email protected]>
1 parent 041c7ac commit 402aae7

File tree

10 files changed

+98
-41
lines changed

10 files changed

+98
-41
lines changed

CHANGELOG.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,61 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [v0.33.3] - 2023-05-06
9+
10+
### Added
11+
12+
- feat(services/onedrive): Add read and write support for OneDrive (#2129)
13+
- test(core): test for `read_with_override_cache_control` (#2155)
14+
- feat(http_util): Implement multipart/form-data support (#2157)
15+
- feat(http_util): Implement multipart/mixed support (#2161)
16+
- RFC-2133: Introduce Append API (#2133)
17+
- feat(services/sftp): Add read/write/stat support for sftp (#2186)
18+
- feat(services/gdrive): Add read & write & delete support for GoogleDrive (#2184)
19+
- feat(services/vercel): Add vercel remote cache support (#2193)
20+
- feat(tests): Enable supabase integration tests (#2190)
21+
- feat(core): merge scan and list (#2214)
22+
23+
### Changed
24+
25+
- refactor(java): refactor java code for java binding (#2145)
26+
- refactor(layers/logging): parsing level str (#2160)
27+
- refactor: Move not initiated logic to utils instead (#2196)
28+
- refactor(services/memcached): Rewrite memecached connection entirely (#2204)
29+
30+
### Fixed
31+
32+
- fix(service/s3): set retryable on batch (#2171)
33+
- fix(services/supabase): Supabase ci fix (#2200)
34+
35+
### Docs
36+
37+
- docs(website): try to add opendal logo (#2159)
38+
- doc: update vision to be more clear (#2164)
39+
- docs: Refactor `Contributing` and add `Developing` (#2169)
40+
- docs: Merge DEVELOPING into CONTRIBUTING (#2172)
41+
- docs: fix some grammar errors in the doc of Operator (#2173)
42+
- docs(nodejs): Add CONTRIBUTING docs (#2174)
43+
- docs: Add CONTRIBUTING for python (#2188)
44+
45+
### CI
46+
47+
- ci: Use microsoft rust devcontainer instead (#2165)
48+
- ci(devcontainer): Install development deps (#2167)
49+
- chore: set workspace default members (#2168)
50+
- ci: Setup vercel artifacts integration tests (#2197)
51+
- ci: Remove not used odev tools (#2202)
52+
- ci: Add tools to generate NOTICE and all deps licenses (#2205)
53+
- ci: use Temurin JDK 11 to build the bindings-java (#2213)
54+
55+
### Chore
56+
57+
- chore(deps): bump clap from 4.1.11 to 4.2.5 (#2183)
58+
- chore(deps): bump futures from 0.3.27 to 0.3.28 (#2181)
59+
- chore(deps): bump assert_cmd from 2.0.10 to 2.0.11 (#2180)
60+
- chore: Refactor behavior test (#2189)
61+
- chore: update readme for more information that is more friendly to newcomers (#2217)
62+
863
## [v0.33.2] - 2023-04-27
964

1065
### Added
@@ -2012,6 +2067,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
20122067

20132068
Hello, OpenDAL!
20142069

2070+
[v0.33.3]: https://github.com/apache/incubator-opendal/compare/v0.33.2...v0.33.3
20152071
[v0.33.2]: https://github.com/apache/incubator-opendal/compare/v0.33.1...v0.33.2
20162072
[v0.33.1]: https://github.com/apache/incubator-opendal/compare/v0.33.0...v0.33.1
20172073
[v0.33.0]: https://github.com/apache/incubator-opendal/compare/v0.32.0...v0.33.0

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ homepage = "https://opendal.apache.org/"
4141
license = "Apache-2.0"
4242
repository = "https://github.com/apache/incubator-opendal"
4343
rust-version = "1.64"
44-
version = "0.33.2"
44+
version = "0.33.3"
4545

4646
[workspace.dependencies]
4747
opendal = { version = "0.33", path = "core" }

bindings/nodejs/npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@opendal/lib-darwin-arm64",
33
"repository": "[email protected]/apache/incubator-opendal.git",
4-
"version": "0.33.2",
4+
"version": "0.33.3",
55
"os": [
66
"darwin"
77
],

bindings/nodejs/npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@opendal/lib-darwin-x64",
33
"repository": "[email protected]/apache/incubator-opendal.git",
4-
"version": "0.33.2",
4+
"version": "0.33.3",
55
"os": [
66
"darwin"
77
],

bindings/nodejs/npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendal/lib-linux-x64-gnu",
3-
"version": "0.33.2",
3+
"version": "0.33.3",
44
"repository": "[email protected]/apache/incubator-opendal.git",
55
"os": [
66
"linux"

bindings/nodejs/npm/win32-x64-msvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendal/lib-win32-x64-msvc",
3-
"version": "0.33.2",
3+
"version": "0.33.3",
44
"repository": "[email protected]/apache/incubator-opendal.git",
55
"os": [
66
"win32"

bindings/nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "opendal",
33
"author": "OpenDAL Contributors <[email protected]>",
4-
"version": "0.33.2",
4+
"version": "0.33.3",
55
"license": "Apache-2.0",
66
"main": "index.js",
77
"types": "index.d.ts",

scripts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ OPENDAL_VERSION=0.30.2 OPENDAL_VERSION_RC=rc1 ./scripts/release.sh
2222
## Check
2323

2424
```shell
25-
OPENDAL_VERSION=0.30.2 OPENDAL_VERSION_RC=rc1 ./scripts/check.sh
25+
./scripts/check.sh apache-incubator-opendal-0.33.3-src.tar.gz
2626
```
2727

2828
> Before running the check, please ensure that you have completed the following preparations.

scripts/check.sh

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -18,37 +18,38 @@
1818

1919
set -e
2020

21-
if [ -z "${OPENDAL_VERSION}" ]; then
22-
echo "OPENDAL_VERSION is unset"
23-
exit 1
24-
else
25-
echo "var is set to '$OPENDAL_VERSION'"
21+
YELLOW="\033[37;1m"
22+
GREEN="\033[32;1m"
23+
ENDCOLOR="\033[0m"
24+
25+
if [ "$#" -ne 1 ]; then
26+
echo "Usage: $0 {YOUR RELEASE TAR FILE}" >&2
27+
exit 1
2628
fi
2729

28-
# tar source code
29-
release_version=${OPENDAL_VERSION}
30-
# rc versions
31-
rc_version=${OPENDAL_VERSION_RC:rc1}
32-
# Corresponding git repository branch
33-
git_branch=release-${release_version}-${rc_version}
30+
PKG=$1
3431

35-
echo "> Checkout release"
36-
svn co "https://dist.apache.org/repos/dist/dev/incubator/opendal/${release_version}-${rc_version}/" incubator-opendal-release-verify
37-
cd incubator-opendal-release-verify
32+
if [ ! -f "$PKG" ]; then
33+
echo "File '$PKG' does not exist."
34+
exit 1
35+
fi
3836

3937
echo "> Check signature"
40-
for i in *.tar.gz; do
41-
echo "$i"
42-
gpg --verify "$i.asc" "$i"
43-
done
38+
gpg --verify "$PKG.asc" "$PKG"
39+
40+
if [ $? -eq 0 ]
41+
then
42+
printf $GREEN"Success to verify the gpg sign"$ENDCOLOR"\n"
43+
else
44+
printf $YELLOW"Failed to verify the gpg sign"$ENDCOLOR"\n"
45+
fi
46+
4447
echo "> Check sha512sum"
45-
for i in *.tar.gz; do
46-
echo "$i"
47-
sha512sum --check "$i.sha512"
48-
done
49-
50-
echo "> Check content"
51-
tar -xvf "apache-incubator-opendal-${release_version}-src.tar.gz"
52-
echo "> Check license"
53-
cd "apache-incubator-opendal-${release_version}-src"
54-
docker run -it --rm -v "$(pwd):/github/workspace" -u "$(id -u):$(id -g)" ghcr.io/korandoru/hawkeye-native check
48+
sha512sum --check "$PKG.sha512"
49+
50+
if [ $? -eq 0 ]
51+
then
52+
printf $GREEN"Success to verify the checksum"$ENDCOLOR"\n"
53+
else
54+
printf $YELLOW"Failed to verify the checksum"$ENDCOLOR"\n"
55+
fi

0 commit comments

Comments
 (0)