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

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


    omit 87cb23618 refactor(configs): move ServerConfig types from server to 
configs crate
     add 66a9c7c4c fix(server): report correct current_offset after segment 
deletion (#2798)
     add d897efbab fix(ci): pass Codecov token to C# and Java test jobs (#2800)
     add 9541332d1 fix(server): prevent storing consumer offsets beyond max 
partition range (#2794)
     add 28e7c04c9 ci: add Codecov coverage for Python SDK (#2790)
     add 6222c9801 ci(python,rust): fix publish dry-run and disable Windows 
wheels (#2813)
     add 586c66994 fix(ci): unblock wheel collection when Windows is disabled 
(#2814)
     add cca86fe26 feat(ci): impl typos automatically checks (#2803)
     add 7229f1792 refactor(configs): move ServerConfig types from server to 
configs crate

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   (87cb23618)
            \
             N -- N -- N   refs/heads/server-config-refactor (7229f1792)

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    |   3 +
 .github/actions/rust/post-merge/action.yml         |   8 +-
 .github/workflows/_build_python_wheels.yml         |   4 +-
 .github/workflows/_common.yml                      |  24 +++
 .github/workflows/_test.yml                        |  12 ++
 .github/workflows/post-merge.yml                   |  61 ++++++
 .github/workflows/pre-merge.yml                    |   6 +
 .pre-commit-config.yaml                            |   8 +
 .typos.toml                                        | 136 ++++++++++++
 CONTRIBUTING.md                                    |  12 ++
 codecov.yml                                        |   4 +-
 core/ai/mcp/README.md                              |   2 +-
 core/bench/src/actors/producing_consumer/mod.rs    |   2 +-
 ...er.rs => typed_benchmark_producing_consumer.rs} |   0
 core/bench/src/benchmarks/common.rs                |   2 +-
 core/cli/src/args/user.rs                          |   8 +-
 core/common/src/commands/messages/send_messages.rs |  24 ++-
 core/consensus/src/plane_helpers.rs                |   2 +-
 .../tests/cli/user/test_user_create_command.rs     |   4 +-
 .../cli/user/test_user_permissions_command.rs      |   4 +-
 .../http_config_provider/config_wrapped.toml       |   2 +-
 core/integration/tests/server/general.rs           |  18 +-
 .../scenarios/invalid_consumer_offset_scenario.rs  | 236 +++++++++++++++++++++
 core/integration/tests/server/scenarios/mod.rs     |   1 +
 .../server/scenarios/purge_delete_scenario.rs      |  40 ++++
 .../scenarios/segment_rotation_race_scenario.rs    |   2 +-
 core/sdk/src/clients/producer_config.rs            |   2 +-
 .../handlers/messages/send_messages_handler.rs     |   4 +-
 core/server/src/io/storage.rs                      |  25 ++-
 core/server/src/shard/system/consumer_offsets.rs   |  16 +-
 core/server/src/shard/system/utils.rs              |  27 +++
 .../message-headers/message-compression/README.md  |   2 +-
 foreign/csharp/Iggy_SDK.sln.DotSettings            |   8 +-
 ...Exception.cs => InvalidBaseAddressException.cs} |   0
 ...yClientExtenstion.cs => IggyClientExtension.cs} |   2 +-
 .../IdentifiersByteSerializationTests.cs           |   2 +-
 foreign/csharp/scripts/pack.sh                     |   2 +-
 ...anagament.go => tcp_access_token_management.go} |   0
 ...nts_managament.go => tcp_clients_management.go} |   0
 ...agament.go => tcp_consumer_group_management.go} |   0
 ...fset_managament.go => tcp_offset_management.go} |   0
 ...n_managament.go => tcp_partition_management.go} |   0
 ...ion_managament.go => tcp_session_management.go} |   0
 ...ream_managament.go => tcp_stream_management.go} |   0
 ...topic_managament.go => tcp_topic_management.go} |   0
 ...p_user_managament.go => tcp_user_management.go} |   0
 foreign/go/contracts/{offets.go => offsets.go}     |   0
 foreign/go/samples/consumer/README.md              |   4 +-
 foreign/go/samples/consumer/consumer.go            |   4 +-
 foreign/go/samples/producer/README.md              |   4 +-
 .../iggy-connector-pinot/integration-test.sh       |   2 +-
 .../blocking/ConsumerOffsetsClientBaseTest.java    |   7 +
 foreign/node/src/client/client.socket.ts           |   2 +-
 foreign/node/src/wire/client/client.utils.ts       |   4 +-
 foreign/node/src/wire/command.code.ts              |   2 +-
 foreign/node/src/wire/message/header.utils.ts      |   2 +-
 foreign/node/src/wire/message/poll.utils.ts        |   2 +-
 foreign/python/pyproject.toml                      |   2 +
 foreign/python/uv.lock                             | 136 ++++++++++++
 web/justfile                                       |   6 +-
 .../components/Modals/DeletePartitionsModal.svelte |   2 +-
 .../components/Modals/StreamSettingsModal.svelte   |   2 +-
 .../components/Modals/TopicSettingsModal.svelte    |   2 +-
 web/src/lib/components/PermissionsManager.svelte   |   4 +-
 web/src/lib/utils/addOnKeyDownListener.ts          |   2 +-
 65 files changed, 834 insertions(+), 70 deletions(-)
 create mode 100644 .typos.toml
 rename 
core/bench/src/actors/producing_consumer/{typed_banchmark_producing_consumer.rs 
=> typed_benchmark_producing_consumer.rs} (100%)
 create mode 100644 
core/integration/tests/server/scenarios/invalid_consumer_offset_scenario.rs
 rename foreign/csharp/Iggy_SDK/Exceptions/{InvalidBaseAdressException.cs => 
InvalidBaseAddressException.cs} (100%)
 rename foreign/csharp/Iggy_SDK/Extensions/{IggyClientExtenstion.cs => 
IggyClientExtension.cs} (98%)
 rename foreign/go/client/tcp/{tcp_access_token_managament.go => 
tcp_access_token_management.go} (100%)
 rename foreign/go/client/tcp/{tcp_clients_managament.go => 
tcp_clients_management.go} (100%)
 rename foreign/go/client/tcp/{tcp_consumer_group_managament.go => 
tcp_consumer_group_management.go} (100%)
 rename foreign/go/client/tcp/{tcp_offset_managament.go => 
tcp_offset_management.go} (100%)
 rename foreign/go/client/tcp/{tcp_partition_managament.go => 
tcp_partition_management.go} (100%)
 rename foreign/go/client/tcp/{tcp_session_managament.go => 
tcp_session_management.go} (100%)
 rename foreign/go/client/tcp/{tcp_stream_managament.go => 
tcp_stream_management.go} (100%)
 rename foreign/go/client/tcp/{tcp_topic_managament.go => 
tcp_topic_management.go} (100%)
 rename foreign/go/client/tcp/{tcp_user_managament.go => 
tcp_user_management.go} (100%)
 rename foreign/go/contracts/{offets.go => offsets.go} (100%)

Reply via email to