This is an automated email from the ASF dual-hosted git repository.

hubcio pushed a change to branch feat/message-bus-multi-transport
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit c73223889 feat(message_bus): add QUIC, TCP-TLS, WS, WSS transports for 
SDK clients
     add 57646b233 chore(deps): bump mako from 1.3.10 to 1.3.11 in /bdd/python 
(#3137)
     add 9a9254a3a ci: bump GitHub Actions to Node.js 24-compatible versions 
(#3086)
     add 611fca04e fix(ci): honor staged file scope in lint hooks (#3188)
     add 889c1177d feat(message_bus): add QUIC, TCP-TLS, WS, WSS client 
transports
     add 54b5b8dce fix(message_bus): bound replica listener and survive 
dispatch panics

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   (c73223889)
            \
             N -- N -- N   refs/heads/feat/message-bus-multi-transport 
(54b5b8dce)

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:
 .../actions/csharp-dotnet/post-merge/action.yml    |   2 +-
 .github/actions/csharp-dotnet/pre-merge/action.yml |   4 +-
 .github/actions/go/pre-merge/action.yml            |   6 +-
 .github/actions/node-npm/post-merge/action.yml     |   2 +-
 .github/actions/node-npm/pre-merge/action.yml      |   2 +-
 .../actions/python-maturin/post-merge/action.yml   |   4 +-
 .../actions/python-maturin/pre-merge/action.yml    |   8 +-
 .github/actions/utils/docker-buildx/action.yml     |  12 +-
 .../actions/utils/setup-cpp-with-cache/action.yml  |   2 +-
 .../actions/utils/setup-go-with-cache/action.yml   |   6 +-
 .../actions/utils/setup-java-with-cache/action.yml |   4 +-
 .../actions/utils/setup-node-with-cache/action.yml |   4 +-
 .github/workflows/_build_python_wheels.yml         |  26 +-
 .github/workflows/_build_rust_artifacts.yml        |  16 +-
 .github/workflows/_common.yml                      |  30 +-
 .github/workflows/_detect.yml                      |   4 +-
 .github/workflows/_publish_rust_crates.yml         |   2 +-
 .github/workflows/_test.yml                        |  18 +-
 .github/workflows/_test_bdd.yml                    |   4 +-
 .github/workflows/_test_examples.yml               |  10 +-
 .github/workflows/coverage-baseline.yml            |  34 +-
 .github/workflows/edge-release.yml                 |   6 +-
 .github/workflows/post-merge.yml                   |   2 +-
 .github/workflows/pre-merge.yml                    |   2 +-
 .github/workflows/publish.yml                      |  26 +-
 .pre-commit-config.yaml                            |  26 +-
 Cargo.lock                                         |  69 ++-
 Cargo.toml                                         |   4 +-
 DEPENDENCIES.md                                    |   3 +-
 bdd/python/uv.lock                                 |   6 +-
 core/binary_protocol/src/consensus/iobuf.rs        |   6 +
 core/message_bus/Cargo.toml                        |   2 +
 core/message_bus/src/client_listener/mod.rs        |  17 +
 core/message_bus/src/client_listener/quic.rs       |  71 ++-
 core/message_bus/src/client_listener/tcp_tls.rs    |   4 +-
 core/message_bus/src/client_listener/wss.rs        |   4 +-
 core/message_bus/src/config.rs                     |  15 +
 core/message_bus/src/framing.rs                    |  42 +-
 core/message_bus/src/installer/mod.rs              |  38 +-
 core/message_bus/src/installer/quic.rs             |   2 +-
 core/message_bus/src/installer/replica.rs          |  71 ++-
 core/message_bus/src/installer/tcp.rs              |  61 ++-
 core/message_bus/src/installer/tcp_tls.rs          |   8 +-
 core/message_bus/src/installer/ws.rs               |   2 +-
 core/message_bus/src/installer/wss.rs              |   7 +-
 core/message_bus/src/lib.rs                        |  98 ++--
 .../src/lifecycle/connection_registry.rs           | 132 ++++++
 core/message_bus/src/lifecycle/mod.rs              |   2 +-
 core/message_bus/src/lifecycle/shutdown.rs         |  88 ++++
 core/message_bus/src/replica/io.rs                 |  11 +-
 core/message_bus/src/replica/listener.rs           |  82 +++-
 core/message_bus/src/transports/mod.rs             |   4 +-
 core/message_bus/src/transports/quic.rs            | 135 ++++--
 core/message_bus/src/transports/tcp.rs             |   6 +-
 core/message_bus/src/transports/tcp_tls.rs         |  88 +++-
 core/message_bus/src/transports/ws.rs              |  40 +-
 core/message_bus/src/transports/wss.rs             | 111 ++++-
 core/message_bus/tests/backpressure.rs             |   1 +
 core/message_bus/tests/common/mod.rs               |  19 +-
 core/message_bus/tests/connection_lost_notify.rs   |   1 +
 core/message_bus/tests/directional_connection.rs   |   2 +
 core/message_bus/tests/duplicate_client_id.rs      |  16 +-
 core/message_bus/tests/head_of_line.rs             |   1 +
 core/message_bus/tests/quic_client_roundtrip.rs    |  96 +++-
 core/message_bus/tests/reconnect.rs                |   1 +
 core/message_bus/tests/reconnect_skip_connected.rs |   1 +
 core/message_bus/tests/replica_roundtrip.rs        |   1 +
 core/message_bus/tests/shard_zero_gating.rs        |   1 +
 core/message_bus/tests/tcp_tls_client_listener.rs  |  73 ++-
 core/message_bus/tests/tcp_tls_client_roundtrip.rs |   4 +-
 core/message_bus/tests/vectored_batch.rs           |   1 +
 core/message_bus/tests/ws_client_roundtrip.rs      |   4 +-
 core/message_bus/tests/wss_client_listener.rs      |  66 ++-
 core/message_bus/tests/wss_client_roundtrip.rs     |   4 +-
 core/sdk/Cargo.toml                                |   1 -
 core/server-ng/src/dedup.rs                        | 504 ++++++++++++++-------
 core/shard/src/coordinator.rs                      | 195 ++++++--
 core/shard/src/lib.rs                              |   1 +
 scripts/ci/markdownlint.sh                         |  70 ++-
 scripts/ci/shellcheck.sh                           | 125 +++--
 scripts/ci/trailing-whitespace.sh                  |   5 +-
 scripts/ci/uv-lock-check.sh                        |   7 +
 scripts/extract-version.sh                         |   2 +
 83 files changed, 2008 insertions(+), 685 deletions(-)

Reply via email to