This is an automated email from the ASF dual-hosted git repository.
gkoszyk pushed a change to branch partitions_refactor
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit b8e0bbecc rename types
omit 7e4d5f6f0 Merge branch 'master' into partitions_refactor
omit d6625713c remove plan
omit 14f711f84 clipy lint
omit aff103e33 fixes
omit 2fd6bc0ff smth
omit f17ae7ca4 temp
add 0625ba955 ci: fix flaky keyring tests with eval and collection warmup
(#2908)
add 3b29d336d refactor(java): use generation-based auth for pooled
channels (#2910)
add 5af953c17 test(java): add async-specific tests for
ConsumerGroupsTcpClient (#2890)
add fc3976019 fix(consensus): prevent UB from untrusted bytes interpreted
as enum discriminants in consensus headers
(#2887)
add 926288a23 temp
add 90d982cf8 smth
add 8283f8ef4 fixes
add c25f6d59b clipy lint
add 778132da1 remove plan
add 9e65721d2 rename types
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 (b8e0bbecc)
\
N -- N -- N refs/heads/partitions_refactor (9e65721d2)
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/actions/rust/pre-merge/action.yml | 5 +-
.github/workflows/post-merge.yml | 5 +-
Cargo.lock | 14 +
Cargo.toml | 2 +-
DEPENDENCIES.md | 1 +
core/common/src/types/consensus/header.rs | 96 ++--
core/common/src/types/consensus/message.rs | 89 ++--
core/consensus/src/plane_helpers.rs | 3 +-
core/metadata/src/stm/mod.rs | 1 -
core/shard/src/lib.rs | 11 +-
core/shard/src/router.rs | 24 +-
core/simulator/src/packet.rs | 3 +-
.../iggy/client/async/tcp/AsyncIggyTcpClient.java | 4 +-
.../iggy/client/async/tcp/AsyncTcpConnection.java | 278 +++++------
.../iggy/client/async/tcp/IggyAuthenticator.java | 46 +-
.../iggy/client/async/tcp/IggyFrameEncoder.java | 24 +-
.../client/async/AsyncConnectionPoolAuthTest.java | 263 ++++++++++
.../iggy/client/async/AsyncConsumerGroupsTest.java | 529 +++++++++++++++++++++
18 files changed, 1105 insertions(+), 293 deletions(-)
create mode 100644
foreign/java/java-sdk/src/test/java/org/apache/iggy/client/async/AsyncConnectionPoolAuthTest.java
create mode 100644
foreign/java/java-sdk/src/test/java/org/apache/iggy/client/async/AsyncConsumerGroupsTest.java