This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/github_actions/astral-sh/setup-uv-8.1.0
in repository https://gitbox.apache.org/repos/asf/fluss-rust.git
discard 9f62af6c chore: bump astral-sh/setup-uv from 7.6.0 to 8.1.0
add 4e64847c [elixir] feat: Add get_database_info admin call (#586)
add fa80f693 [elixir] Optimize CI/CD with proper actions, reusing compiled
deps (#598)
add 6242b99d docs: comprehensive README update (#600)
add 0d24bddf [python] map and row complex types support (#601)
add 63638ecc [c++] add prefix lookup (#606)
add 87303ea7 [metrics] Add writer pipeline metrics (#609)
add 470c3c6d [python] Split examples in Python and enforce executability
in CI for python examples (#610)
add c6d04a32 [elixir] feat: Allow comment and custom_properties on
create_database (#597)
add 9cfeda78 [python] Add stub test to catch pyi drift in CI (#616)
add 9781b1a6 chore: bump astral-sh/setup-uv from 7.6.0 to 8.2.0
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 (9f62af6c)
\
N -- N -- N
refs/heads/dependabot/github_actions/astral-sh/setup-uv-8.1.0 (9781b1a6)
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/build_and_test_elixir.yml | 5 +-
.github/workflows/build_and_test_python.yml | 39 +-
README.md | 373 ++++++--
bindings/cpp/include/fluss.hpp | 157 ++++
bindings/cpp/src/lib.rs | 410 +++++++++
bindings/cpp/src/table.cpp | 216 +++++
bindings/cpp/test/test_kv_table.cpp | 249 ++++++
bindings/elixir/lib/fluss/admin.ex | 29 +-
bindings/elixir/lib/fluss/database_descriptor.ex | 67 ++
.../lib/fluss/{server_node.ex => database_info.ex} | 26 +-
bindings/elixir/lib/fluss/native.ex | 10 +-
bindings/elixir/native/fluss_nif/src/admin.rs | 65 +-
bindings/elixir/test/database_descriptor_test.exs | 169 ++++
bindings/elixir/test/integration/admin_test.exs | 107 ++-
.../elixir/test/integration/log_table_test.exs | 2 +-
bindings/python/DEVELOPMENT.md | 46 +-
bindings/python/example/complex_types.py | 238 +++++
bindings/python/example/example.py | 971 ---------------------
bindings/python/example/log_table.py | 388 ++++++++
bindings/python/example/partitioned_kv_table.py | 138 +++
bindings/python/example/partitioned_table.py | 176 ++++
bindings/python/example/pk_table.py | 225 +++++
bindings/python/fluss/__init__.pyi | 114 ++-
bindings/python/src/table.rs | 320 +++++--
bindings/python/src/utils.rs | 78 +-
.../python/stubtest-allowlist.txt | 26 +-
bindings/python/test/conftest.py | 333 ++++++-
bindings/python/test/test_examples.py | 66 ++
bindings/python/test/test_kv_table.py | 375 +++++---
bindings/python/test/test_log_table.py | 291 ++++--
bindings/python/test/test_schema.py | 61 +-
crates/fluss/src/client/write/accumulator.rs | 30 +
crates/fluss/src/client/write/batch.rs | 127 +++
crates/fluss/src/client/write/sender.rs | 424 ++++++++-
crates/fluss/src/client/write/writer_client.rs | 6 +
crates/fluss/src/metrics.rs | 221 +++++
crates/fluss/src/record/arrow.rs | 75 +-
.../fluss/src/record/kv/kv_record_batch_builder.rs | 5 +
crates/fluss/src/row/binary_array.rs | 25 +-
crates/fluss/src/row/binary_map.rs | 24 +
crates/fluss/src/row/column_writer.rs | 12 +-
crates/fluss/src/test_utils.rs | 20 +-
website/docs/user-guide/cpp/api-reference.md | 19 +
.../docs/user-guide/cpp/example/prefix-lookup.md | 107 +++
website/docs/user-guide/python/data-types.md | 86 ++
website/docs/user-guide/rust/api-reference.md | 7 +
46 files changed, 5463 insertions(+), 1495 deletions(-)
create mode 100644 bindings/elixir/lib/fluss/database_descriptor.ex
copy bindings/elixir/lib/fluss/{server_node.ex => database_info.ex} (57%)
create mode 100644 bindings/elixir/test/database_descriptor_test.exs
create mode 100644 bindings/python/example/complex_types.py
delete mode 100644 bindings/python/example/example.py
create mode 100644 bindings/python/example/log_table.py
create mode 100644 bindings/python/example/partitioned_kv_table.py
create mode 100644 bindings/python/example/partitioned_table.py
create mode 100644 bindings/python/example/pk_table.py
copy .licenserc.yaml => bindings/python/stubtest-allowlist.txt (56%)
create mode 100644 bindings/python/test/test_examples.py
create mode 100644 website/docs/user-guide/cpp/example/prefix-lookup.md