This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/cargo/core/async-runtime-e7dbaa9296
in repository https://gitbox.apache.org/repos/asf/opendal.git
discard 47583c4f2 chore(deps): bump tokio in /core in the async-runtime group
add 9b11e7fa1 feat(bindings/python): Add stubs for Exception and
Capability (#6690)
add 1dbb7591a feat(bindings/python): Add stubs for some more types (#6703)
add 6445ed7f5 ci: remove ofs behavior tests and planning (#6689) (#6704)
add 2fe9d095f docs(apps): add migration guide, update links; remove
bin/{oli,ofs} (#6689) (#6705)
add 32ac539e9 chore(deps): bump actions/setup-node from 5 to 6 in the
github-actions group (#6695)
add 68b412938 RFC-6678: Simulate Layer (#6678)
add c26e2cbe0 ci: Auto add ML thread link in github discussion (#6709)
add 2b2b5cd23 ci: Fix bug in discussion thread link auto append (#6711)
add 42545a593 ci: Fix GHA CI again (#6712)
add e06c83310 refactor(core): remove conditional compilation in PageList
trait (#6715)
add 7906e2318 refactor: migrate tikv service from adapter::kv to impl
Access directly (#6713)
add 473ece8d8 chore(deps): bump tokio in /core in the async-runtime group
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 (47583c4f2)
\
N -- N -- N
refs/heads/dependabot/cargo/core/async-runtime-e7dbaa9296 (473ece8d8)
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/actions/test_behavior_bin_ofs/action.yaml | 51 -
.github/scripts/test_behavior/plan.py | 2 +-
.github/scripts/test_behavior/test_plan.py | 9 -
.github/workflows/ci_bindings_nodejs.yml | 2 +-
.github/workflows/ci_check.yml | 2 +-
.github/workflows/discussion-thread-link.yml | 269 ++
.github/workflows/docs.yml | 4 +-
.github/workflows/release_nodejs.yml | 4 +-
.github/workflows/test_behavior.yml | 12 -
.github/workflows/test_behavior_bin_ofs.yml | 59 -
.github/workflows/test_behavior_binding_nodejs.yml | 2 +-
CLAUDE.md | 6 +-
bin/ofs/Cargo.lock | 2981 ------------------
bin/ofs/Cargo.toml | 66 -
bin/ofs/DEPENDENCIES.md | 3 -
bin/ofs/DEPENDENCIES.rust.tsv | 246 --
bin/ofs/README.md | 66 -
bin/ofs/src/main.rs | 189 --
bin/ofs/tests/common/mod.rs | 90 -
bin/ofs/tests/file.rs | 126 -
bin/ofs/tests/path.rs | 75 -
bin/oli/Cargo.lock | 3245 --------------------
bin/oli/Cargo.toml | 73 -
bin/oli/DEPENDENCIES.md | 3 -
bin/oli/DEPENDENCIES.rust.tsv | 278 --
bin/oli/README.md | 144 -
bin/oli/dev/config.toml | 26 -
bin/oli/dev/suite.toml | 21 -
bin/oli/src/bin/oli.rs | 106 -
bin/oli/src/commands/bench/mod.rs | 53 -
bin/oli/src/commands/bench/report.rs | 232 --
bin/oli/src/commands/bench/suite.rs | 200 --
bin/oli/src/commands/cat.rs | 58 -
bin/oli/src/commands/cp.rs | 258 --
bin/oli/src/commands/edit.rs | 142 -
bin/oli/src/commands/ls.rs | 165 -
bin/oli/src/commands/mod.rs | 57 -
bin/oli/src/commands/mv.rs | 140 -
bin/oli/src/commands/rm.rs | 57 -
bin/oli/src/commands/stat.rs | 67 -
bin/oli/src/commands/tee.rs | 82 -
bin/oli/src/config/mod.rs | 361 ---
bin/oli/src/lib.rs | 28 -
bin/oli/src/params/config.rs | 35 -
bin/oli/src/params/mod.rs | 20 -
bin/oli/tests/integration/cat.rs | 56 -
bin/oli/tests/integration/cp.rs | 159 -
bin/oli/tests/integration/edit.rs | 278 --
bin/oli/tests/integration/ls.rs | 81 -
bin/oli/tests/integration/main.rs | 32 -
bin/oli/tests/integration/mv.rs | 157 -
bin/oli/tests/integration/rm.rs | 82 -
bin/oli/tests/integration/stat.rs | 65 -
bin/oli/tests/integration/tee.rs | 168 -
bin/oli/tests/integration/test_utils.rs | 171 --
bindings/python/Cargo.toml | 8 +-
.../python/docs/api/{metadata.md => capability.md} | 4 +-
bindings/python/docs/api/exceptions.md | 45 +
bindings/python/docs/api/layers.md | 32 +
bindings/python/docs/api/types.md | 25 +
bindings/python/justfile | 21 +-
bindings/python/mkdocs.yml | 13 +-
bindings/python/pyrightconfig.json | 6 +
bindings/python/python/opendal/__init__.pyi | 185 +-
bindings/python/python/opendal/capability.pyi | 171 ++
bindings/python/python/opendal/exceptions.pyi | 49 +-
bindings/python/python/opendal/layers.pyi | 131 +-
bindings/python/python/opendal/types.pyi | 140 +
bindings/python/ruff.toml | 2 +-
bindings/python/src/bin/stub_gen.rs | 8 +
bindings/python/src/capability.rs | 58 +-
bindings/python/src/errors.rs | 42 +-
bindings/python/src/layers.rs | 105 +-
bindings/python/src/lib.rs | 67 +-
bindings/python/src/metadata.rs | 120 +-
bindings/python/src/utils.rs | 42 +
bindings/python/tests/test_exceptions.py | 4 +-
core/benches/vs_fs/Cargo.toml | 2 +-
core/src/docs/rfcs/6678_simulate_layer.md | 491 +++
core/src/docs/rfcs/mod.rs | 4 +
core/src/raw/oio/list/page_list.rs | 4 -
core/src/services/tikv/backend.rs | 173 +-
core/src/services/tikv/config.rs | 4 +-
core/src/services/tikv/core.rs | 112 +
.../services/{moka/delete.rs => tikv/deleter.rs} | 12 +-
core/src/services/tikv/docs.md | 9 +-
core/src/services/tikv/mod.rs | 4 +
core/src/services/{redis => tikv}/writer.rs | 14 +-
scripts/constants.py | 6 +-
website/docs/40-apps/migration.mdx | 25 +
website/docs/40-apps/ofs.mdx | 6 +-
website/docs/40-apps/oli.mdx | 6 +-
92 files changed, 1955 insertions(+), 11559 deletions(-)
delete mode 100644 .github/actions/test_behavior_bin_ofs/action.yaml
create mode 100644 .github/workflows/discussion-thread-link.yml
delete mode 100644 .github/workflows/test_behavior_bin_ofs.yml
delete mode 100644 bin/ofs/Cargo.lock
delete mode 100644 bin/ofs/Cargo.toml
delete mode 100644 bin/ofs/DEPENDENCIES.md
delete mode 100644 bin/ofs/DEPENDENCIES.rust.tsv
delete mode 100644 bin/ofs/README.md
delete mode 100644 bin/ofs/src/main.rs
delete mode 100644 bin/ofs/tests/common/mod.rs
delete mode 100644 bin/ofs/tests/file.rs
delete mode 100644 bin/ofs/tests/path.rs
delete mode 100644 bin/oli/Cargo.lock
delete mode 100644 bin/oli/Cargo.toml
delete mode 100644 bin/oli/DEPENDENCIES.md
delete mode 100644 bin/oli/DEPENDENCIES.rust.tsv
delete mode 100644 bin/oli/README.md
delete mode 100644 bin/oli/dev/config.toml
delete mode 100644 bin/oli/dev/suite.toml
delete mode 100644 bin/oli/src/bin/oli.rs
delete mode 100644 bin/oli/src/commands/bench/mod.rs
delete mode 100644 bin/oli/src/commands/bench/report.rs
delete mode 100644 bin/oli/src/commands/bench/suite.rs
delete mode 100644 bin/oli/src/commands/cat.rs
delete mode 100644 bin/oli/src/commands/cp.rs
delete mode 100644 bin/oli/src/commands/edit.rs
delete mode 100644 bin/oli/src/commands/ls.rs
delete mode 100644 bin/oli/src/commands/mod.rs
delete mode 100644 bin/oli/src/commands/mv.rs
delete mode 100644 bin/oli/src/commands/rm.rs
delete mode 100644 bin/oli/src/commands/stat.rs
delete mode 100644 bin/oli/src/commands/tee.rs
delete mode 100644 bin/oli/src/config/mod.rs
delete mode 100644 bin/oli/src/lib.rs
delete mode 100644 bin/oli/src/params/config.rs
delete mode 100644 bin/oli/src/params/mod.rs
delete mode 100644 bin/oli/tests/integration/cat.rs
delete mode 100644 bin/oli/tests/integration/cp.rs
delete mode 100644 bin/oli/tests/integration/edit.rs
delete mode 100644 bin/oli/tests/integration/ls.rs
delete mode 100644 bin/oli/tests/integration/main.rs
delete mode 100644 bin/oli/tests/integration/mv.rs
delete mode 100644 bin/oli/tests/integration/rm.rs
delete mode 100644 bin/oli/tests/integration/stat.rs
delete mode 100644 bin/oli/tests/integration/tee.rs
delete mode 100644 bin/oli/tests/integration/test_utils.rs
rename bindings/python/docs/api/{metadata.md => capability.md} (59%)
create mode 100644 bindings/python/docs/api/exceptions.md
create mode 100644 bindings/python/docs/api/layers.md
create mode 100644 bindings/python/docs/api/types.md
create mode 100644 bindings/python/pyrightconfig.json
create mode 100644 bindings/python/python/opendal/capability.pyi
create mode 100644 bindings/python/python/opendal/types.pyi
create mode 100644 bindings/python/src/bin/stub_gen.rs
create mode 100644 core/src/docs/rfcs/6678_simulate_layer.md
create mode 100644 core/src/services/tikv/core.rs
copy core/src/services/{moka/delete.rs => tikv/deleter.rs} (85%)
copy core/src/services/{redis => tikv}/writer.rs (87%)
create mode 100644 website/docs/40-apps/migration.mdx