This is an automated email from the ASF dual-hosted git repository.
meteorgan pushed a change to branch fix-lister-when-dir-not-exist
in repository https://gitbox.apache.org/repos/asf/opendal.git
omit f604b667c fix(core): fix list with recursive when object is not
existing
add 3cfce4765 fix(binding/dart): pin version to avoid generator/runtime
version mismatch (#5734)
add 5d6345198 refactor(bindings/node)!: Change `is_exist` to `exists` to
align with nodejs API style (#5731)
add 4181d4f27 docs: Add useful links (#5735)
add e09031175 docs: QuestDB is not using opendal java (#5736)
add a77843ca9 feat(binding/dart): add examples, tests (#5740)
add e0af44606 fix(website): Handling badges click behavior correctly
(#5741)
add 64a0f4492 feat(services/onedrive): add signer to utilize the refresh
token (#5733)
add 5e7e5f44f fix(core): fix list with recursive when object is not
existing
add ca15d6cc7 fix blocking list
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 (f604b667c)
\
N -- N -- N refs/heads/fix-lister-when-dir-not-exist (ca15d6cc7)
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/ci_bindings_dart.yml | 9 +-
README.md | 2 +-
bindings/dart/README.md | 48 ++-
.../{nodejs/build.rs => dart/examples/basic.dart} | 10 +-
bindings/dart/lib/opendal.dart | 19 +
bindings/dart/rust/Cargo.toml | 2 +-
bindings/dart/{lib => tests}/opendal_test.dart | 4 +-
bindings/java/README.md | 5 +
bindings/java/users.md | 1 -
bindings/nodejs/README.md | 7 +-
bindings/nodejs/generated.d.ts | 4 +-
bindings/nodejs/package.json | 2 +-
bindings/nodejs/pnpm-lock.yaml | 447 +++++++--------------
bindings/nodejs/src/lib.rs | 4 +-
bindings/nodejs/upgrade.md | 8 +
bindings/python/README.md | 8 +-
core/README.md | 2 +-
core/src/raw/oio/list/flat_list.rs | 17 +-
core/src/services/onedrive/backend.rs | 308 ++------------
core/src/services/onedrive/builder.rs | 151 ++++++-
core/src/services/onedrive/config.rs | 12 +-
core/src/services/onedrive/core.rs | 377 +++++++++++++++++
core/src/services/onedrive/delete.rs | 18 +-
core/src/services/onedrive/docs.md | 11 +-
core/src/services/onedrive/error.rs | 5 +-
core/src/services/onedrive/graph_model.rs | 57 +--
core/src/services/onedrive/lister.rs | 66 ++-
core/src/services/onedrive/mod.rs | 2 +
core/src/services/onedrive/writer.rs | 41 +-
core/tests/behavior/blocking_list.rs | 16 +
website/docusaurus.config.js | 2 +-
31 files changed, 919 insertions(+), 746 deletions(-)
copy bindings/{nodejs/build.rs => dart/examples/basic.dart} (76%)
rename bindings/dart/{lib => tests}/opendal_test.dart (93%)
create mode 100644 core/src/services/onedrive/core.rs