This is an automated email from the ASF dual-hosted git repository.
suyanhanx pushed a change to branch nodejs-layer
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
omit d72b9dd76 fix clippy
omit 33bd8cca9 fix test job
omit 103b87fdd fix
omit 56efb9504 add more cargo config
omit ea45a8715 fix setup
omit 87a49ddee fmt
omit 0c2826eaf use object to pass params
omit eb490b8eb try
omit ad83932a5 try
omit bbe1ee16e try
omit ff4887b3c try
omit a4281eec3 try docker build
omit 47e612009 feat(bindings/nodejs): add retry layer
add 303f6e5b3 refactor(services/libsql): Migrate libsql task to new
behavior test planner (#3363)
add 26539633e fix(services/s3): Accept List responses without ETag (#3478)
add fd6cb675a feat(bindings/python)!: Implement File and AsyncFile to
replace Reader (#3474)
add d27dc3e67 fix(bindings/python): fix type annotations and improve docs
(#3483)
add d1304255b docs(readme): Fix capitalization about the ABFS service in
README.md (#3485)
new a65e8e268 feat(bindings/nodejs): add retry layer
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 (d72b9dd76)
\
N -- N -- N refs/heads/nodejs-layer (a65e8e268)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/scripts/behavior_test/plan.py | 1 -
.github/services/libsql/libsql-auth/action.yml | 57 +++++
.github/services/libsql/libsql/action.yml | 55 +++++
.github/workflows/service_test_libsql.yml | 132 -----------
README.md | 2 +-
bindings/java/Cargo.toml | 3 +
bindings/nodejs/Cargo.toml | 2 +
bindings/nodejs/src/lib.rs | 1 +
bindings/python/Cargo.toml | 2 +
bindings/python/python/opendal/__init__.pyi | 38 ++--
bindings/python/python/opendal/layers.pyi | 15 +-
bindings/python/src/capability.rs | 60 +++++
bindings/python/src/{reader.rs => file.rs} | 291 ++++++++++++++++---------
bindings/python/src/lib.rs | 10 +-
bindings/python/src/operator.rs | 71 +++---
bindings/python/src/utils.rs | 30 ++-
bindings/python/tests/test_async_delete.py | 2 +-
bindings/python/tests/test_read.py | 48 ++++
bindings/python/upgrade.md | 18 ++
core/src/services/s3/pager.rs | 25 ++-
20 files changed, 562 insertions(+), 301 deletions(-)
create mode 100644 .github/services/libsql/libsql-auth/action.yml
create mode 100644 .github/services/libsql/libsql/action.yml
delete mode 100644 .github/workflows/service_test_libsql.yml
rename bindings/python/src/{reader.rs => file.rs} (50%)