This is an automated email from the ASF dual-hosted git repository.
suyanhanx pushed a change to branch rc-publish-dry-run
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
omit 9470dd543 Merge branch 'main' into rc-publish-dry-run
omit f73466e77 try update ring
omit 4930af4f4 chore(ci): nodejs publish dry run
add 79656c047 chore: Polish docs for Capability (#3635)
add d09c9c921 ci: Fix etcd with tls and auth failed to start (#3637)
add 2ce981d65 ci(services/etcd): Use ALLOW_NONE_AUTHENTICATION as
workaround (#3638)
add 26b52cc17 feat(service): support b2 (#3604)
add 52fa5ae3a refactor(services/rocksdb): migrate to test planner (#3636)
add 26ae6d006 chore: Bump reqsign to 0.14.4 for jsonwebtoken (#3644)
add 0b3505b5b ci: dry run publish on rc tags for python binding (#3645)
add 55ece5694 chore(ci): binding nodejs publish dry run
add 5a2bce42f disable ftp for nodejs binding
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (9470dd543)
\
N -- N -- N refs/heads/rc-publish-dry-run (5a2bce42f)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.env.example | 6 +
.github/actions/setup/action.yaml | 1 -
.github/services/etcd/etcd-tls/action.yml | 2 -
.../{sled/sled => rocksdb/rocksdb}/action.yml | 9 +-
.github/workflows/behavior_test_binding_nodejs.yml | 9 +-
.github/workflows/bindings_nodejs.yml | 7 +-
.github/workflows/bindings_python.yml | 13 +-
.github/workflows/docs.yml | 18 +-
.github/workflows/service_test_rocksdb.yml | 59 --
Cargo.lock | 150 ++---
bindings/nodejs/Cargo.toml | 3 +-
core/Cargo.toml | 6 +-
core/src/services/b2/backend.rs | 554 ++++++++++++++++
core/src/services/b2/core.rs | 706 +++++++++++++++++++++
core/src/services/b2/docs.md | 56 ++
core/src/services/b2/error.rs | 138 ++++
core/src/services/b2/lister.rs | 104 +++
core/src/services/{cos => b2}/mod.rs | 3 +-
core/src/services/{s3 => b2}/writer.rs | 95 ++-
core/src/services/mod.rs | 7 +
core/src/types/capability.rs | 20 +-
core/src/types/list.rs | 1 -
core/src/types/operator/builder.rs | 2 +
core/src/types/scheme.rs | 6 +
fixtures/etcd/docker-compose-standalone-tls.yml | 12 +-
25 files changed, 1734 insertions(+), 253 deletions(-)
copy .github/services/{sled/sled => rocksdb/rocksdb}/action.yml (81%)
delete mode 100644 .github/workflows/service_test_rocksdb.yml
create mode 100644 core/src/services/b2/backend.rs
create mode 100644 core/src/services/b2/core.rs
create mode 100644 core/src/services/b2/docs.md
create mode 100644 core/src/services/b2/error.rs
create mode 100644 core/src/services/b2/lister.rs
copy core/src/services/{cos => b2}/mod.rs (93%)
copy core/src/services/{s3 => b2}/writer.rs (60%)