This is an automated email from the ASF dual-hosted git repository.
erickguan pushed a change to branch docs
in repository https://gitbox.apache.org/repos/asf/opendal.git
discard a8cc661e6 Fix main page components
discard 5838d7387 docs(website): add more language snippets
add b6a0a7a9c fix(services/onedrive): build correct children URL when
listing root (#7720)
add 3fd4ead4a feat(services/swift): support list with start_after (#7810)
add a6f04d0f4 chore(deps): bump the third-party-actions group across 1
directory with 2 updates (#7757)
add 65a70132a chore(bindings/python): replace pyright with ty for type
checking (#7813)
add 931baacfb fix(services/memcached): TCP address resolution (#7701)
add a83e4ed1e feat(binding/go): add presign with options (#7814)
add 9d7c68eaa refactor(bindings/python): use declarative pymodule syntax
(#7812)
add 868837c9e feat(fs): copy with metadata (#7535)
add 98f8edf5a feat(services/webdav): support conditional read headers
(#7637)
add a004995e1 feat(services/obs): support if_modified_since and
if_unmodified_since⦠(#7708)
add 73ba2c039 docs(services/s3): fix inverted comment on
disable_list_objects_v2 (#7820)
add 5ebfb5b36 RFC: rename if not exists (#7818)
add 160fbae2c fix(webdav): support multiple propstat entries (#7823)
add 701491486 refactor(bindings/python): generate type stubs with pyo3
introspection (#7824)
add 573079188 feat(binding/go): add reader with options (#7817)
add e489f0bc6 feat(services/http): support if_modified_since and
if_unmodified_since (#7636)
add 29d55e8b1 Fix C binding empty byte buffers (#7807)
add 5160785c7 fix(layers/foyer): preserve read args while filling
full-object cache (#7718)
add 29fb98f24 ci: cache docusaurus build cache (#7806)
add 2e037bbcb feat(services/hf): honor HF_HUB_DISABLE_XET to force http
download mode (#7819)
add d88a32233 docs(website): add more language snippets
add 55c8ea100 Fix main page components
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 (a8cc661e6)
\
N -- N -- N refs/heads/docs (55c8ea100)
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/services/webdav/0_nginx/action.yml | 1 +
.../webdav/nginx_with_empty_password/action.yml | 1 +
.../services/webdav/nginx_with_password/action.yml | 1 +
.../services/webdav/nginx_with_redirect/action.yml | 1 +
.github/workflows/ci_bindings_python.yml | 23 +
.github/workflows/ci_check.yml | 11 +-
.github/workflows/docs.yml | 177 +-
.github/workflows/release_ruby.yml | 2 +-
.github/workflows/release_rust.yml | 2 +-
bindings/c/include/opendal.h | 214 +-
bindings/c/src/lib.rs | 1 +
bindings/c/src/operator.rs | 74 +-
bindings/c/src/presign.rs | 193 +-
bindings/c/src/types.rs | 261 +-
bindings/c/src/writer.rs | 9 +
bindings/c/tests/bdd.cpp | 108 +
bindings/c/tests/test_suites_presign.cpp | 83 +
bindings/c/tests/test_suites_reader_writer.cpp | 63 +
bindings/go/delete.go | 48 +-
bindings/go/presign.go | 169 +-
bindings/go/reader.go | 322 +-
bindings/go/string_ownership_test.go | 534 +
bindings/go/tests/behavior_tests/presign_test.go | 48 +-
bindings/go/tests/behavior_tests/read_test.go | 79 +
bindings/go/types.go | 2 +
.../java/org/apache/opendal/ServiceConfig.java | 16 +
bindings/python/Cargo.toml | 13 +-
bindings/python/justfile | 21 +-
bindings/python/pyproject.toml | 6 +-
bindings/python/pyrightconfig.json | 7 -
bindings/python/python/opendal/__init__.py | 35 +-
.../opendal/_opendal.pyi} | 26 +-
bindings/python/python/opendal/capability.pyi | 222 +-
bindings/python/python/opendal/exceptions.pyi | 56 +-
bindings/python/python/opendal/file.pyi | 268 +-
bindings/python/python/opendal/layers.pyi | 49 +-
bindings/python/python/opendal/operator.pyi | 5669 +------
bindings/python/python/opendal/services.pyi | 131 +-
bindings/python/python/opendal/types.pyi | 180 +-
bindings/python/ruff.toml | 8 +-
bindings/python/scripts/postprocess_stubs.py | 108 +
bindings/python/src/bin/stub_gen.rs | 25 -
bindings/python/src/capability.rs | 1 -
bindings/python/src/errors.rs | 2 +-
bindings/python/src/file.rs | 98 +-
bindings/python/src/layers.rs | 17 -
bindings/python/src/lib.rs | 148 +-
bindings/python/src/metadata.rs | 16 -
bindings/python/src/operator.rs | 179 +-
bindings/python/src/services.rs | 5312 +------
bindings/python/src/utils.rs | 55 +-
bindings/python/tests/test_read.py | 7 +-
bindings/python/upgrade.md | 2 +-
bindings/python/uv.lock | 1558 +-
core/Cargo.lock | 2 +
core/core/src/blocking/operator.rs | 48 +
.../src/docs/rfcs/7818_rename_if_not_exists.md | 480 +
core/core/src/docs/rfcs/mod.rs | 4 +
core/layers/foyer/src/full.rs | 28 +-
core/layers/foyer/src/lib.rs | 34 +-
core/services/fs/Cargo.toml | 4 +
core/services/fs/src/core.rs | 47 +-
core/services/hf/src/backend.rs | 58 +-
core/services/hf/src/config.rs | 6 +
core/services/hf/src/docs.md | 1 +
core/services/http/src/backend.rs | 4 +
core/services/http/src/core.rs | 18 +
core/services/memcached/src/core.rs | 64 +-
core/services/obs/src/backend.rs | 2 +
core/services/obs/src/core.rs | 10 +
core/services/onedrive/Cargo.toml | 1 +
core/services/onedrive/src/core.rs | 167 +
core/services/onedrive/src/lister.rs | 25 +-
core/services/s3/src/backend.rs | 2 +-
core/services/swift/src/backend.rs | 2 +
core/services/swift/src/lister.rs | 22 +-
core/services/webdav/src/backend.rs | 24 +
core/services/webdav/src/config.rs | 36 +-
core/services/webdav/src/core.rs | 172 +-
core/services/webdav/src/lister.rs | 2 +-
dev/src/generate/python.j2 | 134 +-
dev/src/generate/python.rs | 6 +-
website/.node-version | 1 +
website/DEPENDENCIES.node.csv | 7 +-
website/data/services.json | 39 +-
website/docusaurus.config.js | 8 +
website/package.json | 11 +-
website/pnpm-lock.yaml | 15545 +++++++++++--------
.../pnpm-workspace.yaml | 7 +-
89 files changed, 15014 insertions(+), 18669 deletions(-)
delete mode 100644 bindings/python/pyrightconfig.json
copy bindings/python/{tests/test_stat_capability.py =>
python/opendal/_opendal.pyi} (72%)
create mode 100644 bindings/python/scripts/postprocess_stubs.py
delete mode 100644 bindings/python/src/bin/stub_gen.rs
create mode 100644 core/core/src/docs/rfcs/7818_rename_if_not_exists.md
create mode 100644 website/.node-version
copy bindings/java/src/main/resources/bindings.properties =>
website/pnpm-workspace.yaml (91%)