This is an automated email from the ASF dual-hosted git repository.
hubcio pushed a change to branch send_messages_confirmation
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit f004a5ada chore(repo): bump iggy-cli and iggy-bench crates
omit 8da25cd27 fix(js): sync Node protocol version with binary_protocol 0.11
omit f9ccffbb7 chore(repo): bump core crates, connectors, node and python
SDKs
omit 6346a7be9 docs(sdk): state plainly that the legacy server sends no
confirmation
omit 36b24480c ci(repo): lint foreign Rust crates and fix the
license-header scan
omit 55471f00b test(integration): assert the legacy server reports no
confirmations
omit 20bfd3d3d fix(sdk): drop the fabricated send confirmation from foreign
clients
omit de8ca0770 fix(server-ng): stop confirming sends that never committed
omit cdde32909 feat(server-ng): confirm committed sends with partition and
offset
add dc8493883 test(integration): remove suites duplicating existing
coverage (#3823)
add 0d76a691c feat(server-ng): add per-client-network advertised address
selectors (#3818)
add 36ad3fac9 feat(server-ng): confirm committed sends with partition and
offset
add 7ad81853a fix(server-ng): stop confirming sends that never committed
add 76f45f591 fix(sdk): drop the fabricated send confirmation from foreign
clients
add 0664753f8 test(integration): assert the legacy server reports no
confirmations
add 4e84a0d8b ci(repo): lint foreign Rust crates and fix the
license-header scan
add 1dcccc863 docs(sdk): state plainly that the legacy server sends no
confirmation
add 46b2c2952 chore(repo): bump core crates, connectors, node and python
SDKs
add 6b54a97d9 fix(js): sync Node protocol version with binary_protocol 0.11
add ece14651f chore(repo): bump iggy-cli and iggy-bench crates
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 (f004a5ada)
\
N -- N -- N refs/heads/send_messages_confirmation (ece14651f)
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:
Cargo.lock | 2 +-
Cargo.toml | 1 +
core/configs/Cargo.toml | 1 +
core/configs/src/server_ng_config/cluster.rs | 987 ++++++++++++++++++++-
core/configs/src/server_ng_config/defaults.rs | 1 +
core/configs/src/server_ng_config/validators.rs | 1 +
core/configs_derive/src/config_env.rs | 22 +-
.../tests/cluster/metadata_checkpoint_restart.rs | 138 ++-
core/integration/tests/sdk/mcp_parity.rs | 608 -------------
core/integration/tests/sdk/messages.rs | 172 ----
core/integration/tests/sdk/mod.rs | 4 -
.../tests/server/cluster_metadata_vsr.rs | 229 ++++-
core/integration/tests/server/general.rs | 19 +-
core/integration/tests/server/http_client.rs | 19 +-
core/integration/tests/server/http_tls.rs | 112 ++-
.../server/metadata_checkpoint_recovery_vsr.rs | 138 ---
core/integration/tests/server/mod.rs | 4 -
.../server/scenarios/create_message_payload.rs | 148 ---
core/integration/tests/server/scenarios/mod.rs | 1 -
core/server-ng/Cargo.toml | 6 +-
core/server-ng/config.toml | 47 +
core/server-ng/src/bootstrap.rs | 9 +-
core/server-ng/src/cluster_meta.rs | 125 ++-
core/server-ng/src/dispatch.rs | 36 +-
core/server-ng/src/http.rs | 37 +-
core/server-ng/src/http/error.rs | 109 ++-
core/server-ng/src/http/extractor.rs | 22 +-
core/server-ng/src/http/handlers.rs | 7 +-
core/server-ng/src/http/reads.rs | 3 +-
core/server-ng/src/http/state.rs | 22 +-
core/server-ng/src/http/tls.rs | 15 +-
core/server-ng/src/responses.rs | 12 +-
core/server-ng/src/session_manager.rs | 28 +
core/server-ng/tests/sdk_e2e.rs | 175 +---
34 files changed, 1855 insertions(+), 1405 deletions(-)
delete mode 100644 core/integration/tests/sdk/mcp_parity.rs
delete mode 100644 core/integration/tests/sdk/messages.rs
delete mode 100644
core/integration/tests/server/metadata_checkpoint_recovery_vsr.rs
delete mode 100644
core/integration/tests/server/scenarios/create_message_payload.rs