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

gkoszyk pushed a change to branch partition_remaster
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit 3878d16af Merge branch 'master' into partition_remaster
    omit 1de4e23a8 feat(partitions): rework partitions using prefix/tail message
    omit 7ed29dc69 fix(deps): resolve 15 Dependabot vulnerability alerts (#3016)
    omit 298cd3282 fix(server): prevent consumer offset skip during concurrent 
produce+consume (#2958)
    omit 6180d88e6 feat(go): implement binary reader/writer (#2986)
    omit 707ab2435 chore(python): bump SDK to 0.7.4-dev1, modernize CI and deps 
(#2992)
    omit c19a600a8 feat(rust): add sans-IO frame codec and command dispatch 
table (#2967)
    omit 5cc7c37db fix(docs): fix grammar errors in README, examples, and test 
comments (#3011)
     add b1ce9c3b7 feat(partitions): rework partitions using prefix/tail message

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   (3878d16af)
            \
             N -- N -- N   refs/heads/partition_remaster (b1ce9c3b7)

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/post-merge/action.yml   |   14 +-
 Cargo.lock                                         |    1 +
 README.md                                          |    2 +-
 core/bench/dashboard/server/Cargo.lock             | 1575 +++++++++++++
 core/binary_protocol/src/codec.rs                  |   58 -
 core/binary_protocol/src/codes.rs                  |   54 +-
 core/binary_protocol/src/consensus/operation.rs    |   89 +-
 core/binary_protocol/src/dispatch.rs               |  450 ----
 core/binary_protocol/src/error.rs                  |    4 +-
 .../binary_protocol/src/frame.rs                   |   39 +-
 core/binary_protocol/src/framing.rs                |  289 ---
 core/binary_protocol/src/lib.rs                    |   28 +-
 core/binary_protocol/src/message_view.rs           |   11 +-
 core/binary_protocol/src/primitives/identifier.rs  |   19 +-
 .../binary_protocol/src/primitives/partitioning.rs |   25 +-
 .../src/requests/users/create_user.rs              |    5 +-
 .../src/requests/users/update_permissions.rs       |    5 +-
 .../src/responses/clients/client_response.rs       |    2 +-
 .../src/responses/clients/get_client.rs            |    7 +-
 .../consumer_groups/get_consumer_group.rs          |   15 +-
 .../src/responses/streams/get_stream.rs            |    5 +-
 .../src/responses/system/get_cluster_metadata.rs   |  244 ---
 .../binary_protocol/src/responses/system/get_me.rs |   22 -
 .../src/responses/system/get_snapshot.rs           |   71 -
 .../src/responses/system/get_stats.rs              |    7 +-
 core/binary_protocol/src/responses/system/mod.rs   |    6 -
 .../src/responses/topics/get_topic.rs              |    5 +-
 .../common/src/types/message/messages_batch_mut.rs |    2 +-
 .../common/src/types/message/messages_batch_set.rs |   18 +-
 core/common/src/types/segment.rs                   |   29 +-
 .../src/types/segment_storage/messages_writer.rs   |    4 +
 core/consensus/src/impls.rs                        |    1 +
 core/consensus/src/plane_helpers.rs                |   11 +-
 core/integration/tests/server/message_cleanup.rs   |    7 -
 .../concurrent_produce_consume_scenario.rs         |  196 --
 .../server/scenarios/log_rotation_scenario.rs      |    2 +-
 .../server/scenarios/message_cleanup_scenario.rs   |  140 --
 core/integration/tests/server/scenarios/mod.rs     |    2 -
 .../scenarios/reconnect_after_restart_scenario.rs  |  300 +--
 .../scenarios/restart_offset_skip_scenario.rs      |  272 ---
 .../scenarios/stream_size_validation_scenario.rs   |    4 +-
 core/integration/tests/server/specific.rs          |   39 +-
 core/iobuf/src/lib.rs                              |    3 +-
 core/message_bus/Cargo.toml                        |    1 +
 core/message_bus/src/lib.rs                        |   15 +-
 core/metadata/src/impls/metadata.rs                |   20 +-
 core/metadata/src/stm/mod.rs                       |    3 +
 core/partitions/src/frozen_messages_writer.rs      |  102 +-
 core/partitions/src/iggy_index.rs                  |  147 ++
 core/partitions/src/iggy_index_writer.rs           |   83 +
 core/partitions/src/iggy_partition.rs              |   94 +-
 core/partitions/src/iggy_partitions.rs             |  209 +-
 core/partitions/src/journal.rs                     |  163 +-
 core/partitions/src/lib.rs                         |    7 +-
 core/partitions/src/log.rs                         |   57 +-
 core/partitions/src/segment.rs                     |   68 +
 core/partitions/src/send_messages2.rs              |  195 +-
 core/partitions/src/types.rs                       |   30 +
 core/server/src/bootstrap.rs                       |    4 +-
 core/server/src/shard/mod.rs                       |   82 +-
 core/server/src/shard/system/messages.rs           |    2 +-
 core/server/src/shard/system/partitions.rs         |   74 +-
 core/server/src/shard/system/segments.rs           |  124 +-
 core/server/src/streaming/partitions/journal.rs    |   93 +-
 .../src/streaming/partitions/local_partition.rs    |    4 +-
 core/server/src/streaming/partitions/log.rs        |   12 -
 core/server/src/streaming/partitions/mod.rs        |    2 -
 core/server/src/streaming/partitions/ops.rs        |  297 ++-
 core/server/src/streaming/partitions/ops_tests.rs  |  359 ---
 core/shard/src/lib.rs                              |   39 +-
 core/shard/src/router.rs                           |   16 +-
 core/simulator/src/bus.rs                          |   28 +-
 core/simulator/src/lib.rs                          |   27 +-
 examples/node/package-lock.json                    |  490 ++---
 examples/node/package.json                         |    3 -
 .../message-headers/message-compression/README.md  |   12 +-
 foreign/go/internal/codec/reader.go                |  217 --
 foreign/go/internal/codec/reader_test.go           |  358 ---
 foreign/go/internal/codec/roundtrip_test.go        |  105 -
 foreign/go/internal/codec/writer.go                |  151 --
 foreign/go/internal/codec/writer_test.go           |  128 --
 foreign/node/package-lock.json                     | 2318 ++++++++++++--------
 foreign/node/package.json                          |    3 -
 foreign/python/Cargo.toml                          |   11 +-
 foreign/python/pyproject.toml                      |    8 +-
 foreign/python/uv.lock                             |    2 +-
 web/package-lock.json                              | 1003 ++++-----
 web/package.json                                   |    5 +-
 88 files changed, 5108 insertions(+), 6145 deletions(-)
 create mode 100644 core/bench/dashboard/server/Cargo.lock
 delete mode 100644 core/binary_protocol/src/dispatch.rs
 copy bdd/go/tests/suite_test.go => core/binary_protocol/src/frame.rs (56%)
 delete mode 100644 core/binary_protocol/src/framing.rs
 delete mode 100644 
core/binary_protocol/src/responses/system/get_cluster_metadata.rs
 delete mode 100644 core/binary_protocol/src/responses/system/get_me.rs
 delete mode 100644 core/binary_protocol/src/responses/system/get_snapshot.rs
 delete mode 100644 
core/integration/tests/server/scenarios/concurrent_produce_consume_scenario.rs
 delete mode 100644 
core/integration/tests/server/scenarios/restart_offset_skip_scenario.rs
 create mode 100644 core/partitions/src/iggy_index.rs
 create mode 100644 core/partitions/src/iggy_index_writer.rs
 create mode 100644 core/partitions/src/segment.rs
 delete mode 100644 core/server/src/streaming/partitions/ops_tests.rs
 delete mode 100644 foreign/go/internal/codec/reader.go
 delete mode 100644 foreign/go/internal/codec/reader_test.go
 delete mode 100644 foreign/go/internal/codec/roundtrip_test.go
 delete mode 100644 foreign/go/internal/codec/writer.go
 delete mode 100644 foreign/go/internal/codec/writer_test.go

Reply via email to