Skip to content

Commit da026ef

Browse files
authored
Bump opendal to v0.53.3 (Round 1) (#6186)
* Bump versions Signed-off-by: Xuanwo <github@xuanwo.io> * Bump changelog Signed-off-by: Xuanwo <github@xuanwo.io> * Fix msrc check Signed-off-by: Xuanwo <github@xuanwo.io> --------- Signed-off-by: Xuanwo <github@xuanwo.io>
1 parent 8b704eb commit da026ef

File tree

27 files changed

+209
-276
lines changed

27 files changed

+209
-276
lines changed

.github/workflows/ci_core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ jobs:
9292
working-directory: core
9393
run: |
9494
cargo update zerofrom --precise 0.1.5
95-
cargo update litemap --precise 0.7.4
9695
cargo update idna_adapter --precise 1.2.0
96+
cargo update litemap --precise 0.7.4
9797
cargo +${OPENDAL_MSRV} clippy -- -D warnings
9898
9999
build_default_features:

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
<!-- Release notes generated with: gh release create v_draft --generate-notes --draft -->
99

10+
## [v0.53.3] - 2025-05-14
11+
12+
### Added
13+
* feat(java): add ReadOptions for read methods by @liamzwbao in https://github.com/apache/opendal/pull/6157
14+
* feat(core): support sharing one redb database between different Operators by @TD-Sky in https://github.com/apache/opendal/pull/6173
15+
* feat(bin/oli): support cp to dir by @asukaminato0721 in https://github.com/apache/opendal/pull/6140
16+
### Changed
17+
* refactor(bindings/java): deprecate append in favor of write with append=true by @kingsword09 in https://github.com/apache/opendal/pull/6169
18+
### Fixed
19+
* fix(bindings/go): update dependencies by @JupiterRider in https://github.com/apache/opendal/pull/6175
20+
* fix(integrations/object_store): fix double percent encoding by @Colerar in https://github.com/apache/opendal/pull/6166
21+
* fix(services/fs): Make fs services work on our MSRV by @Xuanwo in https://github.com/apache/opendal/pull/6183
22+
### CI
23+
* ci: uses taiki-e/install-action to replace cargo insatll by @xxchan in https://github.com/apache/opendal/pull/6168
24+
* ci(bindings/node): Add contents permissions for nodejs release by @Xuanwo in https://github.com/apache/opendal/pull/6182
25+
* ci(bindings/java): Enable zig build for java by @Xuanwo in https://github.com/apache/opendal/pull/6181
26+
1027
## [v0.53.2] - 2025-05-09
1128

1229
### Added
@@ -4556,6 +4573,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
45564573

45574574
Hello, OpenDAL!
45584575

4576+
[v0.53.3]: https://github.com/apache/opendal/compare/v0.53.2...v0.53.3
45594577
[v0.53.2]: https://github.com/apache/opendal/compare/v0.53.1...v0.53.2
45604578
[v0.53.1]: https://github.com/apache/opendal/compare/v0.53.0...v0.53.1
45614579
[v0.53.0]: https://github.com/apache/opendal/compare/v0.52.0...v0.53.0

bin/oay/Cargo.lock

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

bin/oay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ homepage = "https://opendal.apache.org/"
2727
license = "Apache-2.0"
2828
repository = "https://github.com/apache/opendal"
2929
rust-version = "1.80"
30-
version = "0.41.20"
30+
version = "0.41.21"
3131

3232
[features]
3333
default = ["frontends-webdav", "frontends-s3"]

bin/ofs/Cargo.lock

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

bin/ofs/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ categories = ["filesystem"]
2020
description = "OpenDAL File System"
2121
keywords = ["storage", "data", "s3", "fs", "azblob"]
2222
name = "ofs"
23-
version = "0.0.21"
23+
version = "0.0.22"
2424

2525
authors = ["Apache OpenDAL <dev@opendal.apache.org>"]
2626
edition = "2021"
@@ -46,13 +46,13 @@ url = { version = "2.5.4" }
4646

4747
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "macos"))'.dependencies]
4848
fuse3 = { version = "0.8.1", "features" = ["tokio-runtime", "unprivileged"] }
49-
fuse3_opendal = { version = "0.0.16", path = "../../integrations/fuse3" }
49+
fuse3_opendal = { version = "0.0.17", path = "../../integrations/fuse3" }
5050
libc = "0.2.154"
5151
nix = { version = "0.29.0", features = ["user"] }
5252

5353
[target.'cfg(target_os = "windows")'.dependencies]
5454
cloud-filter = { version = "0.0.5" }
55-
cloud_filter_opendal = { version = "0.0.9", path = "../../integrations/cloud_filter" }
55+
cloud_filter_opendal = { version = "0.0.10", path = "../../integrations/cloud_filter" }
5656

5757
[features]
5858
default = ["services-fs", "services-s3"]

bin/oli/Cargo.lock

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

bin/oli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ homepage = "https://opendal.apache.org/"
2727
license = "Apache-2.0"
2828
repository = "https://github.com/apache/opendal"
2929
rust-version = "1.80"
30-
version = "0.41.20"
30+
version = "0.41.21"
3131

3232
[dependencies]
3333
anyhow = { version = "1.0" }
@@ -69,4 +69,4 @@ insta-cmd = { version = "0.6" }
6969
insta = { version = "1.43", features = ["filters"] }
7070
walkdir = "2.5.0"
7171
comfy-table = "7"
72-
regex = "1"
72+
regex = "1"

bindings/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<groupId>org.apache.opendal</groupId>
3434
<artifactId>opendal</artifactId>
35-
<version>0.47.12</version> <!-- update version number -->
35+
<version>0.47.13</version> <!-- update version number -->
3636

3737
<name>Apache OpenDAL™</name>
3838
<description>

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": "git@github.com/apache/opendal.git",
4-
"version": "0.48.2",
4+
"version": "0.48.3",
55
"os": [
66
"darwin"
77
],

0 commit comments

Comments
 (0)