This is an automated email from the ASF dual-hosted git repository.
erickguan pushed a change to branch publish-ruby-binding
in repository https://gitbox.apache.org/repos/asf/opendal.git
discard c5f1e5cd5 Version bump
discard fa82450ef Extend build for more Ruby
discard afc8f6f12 Update links in README
discard 500133892 Version bump
discard 10aa35639 Push all native gems
discard f6cbe7739 Fix tests in CI
discard 526bb346c Version bump
discard 5736b93b3 Fix release workflows
discard aabd07ea4 Version bump
discard c097fed81 Move middlewares to OpenDal::Middlware
discard c7070e61d Version bump
discard 8ca3cf9b2 Fix metadata's inspect
discard 7749e55ee Version bump
discard e8e127439 Fix file paths to include core files
discard 9f4dfe031 Fix rake release task override
discard 511720cb2 Fix path for the action patch file
add 578c1a0cb feat: Add Operator Registry (#6608)
add bbda05e52 Fix path for the action patch file
add c60daa5f9 Fix rake release task override
add 4d141ae51 Fix file paths to include core files
add 39ce08f4e Version bump
add 1df33038a Fix metadata's inspect
add 290aefe99 Version bump
add 915f9ef1d Move middlewares to OpenDal::Middlware
add 7000d2ae9 Version bump
add b4a8b4a12 Fix release workflows
add 14543938c Version bump
add 683319e94 Fix tests in CI
add 109bb8f09 Push all native gems
add 89901ed18 Version bump
add 2ccc77655 Update links in README
add b0f7e3c46 Extend native build for more Rubies
add 6f3a404f9 Version bump
add e90b16f3b Delete me: test build; release on workflow
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 (c5f1e5cd5)
\
N -- N -- N refs/heads/publish-ruby-binding (e90b16f3b)
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:
.github/workflows/release_ruby.yml | 6 +-
bindings/ruby/Rakefile | 9 +-
bindings/ruby/opendal.gemspec | 2 +
core/src/blocking/operator.rs | 9 ++
core/src/docs/rfcs/5444_operator_from_uri.md | 30 ++++---
core/src/services/fs/backend.rs | 30 ++++++-
core/src/services/fs/mod.rs | 2 +-
core/src/services/memory/backend.rs | 20 ++++-
core/src/services/memory/mod.rs | 2 +-
core/src/services/s3/backend.rs | 30 ++++++-
core/src/services/s3/mod.rs | 2 +-
core/src/types/builder.rs | 7 ++
core/src/types/mod.rs | 3 +
core/src/types/operator/builder.rs | 21 +++++
core/src/types/operator/mod.rs | 3 +
core/src/types/operator/registry.rs | 129 +++++++++++++++++++++++++++
16 files changed, 276 insertions(+), 29 deletions(-)
create mode 100644 core/src/types/operator/registry.rs