This is an automated email from the ASF dual-hosted git repository.
hubcio pushed a change to branch disk-space-ci
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit 8aa35e97c Merge branch 'master' into disk-space-ci
omit 4f1363246 Merge branch 'master' into disk-space-ci
omit 561bbb53a ci: free more runner disk for rust coverage baseline
add 9f78eea34 fix(server): correct VSR client session routing and
lifecycle (#3407)
add 443f1979e chore(deps): Bump pytest-cov from 6.3.0 to 7.1.0 in
/foreign/python (#3418)
add f977ca63d chore(deps): Update pytest-cov requirement from <7.0,>=4.0
to >=7.1.0,<8.0 in /examples/python (#3417)
add bbc03e7a9 chore(deps): Update pytest-asyncio requirement from
<2.0,>=0.24.0 to >=1.4.0,<2.0 in /examples/python (#3416)
add cf4e65eca chore(deps): Bump c8 from 10.1.3 to 11.0.0 in /foreign/node
(#3424)
add eae9a0a95 chore(deps): Bump the minor-and-patch group across 2
directories with 15 updates (#3422)
add 1e693b6d4 ci(php): add SDK coverage report (#3408)
add 10ca43061 chore(deps): Bump @types/node from 24.10.1 to 25.9.1 in
/foreign/node (#3423)
new 89a437c6e ci: tune per-task disk and cache for rust pre-merge
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 (8aa35e97c)
\
N -- N -- N refs/heads/disk-space-ci (89a437c6e)
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/actions/php/pre-merge/action.yml | 58 +-
.../actions/python-maturin/pre-merge/action.yml | 1 +
.github/actions/rust/pre-merge/action.yml | 5 +-
.../actions/utils/setup-rust-with-cache/action.yml | 22 +-
.github/workflows/_test.yml | 12 +
.github/workflows/coverage-baseline.yml | 26 +-
Cargo.toml | 1 -
codecov.yml | 17 +-
core/consensus/src/metadata_helpers.rs | 176 +-
core/integration/tests/sdk/clients.rs | 86 +
core/integration/tests/sdk/mod.rs | 2 +
core/metadata/src/impls/metadata.rs | 78 +-
core/server-ng/src/auth.rs | 215 +++
core/server-ng/src/bootstrap.rs | 1779 +-------------------
core/server-ng/src/dispatch.rs | 876 ++++++++++
core/server-ng/src/lib.rs | 5 +
core/server-ng/src/login_register.rs | 366 +---
core/server-ng/src/pat.rs | 130 ++
core/server-ng/src/responses.rs | 748 ++++++++
core/server-ng/src/session_manager.rs | 165 +-
core/server-ng/src/wire.rs | 48 +
core/shard/src/builder.rs | 8 +-
core/shard/src/lib.rs | 114 +-
core/shard/src/router.rs | 7 +
examples/python/uv.lock | 10 +-
foreign/node/package-lock.json | 545 ++----
foreign/node/package.json | 4 +-
foreign/python/pyproject.toml | 4 +-
foreign/python/uv.lock | 12 +-
.../scripts/test.sh => scripts/ci/validate-lcov.sh | 40 +-
web/package-lock.json | 160 +-
web/package.json | 10 +-
32 files changed, 2875 insertions(+), 2855 deletions(-)
create mode 100644 core/integration/tests/sdk/clients.rs
create mode 100644 core/server-ng/src/auth.rs
create mode 100644 core/server-ng/src/dispatch.rs
create mode 100644 core/server-ng/src/pat.rs
create mode 100644 core/server-ng/src/responses.rs
create mode 100644 core/server-ng/src/wire.rs
copy foreign/php/scripts/test.sh => scripts/ci/validate-lcov.sh (56%)