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

krishvishal pushed a change to branch vsr-dvc-headers
in repository https://gitbox.apache.org/repos/asf/iggy.git


 discard da9f942e4 fix(consensus): stop view change discarding committed ops
     add c51b75456 perf(server-ng): cap sealed-segment read handles with 
per-partition LRU (#3806)
     add 60b878923 perf(server-ng): compute batch checksum in a single produce 
pass (#3746)
     add fbf99a6eb feat(java): add cluster metadata and leader redirection to 
TCP client (#3745)
     add 5c4865f55 docs(security): add SECURITY.md with ASF reporting process 
(#3787)
     add 3bc814dd7 fix(ci): use portable fallbacks for bash-4 builtins and GNU 
sed in hook scripts (#3694)
     add 935a7c2ba chore(deps): Bump the github-actions group with 2 updates 
(#3817)
     add 46d45b517 chore(deps): Bump the java group across 3 directories with 5 
updates (#3816)
     add 56b961285 feat(python): expose remaining Topic/TopicDetails fields and 
partitions (#3623)
     add dc8493883 test(integration): remove suites duplicating existing 
coverage (#3823)
     add 0d76a691c feat(server-ng): add per-client-network advertised address 
selectors (#3818)
     add d4b4d3046 fix(consensus): stop view change discarding committed ops

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   (da9f942e4)
            \
             N -- N -- N   refs/heads/vsr-dvc-headers (d4b4d3046)

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/_common.yml                      |    2 +-
 .github/workflows/coverage-baseline.yml            |    4 +-
 .github/workflows/post-merge.yml                   |    2 +-
 .github/workflows/stale-prs.yml                    |    2 +-
 .typos.toml                                        |    2 +
 Cargo.lock                                         |    2 +-
 Cargo.toml                                         |    1 +
 SECURITY.md                                        |   61 ++
 bdd/docker-compose.cluster.yml                     |    3 +
 bdd/docker-compose.yml                             |    6 +-
 bdd/java/build.gradle.kts                          |    6 +-
 .../apache/iggy/bdd/LeaderRedirectionSteps.java    |  274 ++++++
 bdd/python/uv.lock                                 |    4 +-
 core/common/src/types/partition/mod.rs             |    2 +-
 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/partitions/src/iggy_index_reader.rs           |  180 +++-
 core/partitions/src/iggy_partition.rs              |  574 ++++++++++-
 core/partitions/src/iggy_partitions.rs             |   25 +-
 core/partitions/src/journal.rs                     |   13 +-
 core/partitions/src/log.rs                         |  341 ++++++-
 core/partitions/src/poll_plan.rs                   |  210 +++-
 core/server-ng/Cargo.toml                          |    6 +-
 core/server-ng/config.toml                         |   50 +-
 core/server-ng/src/bootstrap.rs                    |    9 +-
 core/server-ng/src/cluster_meta.rs                 |  125 ++-
 core/server-ng/src/dispatch.rs                     |   44 +-
 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                    |   14 +-
 core/server-ng/src/session_manager.rs              |   28 +
 core/server-ng/tests/sdk_e2e.rs                    |  175 +---
 core/server_common/src/send_messages2.rs           | 1007 +++++++++++++++++---
 core/simulator/src/client.rs                       |    4 +-
 examples/java/build.gradle.kts                     |    2 +-
 examples/python/uv.lock                            |    2 +-
 foreign/java/gradle.properties                     |    2 +-
 foreign/java/gradle/libs.versions.toml             |    6 +-
 .../tcp/package-info.java => ConnectionInfo.java}  |   26 +-
 .../org/apache/iggy/client/async/SystemClient.java |    8 +
 .../iggy/client/async/tcp/AsyncIggyTcpClient.java  |  199 +++-
 .../iggy/client/async/tcp/AsyncTcpConnection.java  |   73 +-
 .../client/async/tcp/ConsumerGroupsTcpClient.java  |   23 +-
 .../client/async/tcp/ConsumerOffsetsTcpClient.java |   15 +-
 .../iggy/client/async/tcp/LeaderAwareness.java     |  282 ++++++
 .../client/async/tcp/LoginRedirectionHook.java     |   47 +
 .../iggy/client/async/tcp/MessagesTcpClient.java   |   15 +-
 .../iggy/client/async/tcp/PartitionsTcpClient.java |   27 +-
 .../async/tcp/PersonalAccessTokensTcpClient.java   |   32 +-
 .../iggy/client/async/tcp/StreamsTcpClient.java    |   21 +-
 .../iggy/client/async/tcp/SystemTcpClient.java     |   53 +-
 .../iggy/client/async/tcp/TopicsTcpClient.java     |   25 +-
 .../iggy/client/async/tcp/UsersTcpClient.java      |   42 +-
 .../apache/iggy/client/blocking/SystemClient.java  |    3 +
 .../client/blocking/http/SystemHttpClient.java     |    8 +
 .../iggy/client/blocking/tcp/IggyTcpClient.java    |   12 +
 .../iggy/client/blocking/tcp/SystemTcpClient.java  |    6 +
 .../org/apache/iggy/cluster/ClusterMetadata.java}  |   15 +-
 .../HeaderEntry.java => cluster/ClusterNode.java}  |   14 +-
 .../ClusterNodeRole.java}                          |   29 +-
 .../ClusterNodeStatus.java}                        |   35 +-
 .../TransportEndpoints.java}                       |   13 +-
 .../iggy/{stream => cluster}/package-info.java     |    2 +-
 .../org/apache/iggy/serde/BytesDeserializer.java   |   47 +
 .../java/org/apache/iggy/serde/CommandCode.java    |    1 +
 .../client/async/tcp/IggyResponseHandlerTest.java  |   60 ++
 .../iggy/client/async/tcp/LeaderAwarenessTest.java |  328 +++++++
 .../iggy/client/blocking/SystemClientBaseTest.java |   18 +
 .../client/blocking/tcp/SystemTcpClientTest.java   |   10 +
 .../apache/iggy/serde/BytesDeserializerTest.java   |  177 ++++
 foreign/python/Cargo.toml                          |    2 +-
 foreign/python/apache_iggy.pyi                     |  221 ++++-
 foreign/python/pyproject.toml                      |    2 +-
 foreign/python/src/client.rs                       |  109 ++-
 foreign/python/src/consumer.rs                     |   32 +-
 foreign/python/src/lib.rs                          |    5 +-
 foreign/python/src/topic.rs                        |  276 +++++-
 foreign/python/tests/test_topic.py                 |  235 ++++-
 foreign/python/uv.lock                             |    4 +-
 scripts/ci/license-headers.sh                      |    6 +-
 scripts/ci/python-sdk-version-sync.sh              |   10 +-
 scripts/ci/sync-python-interpreter-version.sh      |   26 +-
 scripts/ci/sync-rustc-version.sh                   |   12 +-
 scripts/run-bdd-tests.sh                           |    2 +-
 scripts/verify-crates-publish.sh                   |    7 +-
 105 files changed, 6735 insertions(+), 1887 deletions(-)
 create mode 100644 SECURITY.md
 create mode 100644 
bdd/java/src/test/java/org/apache/iggy/bdd/LeaderRedirectionSteps.java
 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
 copy 
foreign/java/java-sdk/src/main/java/org/apache/iggy/client/{blocking/tcp/package-info.java
 => ConnectionInfo.java} (61%)
 create mode 100644 
foreign/java/java-sdk/src/main/java/org/apache/iggy/client/async/tcp/LeaderAwareness.java
 create mode 100644 
foreign/java/java-sdk/src/main/java/org/apache/iggy/client/async/tcp/LoginRedirectionHook.java
 copy 
foreign/java/{bench/src/main/java/org/apache/iggy/bench/models/common/generator/DataBatch.java
 => java-sdk/src/main/java/org/apache/iggy/cluster/ClusterMetadata.java} (70%)
 copy 
foreign/java/java-sdk/src/main/java/org/apache/iggy/{message/HeaderEntry.java 
=> cluster/ClusterNode.java} (65%)
 copy foreign/java/java-sdk/src/main/java/org/apache/iggy/{user/UserStatus.java 
=> cluster/ClusterNodeRole.java} (64%)
 copy foreign/java/java-sdk/src/main/java/org/apache/iggy/{user/UserStatus.java 
=> cluster/ClusterNodeStatus.java} (57%)
 copy 
foreign/java/java-sdk/src/main/java/org/apache/iggy/{message/HeaderEntry.java 
=> cluster/TransportEndpoints.java} (69%)
 copy foreign/java/java-sdk/src/main/java/org/apache/iggy/{stream => 
cluster}/package-info.java (96%)
 create mode 100644 
foreign/java/java-sdk/src/test/java/org/apache/iggy/client/async/tcp/IggyResponseHandlerTest.java
 create mode 100644 
foreign/java/java-sdk/src/test/java/org/apache/iggy/client/async/tcp/LeaderAwarenessTest.java

Reply via email to