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

hgruszecki pushed a change to branch skipping-offset
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit 3394c615f fix(server): initialize journal offset after restart to 
prevent consumer message skip
     add f0e85781d chore(python): bump Python SDK to 0.7.3-dev1 (#2989)
     add ba8e865af ci: fix ASF github actions allowlist violations (#2993)
     add 3863ad5b5 chore(ci): add uv lock check to pre-commit hooks (#2996)
     add f762e4f2b feat(server): implement TwoHalves buffer (#2944)
     add a6ba900a5 ci: pin Docker actions to SHA and bump setup-bazel per ASF 
allowlist (#2999)
     add b03914cd3 fix(ci): prevent flaky keyring tests by deferring unlock to 
test phase (#2995)
     add 01803cc0a ci: partition Rust tests across 2 parallel CI machines 
(#3003)
     add f66540010 fix: Helm chart install guidance and deployment defaults 
(#2976)
     add 50557dcef fix(bench): delete stale streams on re-run to prevent 
corrupted latency (#2991)
     add 38bf2dc4c refactor(csharp): rename asynchronous methods to have Async 
suffix (#2994)
     add dbd0e25cd deps(rust): bump workspace dependencies (#3005)
     add d4a5287d6 feat: add UI /healthz endpoint (#2983)
     add 5cc7c37db fix(docs): fix grammar errors in README, examples, and test 
comments (#3011)
     add a2f4aeff6 fix(server): initialize journal offset after restart to 
prevent consumer message skip

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   (3394c615f)
            \
             N -- N -- N   refs/heads/skipping-offset (a2f4aeff6)

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/python-maturin/pre-merge/action.yml    |   2 +-
 .github/actions/rust/pre-merge/action.yml          |  37 +-
 .github/actions/utils/docker-buildx/action.yml     |  12 +-
 .../actions/utils/setup-cpp-with-cache/action.yml  |   2 +-
 .github/config/components.yml                      |   3 +-
 .github/workflows/_test.yml                        |   4 +-
 .github/workflows/_test_examples.yml               |   2 +-
 .github/workflows/post-merge.yml                   |  15 +-
 .github/workflows/publish.yml                      |   4 +-
 .pre-commit-config.yaml                            |   8 +
 Cargo.lock                                         | 510 +++++++++++------
 Cargo.toml                                         |  50 +-
 DEPENDENCIES.md                                    | 152 +++---
 README.md                                          |   2 +-
 bdd/python/uv.lock                                 |   2 +-
 core/ai/mcp/src/main.rs                            |   4 +-
 core/bench/src/args/common.rs                      |  10 +
 core/bench/src/args/examples.rs                    |   1 +
 core/bench/src/benchmarks/benchmark.rs             |  64 ++-
 core/bench/src/main.rs                             |   4 +-
 core/cli/src/args/mod.rs                           |   4 +-
 core/connectors/runtime/src/main.rs                |   4 +-
 core/connectors/sinks/iceberg_sink/Cargo.toml      |   1 +
 core/connectors/sinks/iceberg_sink/src/catalog.rs  |  18 +-
 core/consensus/src/impls.rs                        |   8 +-
 core/integration/src/bench_utils.rs                |  14 +-
 .../tests/cli/general/test_overview_command.rs     |  16 +-
 .../data_integrity/verify_after_server_restart.rs  |   2 +-
 .../server/scenarios/log_rotation_scenario.rs      |   2 +-
 .../scenarios/stream_size_validation_scenario.rs   |   4 +-
 core/{clock => iobuf}/Cargo.toml                   |  10 +-
 core/iobuf/src/lib.rs                              | 604 +++++++++++++++++++++
 core/server/Cargo.toml                             |   1 -
 core/server/src/main.rs                            |   4 +-
 core/server/src/shard/mod.rs                       |   6 +-
 core/server/src/shard/system/partitions.rs         |   4 +-
 core/server/src/streaming/partitions/journal.rs    |  32 +-
 core/server/src/streaming/partitions/ops_tests.rs  |  20 +-
 core/server/src/websocket/mod.rs                   |  41 ++
 core/server/src/websocket/websocket_listener.rs    |   4 +-
 .../server/src/websocket/websocket_tls_listener.rs |   4 +-
 .../Iggy_SDK.Examples.Basic.Consumer/Program.cs    |   2 +-
 .../Iggy_SDK.Examples.Basic.Producer/Program.cs    |   2 +-
 .../Program.cs                                     |   2 +-
 .../Program.cs                                     |   2 +-
 .../Program.cs                                     |   2 +-
 .../Program.cs                                     |   2 +-
 .../Program.cs                                     |   2 +-
 .../Program.cs                                     |   2 +-
 .../Iggy_SDK.Examples.NewSdk.Consumer/Program.cs   |   2 +-
 .../Iggy_SDK.Examples.NewSdk.Producer/Program.cs   |   4 +-
 .../Iggy_SDK.Examples.NewSdk.Producer/Utils.cs     |   2 +-
 .../Iggy_SDK.Examples.TcpTls.Consumer/Program.cs   |   2 +-
 .../Iggy_SDK.Examples.TcpTls.Producer/Program.cs   |   2 +-
 examples/python/uv.lock                            |   8 +-
 .../message-headers/message-compression/README.md  |  12 +-
 foreign/csharp/Benchmarks/Program.cs               |   2 +-
 .../BasicMessagingOperationsSteps.cs               |   2 +-
 .../ClusterRedirectionTests.cs                     |   8 +-
 .../ConsumerGroupTests.cs                          |   2 +-
 .../Fixtures/IggyServerFixture.cs                  |   4 +-
 .../IggyPublisherTests.cs                          |  24 +-
 .../IggyTlsConnectionTests.cs                      |   6 +-
 .../PersonalAccessTokenTests.cs                    |   2 +-
 .../Iggy_SDK.Tests.Integration/SystemTests.cs      |   4 +-
 .../Iggy_SDK.Tests.Integration/UsersTests.cs       |  46 +-
 foreign/csharp/Iggy_SDK/Consumers/IggyConsumer.cs  |  10 +-
 .../Iggy_SDK/Contracts/Auth/GlobalPermissions.cs   |  14 +-
 .../IggyClient/IIggyPersonalAccessToken.cs         |   2 +-
 foreign/csharp/Iggy_SDK/IggyClient/IIggyUsers.cs   |  18 +-
 .../Implementations/HttpMessageStream.cs           |  20 +-
 .../IggyClient/Implementations/TcpMessageStream.cs |  26 +-
 foreign/csharp/Iggy_SDK/Iggy_SDK.csproj            |   2 +-
 .../csharp/Iggy_SDK/Publishers/IggyPublisher.cs    |  16 +-
 .../csharp/Iggy_SDK/Publishers/IggyPublisherOfT.cs |   6 +-
 foreign/csharp/README.md                           |   8 +-
 foreign/python/Cargo.toml                          |   2 +-
 foreign/python/pyproject.toml                      |   2 +-
 foreign/python/uv.lock                             |   2 +-
 helm/charts/iggy/Chart.yaml                        |   2 +-
 helm/charts/iggy/README.md                         |  48 +-
 helm/charts/iggy/templates/deployment.yaml         |  27 +-
 helm/charts/iggy/values.yaml                       |  12 +-
 scripts/ci/uv-lock-check.sh                        |  98 ++++
 web/README.md                                      |   8 +-
 .../src/routes/healthz/+server.ts                  |  14 +-
 86 files changed, 1612 insertions(+), 564 deletions(-)
 copy core/{clock => iobuf}/Cargo.toml (87%)
 create mode 100644 core/iobuf/src/lib.rs
 create mode 100755 scripts/ci/uv-lock-check.sh
 copy foreign/node/src/client/client.debug.ts => 
web/src/routes/healthz/+server.ts (81%)

Reply via email to