opendal 0.1.7.pre.rc.2 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Cargo.toml +1 -1
- data/DEPENDENCIES.rust.tsv +103 -108
- data/core/CHANGELOG.md +192 -0
- data/core/Cargo.lock +124 -105
- data/core/Cargo.toml +116 -100
- data/core/DEPENDENCIES.rust.tsv +68 -50
- data/core/benches/vs_fs/Cargo.toml +1 -1
- data/core/benches/vs_s3/Cargo.toml +1 -1
- data/core/core/src/docs/upgrade.md +47 -0
- data/core/http-transports/reqwest/Cargo.toml +14 -2
- data/core/http-transports/reqwest/README.md +196 -0
- data/core/http-transports/reqwest/src/lib.rs +70 -11
- data/core/layers/async-backtrace/Cargo.toml +2 -2
- data/core/layers/await-tree/Cargo.toml +2 -2
- data/core/layers/capability-check/Cargo.toml +2 -2
- data/core/layers/chaos/Cargo.toml +2 -2
- data/core/layers/concurrent-limit/Cargo.toml +2 -2
- data/core/layers/dtrace/Cargo.toml +2 -2
- data/core/layers/fastmetrics/Cargo.toml +3 -3
- data/core/layers/fastrace/Cargo.toml +2 -2
- data/core/layers/foyer/Cargo.toml +2 -2
- data/core/layers/hotpath/Cargo.toml +2 -2
- data/core/layers/immutable-index/Cargo.toml +2 -2
- data/core/layers/logging/Cargo.toml +2 -2
- data/core/layers/metrics/Cargo.toml +3 -3
- data/core/layers/mime-guess/Cargo.toml +2 -2
- data/core/layers/observe-metrics-common/Cargo.toml +1 -1
- data/core/layers/otelmetrics/Cargo.toml +3 -3
- data/core/layers/oteltrace/Cargo.toml +2 -2
- data/core/layers/prometheus/Cargo.toml +3 -3
- data/core/layers/prometheus-client/Cargo.toml +3 -3
- data/core/layers/retry/Cargo.toml +4 -4
- data/core/layers/route/Cargo.toml +3 -3
- data/core/layers/tail-cut/Cargo.toml +2 -2
- data/core/layers/throttle/Cargo.toml +2 -2
- data/core/layers/timeout/Cargo.toml +3 -3
- data/core/layers/tracing/Cargo.toml +2 -2
- data/core/layers/tracing/src/lib.rs +20 -1
- data/core/services/aliyun-drive/Cargo.toml +1 -1
- data/core/services/alluxio/Cargo.toml +1 -1
- data/core/services/azblob/Cargo.toml +2 -2
- data/core/services/azdls/Cargo.toml +2 -2
- data/core/services/azfile/Cargo.toml +2 -2
- data/core/services/azure-common/Cargo.toml +1 -1
- data/core/services/b2/Cargo.toml +1 -1
- data/core/services/cacache/Cargo.toml +1 -1
- data/core/services/cloudflare-kv/Cargo.toml +1 -1
- data/core/services/compfs/Cargo.toml +1 -1
- data/core/services/cos/Cargo.toml +1 -1
- data/core/services/d1/Cargo.toml +1 -1
- data/core/services/d1/src/backend.rs +3 -4
- data/core/services/d1/src/core.rs +38 -11
- data/core/services/d1/src/model.rs +60 -0
- data/core/services/dashmap/Cargo.toml +1 -1
- data/core/services/dbfs/Cargo.toml +1 -1
- data/core/services/dropbox/Cargo.toml +1 -1
- data/core/services/etcd/Cargo.toml +1 -1
- data/core/services/foundationdb/Cargo.toml +1 -1
- data/core/services/foyer/Cargo.toml +3 -3
- data/core/services/fs/Cargo.toml +1 -1
- data/core/services/ftp/Cargo.toml +1 -1
- data/core/services/gcs/Cargo.toml +1 -1
- data/core/services/gdrive/Cargo.toml +1 -1
- data/core/services/ghac/Cargo.toml +2 -2
- data/core/services/github/Cargo.toml +1 -1
- data/core/services/goosefs/Cargo.toml +2 -2
- data/core/services/gridfs/Cargo.toml +1 -1
- data/core/services/gridfs/src/backend.rs +3 -4
- data/core/services/gridfs/src/core.rs +23 -7
- data/core/services/hdfs/Cargo.toml +1 -1
- data/core/services/hdfs-native/Cargo.toml +1 -1
- data/core/services/hf/Cargo.toml +2 -4
- data/core/services/http/Cargo.toml +3 -3
- data/core/services/ipfs/Cargo.toml +1 -1
- data/core/services/ipmfs/Cargo.toml +1 -1
- data/core/services/koofr/Cargo.toml +1 -1
- data/core/services/lakefs/Cargo.toml +1 -1
- data/core/services/memcached/Cargo.toml +1 -1
- data/core/services/mini_moka/Cargo.toml +1 -1
- data/core/services/moka/Cargo.toml +1 -1
- data/core/services/mongodb/Cargo.toml +1 -1
- data/core/services/mongodb/src/backend.rs +3 -4
- data/core/services/mongodb/src/core.rs +60 -0
- data/core/services/monoiofs/Cargo.toml +1 -1
- data/core/services/mysql/Cargo.toml +1 -1
- data/core/services/mysql/src/backend.rs +3 -4
- data/core/services/mysql/src/core.rs +33 -1
- data/core/services/obs/Cargo.toml +1 -1
- data/core/services/onedrive/Cargo.toml +1 -1
- data/core/services/opfs/Cargo.toml +1 -1
- data/core/services/oss/Cargo.toml +1 -1
- data/core/services/pcloud/Cargo.toml +1 -1
- data/core/services/persy/Cargo.toml +1 -1
- data/core/services/postgresql/Cargo.toml +1 -1
- data/core/services/postgresql/src/backend.rs +3 -4
- data/core/services/postgresql/src/core.rs +31 -1
- data/core/services/redb/Cargo.toml +1 -1
- data/core/services/redis/Cargo.toml +1 -1
- data/core/services/redis/src/backend.rs +4 -4
- data/core/services/rocksdb/Cargo.toml +1 -1
- data/core/services/s3/Cargo.toml +1 -1
- data/core/services/seafile/Cargo.toml +1 -1
- data/core/services/sftp/Cargo.toml +1 -1
- data/core/services/sled/Cargo.toml +1 -1
- data/core/services/sqlite/Cargo.toml +1 -1
- data/core/services/sqlite/src/backend.rs +1 -8
- data/core/services/sqlite/src/core.rs +76 -28
- data/core/services/surrealdb/Cargo.toml +1 -1
- data/core/services/surrealdb/src/backend.rs +3 -4
- data/core/services/surrealdb/src/core.rs +36 -0
- data/core/services/swift/Cargo.toml +1 -1
- data/core/services/tikv/Cargo.toml +1 -1
- data/core/services/tos/Cargo.toml +1 -1
- data/core/services/upyun/Cargo.toml +1 -1
- data/core/services/vercel-artifacts/Cargo.toml +1 -1
- data/core/services/vercel-blob/Cargo.toml +1 -1
- data/core/services/webdav/Cargo.toml +1 -1
- data/core/services/webhdfs/Cargo.toml +1 -1
- data/core/services/yandex-disk/Cargo.toml +1 -1
- data/core/testkit/Cargo.toml +4 -4
- data/core/upgrade.md +47 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f04b0776659d9f927df98e1a7690cfc9ba807f6606eecdefdec858ea8ba27f60
|
|
4
|
+
data.tar.gz: f407f6257f2bb3b6395b9693e1ea45731b00b97815d0d19bb8627a92fbeb782e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b111a7c92783783ed8505fbad55d36689428cb739ea63eaffbea9ca5147672a28c578ef537705cece744bb82bd7aadf5d2beb262a6e4644e947659bfc7155db
|
|
7
|
+
data.tar.gz: 8dba17de23249057f4976e8253177f90fd26b79d04f68f0c48b35e233536dbbf50587be0ee084863b3c6af576f730b8308e0fcf47b6d74f1cdf3bc0159b7784b
|
data/Cargo.toml
CHANGED
data/DEPENDENCIES.rust.tsv
CHANGED
|
@@ -2,29 +2,30 @@ crate Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.
|
|
|
2
2
|
aes@0.8.4 X X
|
|
3
3
|
aho-corasick@1.1.4 X X
|
|
4
4
|
allocator-api2@0.2.21 X X
|
|
5
|
-
anyhow@1.0.
|
|
5
|
+
anyhow@1.0.103 X X
|
|
6
6
|
async-trait@0.1.89 X X
|
|
7
7
|
atomic-waker@1.1.2 X X
|
|
8
|
-
autocfg@1.5.
|
|
9
|
-
aws-lc-rs@1.17.
|
|
10
|
-
aws-lc-sys@0.
|
|
8
|
+
autocfg@1.5.1 X X
|
|
9
|
+
aws-lc-rs@1.17.1 X X
|
|
10
|
+
aws-lc-sys@0.42.0 X X X X X
|
|
11
11
|
backon@1.6.0 X
|
|
12
12
|
base64@0.22.1 X X
|
|
13
13
|
base64ct@1.8.3 X X
|
|
14
14
|
bindgen@0.72.1 X
|
|
15
|
-
bitflags@2.
|
|
15
|
+
bitflags@2.13.0 X X
|
|
16
16
|
block-buffer@0.10.4 X X
|
|
17
|
-
block-buffer@0.12.
|
|
17
|
+
block-buffer@0.12.1 X X
|
|
18
18
|
block-padding@0.3.3 X X
|
|
19
|
-
bumpalo@3.20.
|
|
20
|
-
bytes@1.
|
|
19
|
+
bumpalo@3.20.3 X X
|
|
20
|
+
bytes@1.12.0 X
|
|
21
21
|
cbc@0.1.2 X X
|
|
22
|
-
cc@1.2.
|
|
22
|
+
cc@1.2.66 X X
|
|
23
23
|
cexpr@0.6.0 X X
|
|
24
24
|
cfg-if@1.0.4 X X
|
|
25
25
|
cipher@0.4.4 X X
|
|
26
26
|
clang-sys@1.8.1 X
|
|
27
27
|
cmake@0.1.58 X X
|
|
28
|
+
cmov@0.5.4 X X
|
|
28
29
|
combine@4.6.7 X
|
|
29
30
|
const-oid@0.10.2 X X
|
|
30
31
|
const-oid@0.9.6 X X
|
|
@@ -34,18 +35,18 @@ core-foundation@0.10.1 X X
|
|
|
34
35
|
core-foundation-sys@0.8.7 X X
|
|
35
36
|
cpufeatures@0.2.17 X X
|
|
36
37
|
cpufeatures@0.3.0 X X
|
|
37
|
-
|
|
38
|
-
crossbeam-utils@0.8.
|
|
38
|
+
crc-fast@1.10.0 X X
|
|
39
|
+
crossbeam-utils@0.8.22 X X
|
|
39
40
|
crunchy@0.2.4 X
|
|
40
41
|
crypto-common@0.1.7 X X
|
|
41
42
|
crypto-common@0.2.2 X X
|
|
42
|
-
ctor@1.0.
|
|
43
|
+
ctor@1.0.8 X X
|
|
44
|
+
ctutils@0.4.2 X X
|
|
43
45
|
dashmap@6.2.1 X
|
|
44
46
|
der@0.7.10 X X
|
|
45
|
-
deranged@0.5.8 X X
|
|
46
47
|
digest@0.10.7 X X
|
|
47
48
|
digest@0.11.3 X X
|
|
48
|
-
displaydoc@0.2.
|
|
49
|
+
displaydoc@0.2.6 X X
|
|
49
50
|
dlv-list@0.5.2 X X
|
|
50
51
|
dunce@1.0.5 X X X
|
|
51
52
|
either@1.16.0 X X
|
|
@@ -69,7 +70,7 @@ futures-util@0.3.32 X X
|
|
|
69
70
|
generic-array@0.14.7 X
|
|
70
71
|
getrandom@0.2.17 X X
|
|
71
72
|
getrandom@0.3.4 X X
|
|
72
|
-
getrandom@0.4.
|
|
73
|
+
getrandom@0.4.3 X X
|
|
73
74
|
ghac@0.3.0 X
|
|
74
75
|
glob@0.3.3 X X
|
|
75
76
|
gloo-timers@0.3.0 X X
|
|
@@ -78,87 +79,86 @@ hashbrown@0.14.5 X X
|
|
|
78
79
|
hashbrown@0.16.1 X X
|
|
79
80
|
hex@0.4.3 X X
|
|
80
81
|
hmac@0.12.1 X X
|
|
81
|
-
|
|
82
|
+
hmac@0.13.0 X X
|
|
83
|
+
http@1.4.2 X X
|
|
82
84
|
http-body@1.0.1 X
|
|
83
85
|
http-body-util@0.1.3 X
|
|
84
86
|
httparse@1.10.1 X X
|
|
85
|
-
hybrid-array@0.4.
|
|
86
|
-
hyper@1.
|
|
87
|
+
hybrid-array@0.4.13 X X
|
|
88
|
+
hyper@1.10.1 X
|
|
87
89
|
hyper-rustls@0.27.9 X X X
|
|
88
90
|
hyper-util@0.1.20 X
|
|
89
|
-
icu_collections@2.
|
|
90
|
-
icu_locale_core@2.
|
|
91
|
-
icu_normalizer@2.
|
|
92
|
-
icu_normalizer_data@2.
|
|
93
|
-
icu_properties@2.
|
|
94
|
-
icu_properties_data@2.
|
|
95
|
-
icu_provider@2.
|
|
91
|
+
icu_collections@2.2.0 X
|
|
92
|
+
icu_locale_core@2.2.0 X
|
|
93
|
+
icu_normalizer@2.2.0 X
|
|
94
|
+
icu_normalizer_data@2.2.0 X
|
|
95
|
+
icu_properties@2.2.0 X
|
|
96
|
+
icu_properties_data@2.2.0 X
|
|
97
|
+
icu_provider@2.2.0 X
|
|
96
98
|
idna@1.1.0 X X
|
|
97
|
-
idna_adapter@1.2.
|
|
99
|
+
idna_adapter@1.2.2 X X
|
|
98
100
|
inout@0.1.4 X X
|
|
99
101
|
ipnet@2.12.0 X X
|
|
100
102
|
itertools@0.13.0 X X
|
|
101
103
|
itertools@0.14.0 X X
|
|
102
104
|
itoa@1.0.18 X X
|
|
103
|
-
jiff@0.2.
|
|
104
|
-
jiff-tzdb@0.1.
|
|
105
|
+
jiff@0.2.31 X X
|
|
106
|
+
jiff-tzdb@0.1.7 X X
|
|
105
107
|
jiff-tzdb-platform@0.1.3 X X
|
|
106
108
|
jni@0.22.4 X X
|
|
107
109
|
jni-macros@0.22.4 X X
|
|
108
110
|
jni-sys@0.4.1 X X
|
|
109
111
|
jni-sys-macros@0.4.1 X X
|
|
110
|
-
jobserver@0.1.
|
|
111
|
-
js-sys@0.3.
|
|
112
|
-
jsonwebtoken@10.3.0 X
|
|
112
|
+
jobserver@0.1.35 X X
|
|
113
|
+
js-sys@0.3.103 X X
|
|
113
114
|
lazy_static@1.5.0 X X
|
|
114
115
|
libc@0.2.186 X X
|
|
115
116
|
libloading@0.8.9 X
|
|
116
117
|
libm@0.2.16 X
|
|
117
|
-
link-section@0.
|
|
118
|
-
linktime-proc-macro@0.
|
|
118
|
+
link-section@0.19.0 X X
|
|
119
|
+
linktime-proc-macro@0.2.0 X X
|
|
119
120
|
linux-raw-sys@0.12.1 X X X
|
|
120
121
|
litemap@0.8.2 X
|
|
121
122
|
lock_api@0.4.14 X X
|
|
122
|
-
log@0.4.
|
|
123
|
+
log@0.4.33 X X
|
|
123
124
|
magnus@0.8.2 X
|
|
124
125
|
magnus-macros@0.8.0 X
|
|
125
126
|
md-5@0.11.0 X X
|
|
126
|
-
mea@0.6.
|
|
127
|
-
memchr@2.8.
|
|
127
|
+
mea@0.6.4 X
|
|
128
|
+
memchr@2.8.2 X X
|
|
128
129
|
minimal-lexical@0.2.1 X X
|
|
129
|
-
mio@1.2.
|
|
130
|
+
mio@1.2.1 X
|
|
130
131
|
nom@7.1.3 X
|
|
131
132
|
nonzero_ext@0.3.0 X
|
|
132
|
-
num-bigint@0.4.6 X X
|
|
133
133
|
num-bigint-dig@0.8.6 X X
|
|
134
|
-
num-conv@0.2.2 X X
|
|
135
134
|
num-integer@0.1.46 X X
|
|
136
135
|
num-iter@0.1.45 X X
|
|
137
136
|
num-traits@0.2.19 X X
|
|
138
137
|
once_cell@1.21.4 X X
|
|
139
|
-
opendal@0.
|
|
140
|
-
opendal-core@0.
|
|
141
|
-
opendal-
|
|
142
|
-
opendal-layer-
|
|
143
|
-
opendal-layer-
|
|
144
|
-
opendal-layer-
|
|
145
|
-
opendal-layer-
|
|
146
|
-
opendal-
|
|
147
|
-
opendal-
|
|
148
|
-
opendal-service-
|
|
149
|
-
opendal-service-
|
|
150
|
-
opendal-service-
|
|
151
|
-
opendal-service-
|
|
152
|
-
opendal-service-
|
|
153
|
-
opendal-service-
|
|
154
|
-
opendal-service-
|
|
155
|
-
opendal-service-
|
|
156
|
-
opendal-service-
|
|
157
|
-
opendal-service-
|
|
158
|
-
opendal-service-
|
|
159
|
-
opendal-service-
|
|
160
|
-
opendal-service-
|
|
161
|
-
opendal-service-
|
|
138
|
+
opendal@0.58.0 X
|
|
139
|
+
opendal-core@0.58.0 X
|
|
140
|
+
opendal-http-transport-reqwest@0.58.0 X
|
|
141
|
+
opendal-layer-concurrent-limit@0.58.0 X
|
|
142
|
+
opendal-layer-logging@0.58.0 X
|
|
143
|
+
opendal-layer-retry@0.58.0 X
|
|
144
|
+
opendal-layer-throttle@0.58.0 X
|
|
145
|
+
opendal-layer-timeout@0.58.0 X
|
|
146
|
+
opendal-ruby@0.1.8 X
|
|
147
|
+
opendal-service-azblob@0.58.0 X
|
|
148
|
+
opendal-service-azdls@0.58.0 X
|
|
149
|
+
opendal-service-azfile@0.58.0 X
|
|
150
|
+
opendal-service-azure-common@0.58.0 X
|
|
151
|
+
opendal-service-cos@0.58.0 X
|
|
152
|
+
opendal-service-fs@0.58.0 X
|
|
153
|
+
opendal-service-gcs@0.58.0 X
|
|
154
|
+
opendal-service-ghac@0.58.0 X
|
|
155
|
+
opendal-service-http@0.58.0 X
|
|
156
|
+
opendal-service-ipmfs@0.58.0 X
|
|
157
|
+
opendal-service-obs@0.58.0 X
|
|
158
|
+
opendal-service-oss@0.58.0 X
|
|
159
|
+
opendal-service-s3@0.58.0 X
|
|
160
|
+
opendal-service-webdav@0.58.0 X
|
|
161
|
+
opendal-service-webhdfs@0.58.0 X
|
|
162
162
|
openssl-probe@0.2.1 X X
|
|
163
163
|
ordered-multimap@0.7.3 X
|
|
164
164
|
parking_lot@0.12.5 X X
|
|
@@ -171,17 +171,18 @@ pin-project-lite@0.2.17 X X
|
|
|
171
171
|
pkcs1@0.7.5 X X
|
|
172
172
|
pkcs5@0.7.1 X X
|
|
173
173
|
pkcs8@0.10.2 X X
|
|
174
|
+
pkg-config@0.3.33 X X
|
|
174
175
|
portable-atomic@1.13.1 X X
|
|
175
176
|
portable-atomic-util@0.2.7 X X
|
|
176
177
|
potential_utf@0.1.5 X
|
|
177
|
-
powerfmt@0.2.0 X X
|
|
178
178
|
ppv-lite86@0.2.21 X X
|
|
179
179
|
proc-macro2@1.0.106 X X
|
|
180
|
-
prost@0.14.
|
|
181
|
-
prost-derive@0.14.
|
|
180
|
+
prost@0.14.4 X
|
|
181
|
+
prost-derive@0.14.4 X
|
|
182
182
|
quanta@0.12.6 X
|
|
183
|
-
quick-xml@0.
|
|
184
|
-
|
|
183
|
+
quick-xml@0.40.1 X
|
|
184
|
+
quick-xml@0.41.0 X
|
|
185
|
+
quote@1.0.46 X X
|
|
185
186
|
r-efi@5.3.0 X X X
|
|
186
187
|
r-efi@6.0.0 X X X
|
|
187
188
|
rand@0.8.6 X X
|
|
@@ -193,29 +194,28 @@ rand_core@0.9.5 X X
|
|
|
193
194
|
raw-cpuid@11.6.0 X
|
|
194
195
|
rb-sys@0.9.128 X X
|
|
195
196
|
rb-sys-build@0.9.128 X X
|
|
196
|
-
rb-sys-env@0.1.2 X X
|
|
197
197
|
rb-sys-env@0.2.3 X X
|
|
198
198
|
redox_syscall@0.5.18 X
|
|
199
|
-
regex@1.12.
|
|
199
|
+
regex@1.12.4 X X
|
|
200
200
|
regex-automata@0.4.14 X X
|
|
201
|
-
regex-syntax@0.8.
|
|
202
|
-
reqsign-aliyun-oss@3.
|
|
203
|
-
reqsign-aws-v4@3.0.
|
|
204
|
-
reqsign-azure-storage@3.0.
|
|
205
|
-
reqsign-core@3.0.
|
|
206
|
-
reqsign-file-read-tokio@3.0.
|
|
207
|
-
reqsign-google@3.0.
|
|
208
|
-
reqsign-huaweicloud-obs@3.0.
|
|
209
|
-
reqsign-tencent-cos@3.0.
|
|
210
|
-
reqwest@0.13.
|
|
201
|
+
regex-syntax@0.8.11 X X
|
|
202
|
+
reqsign-aliyun-oss@3.1.0 X
|
|
203
|
+
reqsign-aws-v4@3.0.1 X
|
|
204
|
+
reqsign-azure-storage@3.0.1 X
|
|
205
|
+
reqsign-core@3.0.1 X
|
|
206
|
+
reqsign-file-read-tokio@3.0.1 X
|
|
207
|
+
reqsign-google@3.0.1 X
|
|
208
|
+
reqsign-huaweicloud-obs@3.0.1 X
|
|
209
|
+
reqsign-tencent-cos@3.0.1 X
|
|
210
|
+
reqwest@0.13.4 X X
|
|
211
211
|
rsa@0.9.10 X X
|
|
212
212
|
rust-ini@0.21.3 X
|
|
213
|
-
rustc-hash@2.1.
|
|
213
|
+
rustc-hash@2.1.3 X X
|
|
214
214
|
rustc_version@0.4.1 X X
|
|
215
215
|
rustix@1.1.4 X X X
|
|
216
|
-
rustls@0.23.
|
|
217
|
-
rustls-native-certs@0.8.
|
|
218
|
-
rustls-pki-types@1.
|
|
216
|
+
rustls@0.23.41 X X X
|
|
217
|
+
rustls-native-certs@0.8.4 X X X
|
|
218
|
+
rustls-pki-types@1.15.0 X X
|
|
219
219
|
rustls-platform-verifier@0.7.0 X X
|
|
220
220
|
rustls-platform-verifier-android@0.1.1 X X
|
|
221
221
|
rustls-webpki@0.103.13 X
|
|
@@ -235,32 +235,30 @@ serde_core@1.0.228 X X
|
|
|
235
235
|
serde_derive@1.0.228 X X
|
|
236
236
|
serde_json@1.0.150 X X
|
|
237
237
|
serde_urlencoded@0.7.1 X X
|
|
238
|
-
sha1@0.
|
|
238
|
+
sha1@0.11.0 X X
|
|
239
239
|
sha2@0.10.9 X X
|
|
240
240
|
sha2@0.11.0 X X
|
|
241
241
|
shell-words@1.1.1 X X
|
|
242
242
|
shlex@1.3.0 X X
|
|
243
|
+
shlex@2.0.1 X X
|
|
243
244
|
signal-hook-registry@1.4.8 X X
|
|
244
245
|
signature@2.2.0 X X
|
|
245
246
|
simd_cesu8@1.1.1 X X
|
|
246
247
|
simdutf8@0.1.5 X X
|
|
247
|
-
simple_asn1@0.6.4 X
|
|
248
248
|
slab@0.4.12 X
|
|
249
|
-
smallvec@1.15.
|
|
250
|
-
socket2@0.6.
|
|
249
|
+
smallvec@1.15.2 X X
|
|
250
|
+
socket2@0.6.4 X X
|
|
251
|
+
spin@0.10.0 X
|
|
251
252
|
spin@0.9.8 X
|
|
252
253
|
spinning_top@0.3.0 X X
|
|
253
254
|
spki@0.7.3 X X
|
|
254
255
|
stable_deref_trait@1.2.1 X X
|
|
255
256
|
subtle@2.6.1 X
|
|
256
|
-
syn@2.0.
|
|
257
|
+
syn@2.0.118 X X
|
|
257
258
|
sync_wrapper@1.0.2 X
|
|
258
259
|
synstructure@0.13.2 X
|
|
259
260
|
thiserror@2.0.18 X X
|
|
260
261
|
thiserror-impl@2.0.18 X X
|
|
261
|
-
time@0.3.47 X X
|
|
262
|
-
time-core@0.1.8 X X
|
|
263
|
-
time-macros@0.2.27 X X
|
|
264
262
|
tiny-keccak@2.0.2 X
|
|
265
263
|
tinystr@0.8.3 X
|
|
266
264
|
tokio@1.52.3 X
|
|
@@ -274,44 +272,41 @@ tower-service@0.3.3 X
|
|
|
274
272
|
tracing@0.1.44 X
|
|
275
273
|
tracing-core@0.1.36 X
|
|
276
274
|
try-lock@0.2.5 X
|
|
277
|
-
typenum@1.20.
|
|
275
|
+
typenum@1.20.1 X X
|
|
278
276
|
unicode-ident@1.0.24 X X X
|
|
279
|
-
untrusted@0.7.1 X
|
|
280
277
|
untrusted@0.9.0 X
|
|
281
278
|
url@2.5.8 X X
|
|
282
279
|
utf8_iter@1.0.4 X X
|
|
283
|
-
uuid@1.23.
|
|
280
|
+
uuid@1.23.4 X X
|
|
284
281
|
version_check@0.9.5 X X
|
|
285
282
|
walkdir@2.5.0 X X
|
|
286
283
|
want@0.3.1 X
|
|
287
284
|
wasi@0.11.1+wasi-snapshot-preview1 X X X
|
|
288
|
-
wasip2@1.0.
|
|
289
|
-
|
|
290
|
-
wasm-bindgen@0.
|
|
291
|
-
wasm-bindgen-
|
|
292
|
-
wasm-bindgen-macro@0.2.
|
|
293
|
-
wasm-bindgen-
|
|
294
|
-
wasm-bindgen-shared@0.2.121 X X
|
|
285
|
+
wasip2@1.0.4+wasi-0.2.12 X X X
|
|
286
|
+
wasm-bindgen@0.2.126 X X
|
|
287
|
+
wasm-bindgen-futures@0.4.76 X X
|
|
288
|
+
wasm-bindgen-macro@0.2.126 X X
|
|
289
|
+
wasm-bindgen-macro-support@0.2.126 X X
|
|
290
|
+
wasm-bindgen-shared@0.2.126 X X
|
|
295
291
|
wasm-streams@0.5.0 X X
|
|
296
|
-
web-sys@0.3.
|
|
292
|
+
web-sys@0.3.103 X X
|
|
297
293
|
web-time@1.1.0 X X
|
|
298
|
-
webpki-root-certs@1.0.
|
|
294
|
+
webpki-root-certs@1.0.8 X
|
|
299
295
|
winapi@0.3.9 X X
|
|
300
296
|
winapi-i686-pc-windows-gnu@0.4.0 X X
|
|
301
297
|
winapi-util@0.1.11 X X
|
|
302
298
|
winapi-x86_64-pc-windows-gnu@0.4.0 X X
|
|
303
299
|
windows-link@0.2.1 X X
|
|
304
300
|
windows-sys@0.61.2 X X
|
|
305
|
-
wit-bindgen@0.
|
|
306
|
-
wit-bindgen@0.51.0 X X X
|
|
301
|
+
wit-bindgen@0.57.1 X X X
|
|
307
302
|
writeable@0.6.3 X
|
|
308
303
|
xattr@1.6.1 X X
|
|
309
|
-
yoke@0.8.
|
|
304
|
+
yoke@0.8.3 X
|
|
310
305
|
yoke-derive@0.8.2 X
|
|
311
|
-
zerocopy@0.8.
|
|
306
|
+
zerocopy@0.8.53 X X X
|
|
312
307
|
zerofrom@0.1.8 X
|
|
313
308
|
zerofrom-derive@0.1.7 X
|
|
314
|
-
zeroize@1.
|
|
309
|
+
zeroize@1.9.0 X X
|
|
315
310
|
zerotrie@0.2.4 X
|
|
316
311
|
zerovec@0.11.6 X
|
|
317
312
|
zerovec-derive@0.11.3 X
|
data/core/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,198 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
<!-- Release notes generated with: gh release create v_draft --generate-notes --draft -->
|
|
9
9
|
|
|
10
|
+
## [v0.58.0] - 2026-07-07
|
|
11
|
+
|
|
12
|
+
### Breaking Changes
|
|
13
|
+
* core: `Operator::new(builder)` now returns a finished `Operator`; remove the old `.finish()` call. The typed runtime composition pipeline has been replaced by `Service` / `ServiceDyn` / `Servicer` plus `OperationContext`.
|
|
14
|
+
* core: raw `Service` / `ServiceDyn` factories for `read`, `write`, `delete`, `list`, and `copy` now return OIO bodies synchronously. Move asynchronous work into the returned body implementation.
|
|
15
|
+
* core: `OperatorInfo::native_capability()` and native/full capability APIs have been removed. Use `OperatorInfo::capability()` as the composed operator availability contract.
|
|
16
|
+
* core: runtime composition APIs have been consolidated around `OperationContext`, `Operator::with_context`, `Operator::from_parts`, and `Operator::into_parts`; `inner`, `into_inner`, `executor_ref`, `http_transport`, `executor`, and `from_service` have been removed.
|
|
17
|
+
* core: `raw::AtomicContentLength`, `raw::PathCacher`, `raw::PathQuery`, and the `internal-path-cache` feature have been removed.
|
|
18
|
+
* core: `BytesRange` is now public and suffix reads are expressed with `BytesRange::suffix(size)`.
|
|
19
|
+
* bindings/c, bindings/go, bindings/java, and bindings/dotnet: operator info now exposes a single composed `capability`; previous `full` and `native` capability APIs were removed or renamed.
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
* feat(binding/go): Add ListOptions with recursive support by @FrankYang0529 in https://github.com/apache/opendal/pull/7605
|
|
23
|
+
* feat(website): introduce a design system and rebuild the homepage by @Xuanwo in https://github.com/apache/opendal/pull/7638
|
|
24
|
+
* feat(binding/go): expose all metata fields to golang by @dentiny in https://github.com/apache/opendal/pull/7646
|
|
25
|
+
* feat(website): add Paimon Rust to logo wall by @QuakeWang in https://github.com/apache/opendal/pull/7643
|
|
26
|
+
* feat(lister.go): Add opendal_list_options_set_limit and opendal_list_options_set_start_after by @FrankYang0529 in https://github.com/apache/opendal/pull/7649
|
|
27
|
+
* feat(binding/go): expose all write options by @dentiny in https://github.com/apache/opendal/pull/7647
|
|
28
|
+
* feat(services/oss): support content_encoding in write operations by @ITpandaffm in https://github.com/apache/opendal/pull/7658
|
|
29
|
+
* feat(binding/go): expose all read options by @dentiny in https://github.com/apache/opendal/pull/7665
|
|
30
|
+
* feat(services/azdls): support conditional read headers by @YuangGao in https://github.com/apache/opendal/pull/7667
|
|
31
|
+
* feat(delete.go): add options version and recursive by @FrankYang0529 in https://github.com/apache/opendal/pull/7676
|
|
32
|
+
* feat(binding/go): expose all stats options by @dentiny in https://github.com/apache/opendal/pull/7670
|
|
33
|
+
* feat(binding/go): upgrade FFI package to latest version by @dentiny in https://github.com/apache/opendal/pull/7681
|
|
34
|
+
* feat(core): Add copy source version support by @Xuanwo in https://github.com/apache/opendal/pull/7679
|
|
35
|
+
* feat(lister.go): Add opendal_list_options_set_versions and opendal_list_options_set_deleted by @FrankYang0529 in https://github.com/apache/opendal/pull/7645
|
|
36
|
+
* feat(website): add GooseFS to logo wall and services by @XuQianJin-Stars in https://github.com/apache/opendal/pull/7709
|
|
37
|
+
* feat(copy.go): add copy options by @FrankYang0529 in https://github.com/apache/opendal/pull/7707
|
|
38
|
+
* feat(binding/go): add missing read options by @dentiny in https://github.com/apache/opendal/pull/7728
|
|
39
|
+
* feat(website): Add per-service configuration reference pages by @Xuanwo in https://github.com/apache/opendal/pull/7730
|
|
40
|
+
* feat(core)!: Add suffix read support by @Xuanwo in https://github.com/apache/opendal/pull/7734
|
|
41
|
+
* feat(metrics): add operation label to a few backends [1/N] by @dentiny in https://github.com/apache/opendal/pull/7530
|
|
42
|
+
* [2/N] feat(metrics): annotate metrics with operation name by @dentiny in https://github.com/apache/opendal/pull/7748
|
|
43
|
+
* feat(core): expose operator base service and context by @ngg in https://github.com/apache/opendal/pull/7788
|
|
44
|
+
* feat(services/swift): support list with start_after by @edmc-ss in https://github.com/apache/opendal/pull/7810
|
|
45
|
+
* feat(binding/go): add presign with options by @dentiny in https://github.com/apache/opendal/pull/7814
|
|
46
|
+
* feat(fs): copy with metadata by @dentiny in https://github.com/apache/opendal/pull/7535
|
|
47
|
+
* feat(services/webdav): support conditional read headers by @YuangGao in https://github.com/apache/opendal/pull/7637
|
|
48
|
+
* feat(services/obs): support if_modified_since and if_unmodified_since… by @YuangGao in https://github.com/apache/opendal/pull/7708
|
|
49
|
+
* feat(binding/go): add reader with options by @ryankert01 in https://github.com/apache/opendal/pull/7817
|
|
50
|
+
* feat(services/http): support if_modified_since and if_unmodified_since by @YuangGao in https://github.com/apache/opendal/pull/7636
|
|
51
|
+
* feat(services/hf): honor HF_HUB_DISABLE_XET to force http download mode by @AlJohri in https://github.com/apache/opendal/pull/7819
|
|
52
|
+
* feat(core): add conditional rename option by @hfutatzhanghb in https://github.com/apache/opendal/pull/7815
|
|
53
|
+
* feat(binding/go): add write with metadata by @ryankert01 in https://github.com/apache/opendal/pull/7827
|
|
54
|
+
* feat(http-transport-reqwest): allow tls options by @erickguan in https://github.com/apache/opendal/pull/7798
|
|
55
|
+
* feat(dev): support dotnet version updates by @Xuanwo in https://github.com/apache/opendal/pull/7862
|
|
56
|
+
### Changed
|
|
57
|
+
* refactor: switch S3 crc32c checksum to crc-fast by @PsiACE in https://github.com/apache/opendal/pull/7662
|
|
58
|
+
* refactor(core): Rename oio::Read to ReadStream by @Xuanwo in https://github.com/apache/opendal/pull/7675
|
|
59
|
+
* refactor(core): Move read range to raw reader by @Xuanwo in https://github.com/apache/opendal/pull/7678
|
|
60
|
+
* refactor!: Refactor runtime service composition by @Xuanwo in https://github.com/apache/opendal/pull/7743
|
|
61
|
+
* refactor!: simplify stateful operation factories by @Xuanwo in https://github.com/apache/opendal/pull/7746
|
|
62
|
+
* refactor!: Remove native and full capability APIs by @Xuanwo in https://github.com/apache/opendal/pull/7747
|
|
63
|
+
* refactor: introduce HTTP transporter API by @Xuanwo in https://github.com/apache/opendal/pull/7759
|
|
64
|
+
* refactor(foyer): implement Code manually to drop bincode dependency by @Xuanwo in https://github.com/apache/opendal/pull/7772
|
|
65
|
+
* refactor(core)!: remove unused AtomicContentLength util by @Xuanwo in https://github.com/apache/opendal/pull/7773
|
|
66
|
+
* refactor(core): delegate presign_stat/presign_read to their _with variants by @Xuanwo in https://github.com/apache/opendal/pull/7775
|
|
67
|
+
* refactor(core)!: remove unused PathCacher and internal-path-cache feature by @Xuanwo in https://github.com/apache/opendal/pull/7778
|
|
68
|
+
* refactor(core)!: rework Operator runtime composition API by @Xuanwo in https://github.com/apache/opendal/pull/7779
|
|
69
|
+
* refactor(core): make reqsign-core an optional dependency by @Xuanwo in https://github.com/apache/opendal/pull/7784
|
|
70
|
+
* refactor(core): lazy open positioned read handles by @Xuanwo in https://github.com/apache/opendal/pull/7796
|
|
71
|
+
* refactor: normalize service module layout by @Xuanwo in https://github.com/apache/opendal/pull/7797
|
|
72
|
+
* refactor(bindings/python): use declarative pymodule syntax by @chitralverma in https://github.com/apache/opendal/pull/7812
|
|
73
|
+
* refactor(bindings/python): generate type stubs with pyo3 introspection by @chitralverma in https://github.com/apache/opendal/pull/7824
|
|
74
|
+
### Fixed
|
|
75
|
+
* fix(services/hf): avoid logging full HTML error pages by @kszucs in https://github.com/apache/opendal/pull/7634
|
|
76
|
+
* fix(website): mobile drawer menu by @suyanhanx in https://github.com/apache/opendal/pull/7644
|
|
77
|
+
* fix(services/azdls): Handle not modified as condition mismatch by @Xuanwo in https://github.com/apache/opendal/pull/7674
|
|
78
|
+
* fix(ci): release dotnet workflow by @Fatorin in https://github.com/apache/opendal/pull/7673
|
|
79
|
+
* fix(services): bound batch-delete result allocation against malformed server responses by @tonghuaroot in https://github.com/apache/opendal/pull/7683
|
|
80
|
+
* fix(services/fs): confine object keys to the configured root by rejecting parent-dir traversal by @tonghuaroot in https://github.com/apache/opendal/pull/7684
|
|
81
|
+
* fix(layers): Align reader observability by @Xuanwo in https://github.com/apache/opendal/pull/7687
|
|
82
|
+
* fix(services/webdav): remove unnecessary mut by @Xuanwo in https://github.com/apache/opendal/pull/7717
|
|
83
|
+
* fix(services/fs): preserve backslash in filenames on Unix during list by @tonghuaroot in https://github.com/apache/opendal/pull/7721
|
|
84
|
+
* fix(services): confine compfs/monoiofs object keys to root by rejecting parent-dir traversal by @tonghuaroot in https://github.com/apache/opendal/pull/7702
|
|
85
|
+
* fix(fuzz): fall back to fs operator so fuzz targets produce real coverage by @tonghuaroot in https://github.com/apache/opendal/pull/7723
|
|
86
|
+
* fix(services/fs): cache fs reader by @dentiny in https://github.com/apache/opendal/pull/7782
|
|
87
|
+
* fix(services/onedrive): build correct children URL when listing root by @tonghuaroot in https://github.com/apache/opendal/pull/7720
|
|
88
|
+
* fix(services/memcached): TCP address resolution by @flip1995 in https://github.com/apache/opendal/pull/7701
|
|
89
|
+
* fix(webdav): support multiple propstat entries by @ZeonXr in https://github.com/apache/opendal/pull/7823
|
|
90
|
+
* Fix C binding empty byte buffers by @fallintoplace in https://github.com/apache/opendal/pull/7807
|
|
91
|
+
* fix(layers/foyer): preserve read args while filling full-object cache by @tonghuaroot in https://github.com/apache/opendal/pull/7718
|
|
92
|
+
* fix(fuzz): resolve fuzz_reader timeout on OSS-Fuzz by @tonghuaroot in https://github.com/apache/opendal/pull/7831
|
|
93
|
+
* fix(object_store): export send future helper by @hfutatzhanghb in https://github.com/apache/opendal/pull/7851
|
|
94
|
+
* fix(services/sqlite): stat getting the entire object by @erickguan in https://github.com/apache/opendal/pull/7853
|
|
95
|
+
* fix(services): improve stat implementation by @erickguan in https://github.com/apache/opendal/pull/7857
|
|
96
|
+
### Docs
|
|
97
|
+
* docs: update OpenDAL release skill by @Xuanwo in https://github.com/apache/opendal/pull/7655
|
|
98
|
+
* docs(website): use project logos in used-by wall by @Xuanwo in https://github.com/apache/opendal/pull/7657
|
|
99
|
+
* docs: update PMC member nomination process by @Xuanwo in https://github.com/apache/opendal/pull/7668
|
|
100
|
+
* RFC-7660: Move Read Range To Reader by @Xuanwo in https://github.com/apache/opendal/pull/7660
|
|
101
|
+
* RFC-7182: file restoration API by @NikitaMatskevich in https://github.com/apache/opendal/pull/7182
|
|
102
|
+
* docs: Sync AGENTS.md with current layout by @Xuanwo in https://github.com/apache/opendal/pull/7677
|
|
103
|
+
* RFC: Capability API by @Xuanwo in https://github.com/apache/opendal/pull/7700
|
|
104
|
+
* Add Ruby binding links by @erickguan in https://github.com/apache/opendal/pull/7713
|
|
105
|
+
* docs: add Noorle to users list by @scollins99 in https://github.com/apache/opendal/pull/7727
|
|
106
|
+
* docs: remove non-core docs pages by @Xuanwo in https://github.com/apache/opendal/pull/7733
|
|
107
|
+
* feat(website): Add a concepts page with an interactive mental model by @Xuanwo in https://github.com/apache/opendal/pull/7735
|
|
108
|
+
* RFC-7740: Operator Composition by @Xuanwo in https://github.com/apache/opendal/pull/7740
|
|
109
|
+
* RFC-7744: Simplify Stateful Operation Factory by @Xuanwo in https://github.com/apache/opendal/pull/7744
|
|
110
|
+
* docs: Add project security threat model by @potiuk in https://github.com/apache/opendal/pull/7641
|
|
111
|
+
* RFC: Add HTTP transporter design by @Xuanwo in https://github.com/apache/opendal/pull/7749
|
|
112
|
+
* docs: fix threat model style by @erickguan in https://github.com/apache/opendal/pull/7781
|
|
113
|
+
* Wire AGENTS.md -> SECURITY.md -> threat model for agent discoverability by @potiuk in https://github.com/apache/opendal/pull/7785
|
|
114
|
+
* docs: rework per-language guides around a task-centric structure by @Xuanwo in https://github.com/apache/opendal/pull/7787
|
|
115
|
+
* docs: clarify operator context composition by @Xuanwo in https://github.com/apache/opendal/pull/7791
|
|
116
|
+
* docs: source every Getting Started snippet from a runnable, CI-checked example by @Xuanwo in https://github.com/apache/opendal/pull/7790
|
|
117
|
+
* docs(website): link landing service and binding entries to docs by @Xuanwo in https://github.com/apache/opendal/pull/7795
|
|
118
|
+
* rfc: path normalization and secure hardening by @erickguan in https://github.com/apache/opendal/pull/7799
|
|
119
|
+
* docs(services/s3): fix inverted comment on disable_list_objects_v2 by @yangyang233333 in https://github.com/apache/opendal/pull/7820
|
|
120
|
+
* RFC: rename if not exists by @hfutatzhanghb in https://github.com/apache/opendal/pull/7818
|
|
121
|
+
* docs(website): add more language snippets by @erickguan in https://github.com/apache/opendal/pull/7805
|
|
122
|
+
### CI
|
|
123
|
+
* chore(bindings/ruby): use service tests scheme for ruby binding tests by @erickguan in https://github.com/apache/opendal/pull/7635
|
|
124
|
+
* fix(ci): keep website root deployment on main only by @suyanhanx in https://github.com/apache/opendal/pull/7654
|
|
125
|
+
* ci: Use asfml for discussion thread links by @Xuanwo in https://github.com/apache/opendal/pull/7669
|
|
126
|
+
* ci: reduce cache conflict and usage by @erickguan in https://github.com/apache/opendal/pull/7642
|
|
127
|
+
* feat(ci): add golang package into dependabot by @dentiny in https://github.com/apache/opendal/pull/7682
|
|
128
|
+
* ci: update rustdoc toolchain by @Xuanwo in https://github.com/apache/opendal/pull/7699
|
|
129
|
+
* ci: fix release Ruby binding workflow by @erickguan in https://github.com/apache/opendal/pull/7672
|
|
130
|
+
* ci: start azurite via npm by @Xuanwo in https://github.com/apache/opendal/pull/7715
|
|
131
|
+
* ci: fix hadoop connector cache size by @erickguan in https://github.com/apache/opendal/pull/7729
|
|
132
|
+
* ci: binding dependabot configs by @erickguan in https://github.com/apache/opendal/pull/7742
|
|
133
|
+
* ci: fix dependabot config by @Xuanwo in https://github.com/apache/opendal/pull/7750
|
|
134
|
+
* ci: add cargo updates for other directories by @erickguan in https://github.com/apache/opendal/pull/7761
|
|
135
|
+
* ci: fix dependabot cargo directory overlap by @Xuanwo in https://github.com/apache/opendal/pull/7763
|
|
136
|
+
* ci: fix ruby native build by @erickguan in https://github.com/apache/opendal/pull/7704
|
|
137
|
+
* ci: collapse dependabot group and fix by @erickguan in https://github.com/apache/opendal/pull/7771
|
|
138
|
+
* ci: build only generic macOS target by @erickguan in https://github.com/apache/opendal/pull/7800
|
|
139
|
+
* ci: cache docusaurus build cache by @erickguan in https://github.com/apache/opendal/pull/7806
|
|
140
|
+
* ci: tighten ruby release process by @erickguan in https://github.com/apache/opendal/pull/7859
|
|
141
|
+
* ci: fix release workflow tag publishing by @Xuanwo in https://github.com/apache/opendal/pull/7863
|
|
142
|
+
### Chore
|
|
143
|
+
* chore(services/compfs): bump compio version by @George-Miao in https://github.com/apache/opendal/pull/7666
|
|
144
|
+
* chore(deps): update reqwest requirement from 0.12.24 to 0.13.1 in /integrations/dav-server by @dependabot[bot] in https://github.com/apache/opendal/pull/7171
|
|
145
|
+
* chore(deps): bump the logs-errors-checksums group in /core with 2 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7697
|
|
146
|
+
* chore(deps): bump tokio from 1.52.2 to 1.52.3 in /core in the async-runtime group by @dependabot[bot] in https://github.com/apache/opendal/pull/7696
|
|
147
|
+
* chore(deps): bump the others group in /bindings/go/tests/behavior_tests with 4 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7689
|
|
148
|
+
* chore(deps): bump golang.org/x/sys from 0.24.0 to 0.45.0 in /bindings/go in the others group by @dependabot[bot] in https://github.com/apache/opendal/pull/7688
|
|
149
|
+
* chore(deps): update object_store requirement from 0.12.3 to 0.13.0 in /integrations/object_store by @dependabot[bot] in https://github.com/apache/opendal/pull/7118
|
|
150
|
+
* chore(deps): bump the http-serialization-utils group in /core with 6 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7693
|
|
151
|
+
* chore(deps): bump the pyo3 group in /bindings/python with 3 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7690
|
|
152
|
+
* chore(deps): bump the others group in /core with 22 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7698
|
|
153
|
+
* chore(deps): bump the others group across 1 directory with 5 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7652
|
|
154
|
+
* chore(deps): bump the third-party-actions group with 4 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7695
|
|
155
|
+
* chore(deps): bump the github-actions group with 3 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7691
|
|
156
|
+
* chore(deps-dev): update activesupport requirement from ~> 8.0.5 to ~> 8.1.3 in /bindings/ruby by @dependabot[bot] in https://github.com/apache/opendal/pull/7753
|
|
157
|
+
* chore(deps): bump golang.org/x/sys from 0.45.0 to 0.46.0 in /bindings/go by @dependabot[bot] in https://github.com/apache/opendal/pull/7751
|
|
158
|
+
* chore(deps): update datafusion requirement from 53.0.0 to 54.0.0 in /integrations/object_store by @dependabot[bot] in https://github.com/apache/opendal/pull/7754
|
|
159
|
+
* chore(deps): bump the http-serialization-utils group across 1 directory with 3 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7755
|
|
160
|
+
* chore: upgrade pyo3 to 0.29 by @Xuanwo in https://github.com/apache/opendal/pull/7789
|
|
161
|
+
* chore: Update copyright year in NOTICE file by @tisonkun in https://github.com/apache/opendal/pull/7792
|
|
162
|
+
* chore(bindings/java): migrate to jni 0.22 by @Xuanwo in https://github.com/apache/opendal/pull/7777
|
|
163
|
+
* chore(deps): bump the others group across 1 directory with 6 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7776
|
|
164
|
+
* chore(deps-dev): update minitest-reporters requirement from ~> 1.7.1 to ~> 1.8.0 in /bindings/ruby by @dependabot[bot] in https://github.com/apache/opendal/pull/7774
|
|
165
|
+
* chore(deps): update rb-sys-env requirement from 0.1.2 to 0.2.3 in /bindings/ruby by @dependabot[bot] in https://github.com/apache/opendal/pull/7770
|
|
166
|
+
* chore(deps): update mlua requirement from 0.9 to 0.11 in /bindings/lua by @dependabot[bot] in https://github.com/apache/opendal/pull/7766
|
|
167
|
+
* chore(deps): update ext-php-rs requirement from 0.13.1 to 0.15.15 in /bindings/php by @dependabot[bot] in https://github.com/apache/opendal/pull/7767
|
|
168
|
+
* chore(deps): bump the third-party-actions group across 1 directory with 2 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7757
|
|
169
|
+
* chore(bindings/python): replace pyright with ty for type checking by @chitralverma in https://github.com/apache/opendal/pull/7813
|
|
170
|
+
* chore(deps): bump syn from 2.0.100 to 2.0.117 in /dev by @dependabot[bot] in https://github.com/apache/opendal/pull/7846
|
|
171
|
+
* chore(deps): bump minijinja from 2.5.0 to 2.21.0 in /dev by @dependabot[bot] in https://github.com/apache/opendal/pull/7845
|
|
172
|
+
* chore(deps): bump semver from 1.0.25 to 1.0.27 in /dev by @dependabot[bot] in https://github.com/apache/opendal/pull/7842
|
|
173
|
+
* chore(deps): bump flate2 from 1.1.0 to 1.1.9 in /dev by @dependabot[bot] in https://github.com/apache/opendal/pull/7843
|
|
174
|
+
* chore(deps): bump the others group in /core with 6 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7847
|
|
175
|
+
* chore(deps): bump clap from 4.5.23 to 4.5.60 in /dev by @dependabot[bot] in https://github.com/apache/opendal/pull/7844
|
|
176
|
+
* chore(deps): bump the logs-errors-checksums group across 1 directory with 2 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7841
|
|
177
|
+
* chore(deps): bump the http-serialization-utils group across 1 directory with 3 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7835
|
|
178
|
+
* chore(deps): bump crate-ci/typos from 1.47.2 to 1.48.0 in the third-party-actions group by @dependabot[bot] in https://github.com/apache/opendal/pull/7837
|
|
179
|
+
* chore(deps): bump the github-actions group across 1 directory with 2 updates by @dependabot[bot] in https://github.com/apache/opendal/pull/7833
|
|
180
|
+
* chore: MSRV 1.91 by @tisonkun in https://github.com/apache/opendal/pull/7849
|
|
181
|
+
* chore(release): finalize Ruby binding version by @Xuanwo in https://github.com/apache/opendal/pull/7861
|
|
182
|
+
|
|
183
|
+
## New Contributors
|
|
184
|
+
* @FrankYang0529 made their first contribution in https://github.com/apache/opendal/pull/7605
|
|
185
|
+
* @ITpandaffm made their first contribution in https://github.com/apache/opendal/pull/7658
|
|
186
|
+
* @NikitaMatskevich made their first contribution in https://github.com/apache/opendal/pull/7182
|
|
187
|
+
* @tonghuaroot made their first contribution in https://github.com/apache/opendal/pull/7683
|
|
188
|
+
* @georgeorange-crypto made their first contribution in https://github.com/apache/opendal/pull/7639
|
|
189
|
+
* @scollins99 made their first contribution in https://github.com/apache/opendal/pull/7727
|
|
190
|
+
* @potiuk made their first contribution in https://github.com/apache/opendal/pull/7641
|
|
191
|
+
* @edmc-ss made their first contribution in https://github.com/apache/opendal/pull/7810
|
|
192
|
+
* @flip1995 made their first contribution in https://github.com/apache/opendal/pull/7701
|
|
193
|
+
* @yangyang233333 made their first contribution in https://github.com/apache/opendal/pull/7820
|
|
194
|
+
* @hfutatzhanghb made their first contribution in https://github.com/apache/opendal/pull/7818
|
|
195
|
+
* @ZeonXr made their first contribution in https://github.com/apache/opendal/pull/7823
|
|
196
|
+
* @ryankert01 made their first contribution in https://github.com/apache/opendal/pull/7817
|
|
197
|
+
* @fallintoplace made their first contribution in https://github.com/apache/opendal/pull/7807
|
|
198
|
+
* @AlJohri made their first contribution in https://github.com/apache/opendal/pull/7819
|
|
199
|
+
|
|
200
|
+
**Full Changelog**: https://github.com/apache/opendal/compare/v0.57.0...v0.58.0
|
|
201
|
+
|
|
10
202
|
## [v0.57.0] - 2026-05-28
|
|
11
203
|
|
|
12
204
|
### Breaking Changes
|