This is an automated email from the ASF dual-hosted git repository. yuchanns pushed a change to branch ci-bindings-go in repository https://gitbox.apache.org/repos/asf/opendal.git
discard b996f04bb ci(bindings/go): reduce diff discard af67cf886 ci(bindings/go): simplify and improve Go bindings test infrastructure add f3ef4bddc refactor(services/fs): extract implementation to core (#6317) add f79abbf47 refactor: Migrate mini_moka service to implement Access directly (#6316) add f6dc4e01f fix(python): correctly calculate end bound using offset + size instead of size directly (#6314) add 062307d1f feat(bindings/nodejs): Add ReadOptions and ReaderOptions support for new options API (#6312) add 663895f62 ci(bindings/go): simplify and improve Go bindings test infrastructure add c6052ac77 ci(bindings/go): reduce diff 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 (b996f04bb) \ N -- N -- N refs/heads/ci-bindings-go (c6052ac77) 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: .vscode/settings.json | 1 + bindings/nodejs/generated.d.ts | 166 ++++++++++- bindings/nodejs/src/capability.rs | 18 ++ bindings/nodejs/src/lib.rs | 39 ++- bindings/nodejs/src/options.rs | 237 ++++++++++++++- .../nodejs/tests/suites/asyncReadOptions.suite.mjs | 329 +++++++++++++++++++++ bindings/nodejs/tests/suites/index.mjs | 4 + .../nodejs/tests/suites/syncReadOptions.suite.mjs | 310 +++++++++++++++++++ bindings/python/python/opendal/__base.pyi | 238 ++++++++------- bindings/python/src/operator.rs | 8 +- bindings/python/src/options.rs | 18 +- bindings/python/tests/test_read.py | 6 +- core/src/services/fs/backend.rs | 194 ++---------- core/src/services/fs/core.rs | 175 +++++++++++ core/src/services/fs/delete.rs | 1 - core/src/services/{oss/mod.rs => fs/error.rs} | 30 +- core/src/services/fs/mod.rs | 2 + core/src/services/mini_moka/backend.rs | 201 +++++++++---- core/src/services/mini_moka/config.rs | 14 +- core/src/services/{moka => mini_moka}/core.rs | 34 +-- core/src/services/{moka => mini_moka}/delete.rs | 14 +- core/src/services/{moka => mini_moka}/lister.rs | 25 +- core/src/services/mini_moka/mod.rs | 9 + core/src/services/{moka => mini_moka}/writer.rs | 41 +-- 24 files changed, 1650 insertions(+), 464 deletions(-) create mode 100644 bindings/nodejs/tests/suites/asyncReadOptions.suite.mjs create mode 100644 bindings/nodejs/tests/suites/syncReadOptions.suite.mjs copy core/src/services/{oss/mod.rs => fs/error.rs} (72%) copy core/src/services/{moka => mini_moka}/core.rs (62%) copy core/src/services/{moka => mini_moka}/delete.rs (80%) copy core/src/services/{moka => mini_moka}/lister.rs (74%) copy core/src/services/{moka => mini_moka}/writer.rs (68%)