This is an automated email from the ASF dual-hosted git repository.
yuchanns pushed a change to branch refactor-go-binding
in repository https://gitbox.apache.org/repos/asf/opendal.git
discard 60cc47e0f feat(bindings/go): Add comprehensive Makefile and simplify
build process
discard 445cf3b32 refactor(bindings/go): Restructure FFI system with type-safe
wrapper
add fb865f2af refactor(services/moka)!: replace `sync::Cache` with
`future::Cache` (#6270)
add 66424c9fb chore(deps): bump uuid from 1.16.0 to 1.17.0 in /bin/oli
(#6245)
add 8fe3f360d fix(nodejs): esmodule and commonjs support (#6266)
add cdb9871d1 feat(bindings/python): Enhance Stat, Lister, Metadata &
Entry (#6232)
add f7fd8ebb8 feat(layers): add fastmetrics layer (#6269)
add b71870c28 fix(gcs): headers missing in XML multipart API and incorrect
x-goog-acl header values in XML API (#6275)
add c2e3a873f feat(bindings/haskell): add more api (#6264)
add 03d6c7734 feat(core): Expose presign_xxx_options API (#6273)
add e88a1ed58 refactor(bindings/go): Restructure FFI system with type-safe
wrapper
add b0e51145c feat(bindings/go): Add comprehensive Makefile and simplify
build process
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 (60cc47e0f)
\
N -- N -- N refs/heads/refactor-go-binding (b0e51145c)
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:
bin/oli/Cargo.lock | 4 +-
bin/oli/Cargo.toml | 2 +-
bindings/haskell/haskell-src/OpenDAL.hs | 137 ++++++-
bindings/haskell/haskell-src/OpenDAL/FFI.hs | 19 +-
bindings/haskell/opendal.cabal | 2 +-
bindings/haskell/src/lib.rs | 255 ++++++++++++
bindings/haskell/test/BasicTest.hs | 142 ++++++-
bindings/haskell/test/ErrorTest.hs | 116 ++++++
bindings/haskell/test/PerformanceTest.hs | 151 +++++++
bindings/haskell/test/Spec.hs | 9 +-
bindings/haskell/test/WriterTest.hs | 153 ++++++++
bindings/nodejs/.prettierignore | 1 +
bindings/nodejs/README.md | 13 +
bindings/nodejs/{index.js => index.cjs} | 4 +-
bindings/nodejs/{index.js => index.mjs} | 9 +-
bindings/nodejs/package.json | 26 +-
bindings/nodejs/scripts/{header.js => header.mjs} | 0
bindings/nodejs/tests/suites/index.mjs | 2 +-
bindings/nodejs/tests/suites/sync.suite.mjs | 1 -
bindings/nodejs/theme/package.json | 3 +
bindings/python/python/opendal/__init__.pyi | 258 +++++++++---
bindings/python/python/opendal/exceptions.pyi | 20 +-
bindings/python/src/lib.rs | 2 +
bindings/python/src/metadata.rs | 78 +++-
bindings/python/src/operator.rs | 113 +++---
bindings/python/src/options.rs | 50 +++
bindings/python/tests/test_async_pickle_types.py | 5 +-
bindings/python/tests/test_pickle_rw.py | 6 +-
bindings/python/tests/test_sync_pickle_types.py | 5 +-
bindings/python/tests/test_write.py | 26 --
core/Cargo.lock | 15 +
core/Cargo.toml | 4 +
core/src/layers/fastmetrics.rs | 459 ++++++++++++++++++++++
core/src/layers/mod.rs | 7 +
core/src/services/gcs/core.rs | 63 ++-
core/src/services/gcs/writer.rs | 2 +-
core/src/services/moka/backend.rs | 28 +-
core/src/services/moka/config.rs | 11 +-
core/src/services/moka/docs.md | 1 -
core/src/types/operator/operator.rs | 324 ++++++++++-----
core/src/types/operator/operator_futures.rs | 118 +++---
41 files changed, 2251 insertions(+), 393 deletions(-)
create mode 100644 bindings/haskell/test/ErrorTest.hs
create mode 100644 bindings/haskell/test/PerformanceTest.hs
create mode 100644 bindings/haskell/test/WriterTest.hs
copy bindings/nodejs/{index.js => index.cjs} (95%)
rename bindings/nodejs/{index.js => index.mjs} (93%)
rename bindings/nodejs/scripts/{header.js => header.mjs} (100%)
create mode 100644 bindings/nodejs/theme/package.json
create mode 100644 core/src/layers/fastmetrics.rs