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

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


    omit 5bf763c8b docs(sdk): state plainly that the legacy server sends no 
confirmation
    omit df774a548 ci(repo): lint foreign Rust crates and fix the 
license-header scan
    omit 07e7bd116 test(integration): assert the legacy server reports no 
confirmations
    omit 95af356a3 fix(sdk): drop the fabricated send confirmation from foreign 
clients
    omit fb1d787ef fix(server-ng): stop confirming sends that never committed
    omit 3015a640b feat(server-ng): confirm committed sends with partition and 
offset
     add 2afd4b12b feat(consensus): persist metadata VSR state in a durable 
superblock (#3767)
     add 102484af2 feat(python): expose Permissions and remaining user auth 
methods (#3727)
     add 1453114da feat(metadata): state transfer for snapshot and client table 
(#3765)
     add 71c67e432 feat(server-ng): enforce PAT limits and expose Prometheus 
metrics (#3773)
     add a59a1db01 chore(deps): Bump the node group across 1 directory with 3 
updates (#3779)
     add 01e721028 chore(deps): Bump github.com/klauspost/compress from 1.19.0 
to 1.19.1 in /bdd/go in the go group across 1 directory (#3785)
     add e3ec3382e feat(server-ng): confirm committed sends with partition and 
offset
     add 64bc9b18c fix(server-ng): stop confirming sends that never committed
     add ffc3809c3 fix(sdk): drop the fabricated send confirmation from foreign 
clients
     add 1dc44d742 test(integration): assert the legacy server reports no 
confirmations
     add 8d80e5d15 ci(repo): lint foreign Rust crates and fix the 
license-header scan
     add a105a91d0 docs(sdk): state plainly that the legacy server sends no 
confirmation

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   (5bf763c8b)
            \
             N -- N -- N   refs/heads/send_messages_confirmation (a105a91d0)

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:
 Cargo.lock                                         |    6 +
 bdd/go/go.mod                                      |    2 +-
 bdd/go/go.sum                                      |    4 +-
 core/binary_protocol/src/consensus/command.rs      |   19 +-
 core/binary_protocol/src/consensus/header.rs       |  337 +++-
 core/binary_protocol/src/consensus/mod.rs          |    3 +-
 core/binary_protocol/src/lib.rs                    |    5 +-
 core/configs/src/server_ng_config/cluster.rs       |    6 +
 core/configs/src/server_ng_config/validators.rs    |   13 +
 core/connectors/sinks/s3_sink/Cargo.toml           |    6 +
 core/consensus/Cargo.toml                          |    2 +
 core/consensus/src/client_table.rs                 |  979 +++++++++++-
 core/consensus/src/impls.rs                        |  840 +++++++++-
 core/consensus/src/le_cursor.rs                    |  115 ++
 core/consensus/src/lib.rs                          |   15 +-
 core/consensus/src/metadata_helpers.rs             |   27 +-
 core/consensus/src/observability.rs                |    4 +-
 core/consensus/src/plane_helpers.rs                |   15 +-
 core/consensus/src/state_manifest.rs               |  309 ++++
 core/consensus/src/vsr_state.rs                    |  224 +++
 core/integration/Cargo.toml                        |   13 +-
 core/integration/src/harness/config/resolve.rs     |    7 +-
 core/integration/src/harness/handle/server.rs      |   83 +-
 .../src/harness/orchestrator/harness.rs            |   26 +
 .../cli/message/test_message_flush_command.rs      |    5 +
 .../tests/cluster/client_table_restart.rs          |   14 +-
 .../tests/cluster/metadata_checkpoint_restart.rs   |  276 ++++
 .../tests/cluster/metadata_state_transfer.rs       |  406 +++++
 core/integration/tests/cluster/mod.rs              |    2 +
 core/integration/tests/data_integrity/mod.rs       |   11 +-
 .../data_integrity/verify_after_server_restart.rs  |   31 +
 .../tests/server/cluster_view_durability_vsr.rs    |  266 ++++
 core/integration/tests/server/flush_vsr.rs         |    4 +
 .../server/metadata_checkpoint_recovery_vsr.rs     |  138 ++
 core/integration/tests/server/mod.rs               |    8 +
 .../scenarios/segment_rotation_race_scenario.rs    |    9 -
 core/journal/Cargo.toml                            |    2 +
 core/journal/src/lib.rs                            |   31 +
 core/journal/src/prepare_journal.rs                |  508 +++++-
 core/journal/src/superblock.rs                     |  824 ++++++++++
 core/metadata/src/impls/metadata.rs                | 1389 ++++++++++++++--
 core/metadata/src/impls/recovery.rs                |  985 +++++++++++-
 core/metadata/src/lib.rs                           |    5 +-
 core/metadata/src/stm/mod.rs                       |   10 +
 core/metadata/src/stm/mux.rs                       |   40 +-
 core/metadata/src/stm/snapshot.rs                  |  129 +-
 core/metadata/src/stm/stream.rs                    |  252 ++-
 core/metadata/src/stm/user.rs                      |   69 +-
 core/partitions/src/iggy_partition.rs              |    8 +-
 core/partitions/src/iggy_partitions.rs             |    2 +-
 core/partitions/src/journal.rs                     |   10 +
 core/partitions/src/log.rs                         |   24 +
 core/server-ng/Cargo.toml                          |    1 -
 core/server-ng/src/bootstrap.rs                    |  258 ++-
 core/server-ng/src/dispatch.rs                     |   95 +-
 core/server-ng/src/http.rs                         |  160 +-
 core/server-ng/src/http/metrics.rs                 |  297 ++++
 core/server-ng/src/http/state.rs                   |    8 +
 core/server-ng/src/http/submit.rs                  |   37 +-
 core/server-ng/src/partition_reconciler.rs         |    2 +-
 core/server-ng/src/pat.rs                          |  182 ++-
 core/server-ng/src/responses.rs                    |   17 +-
 core/server_common/src/consensus_message.rs        |   34 +-
 core/shard/src/lib.rs                              | 1661 ++++++++++++++++++--
 core/shard/src/router.rs                           |   32 +-
 core/simulator/src/deps.rs                         |  131 ++
 core/simulator/src/lib.rs                          |  517 +++++-
 core/simulator/src/replica.rs                      |  126 +-
 examples/go/go.mod                                 |    2 +-
 examples/go/go.sum                                 |    4 +-
 foreign/go/go.mod                                  |    2 +-
 foreign/go/go.sum                                  |    4 +-
 foreign/node/package-lock.json                     |  485 ++----
 foreign/node/package.json                          |    4 +-
 foreign/python/apache_iggy.pyi                     |  334 +++-
 foreign/python/src/client.rs                       |  103 +-
 foreign/python/src/lib.rs                          |    6 +
 foreign/python/src/permissions.rs                  |  458 ++++++
 foreign/python/src/user.rs                         |    9 +
 foreign/python/tests/test_permissions.py           |  695 ++++++++
 foreign/python/tests/test_user.py                  |  113 +-
 foreign/python/tests/utils.py                      |   23 +
 82 files changed, 13206 insertions(+), 1112 deletions(-)
 create mode 100644 core/consensus/src/le_cursor.rs
 create mode 100644 core/consensus/src/state_manifest.rs
 create mode 100644 core/consensus/src/vsr_state.rs
 create mode 100644 
core/integration/tests/cluster/metadata_checkpoint_restart.rs
 create mode 100644 core/integration/tests/cluster/metadata_state_transfer.rs
 create mode 100644 core/integration/tests/server/cluster_view_durability_vsr.rs
 create mode 100644 
core/integration/tests/server/metadata_checkpoint_recovery_vsr.rs
 create mode 100644 core/journal/src/superblock.rs
 create mode 100644 core/server-ng/src/http/metrics.rs
 create mode 100644 foreign/python/src/permissions.rs
 create mode 100644 foreign/python/tests/test_permissions.py

Reply via email to