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

hubcio pushed a change to branch feat/server-ng-config-hardening
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit 66fd32020 feat(server-ng): harden configuration surface
     add 40d1e356e fix(server-ng): legacy-parity consumer group errors, roster 
HTTP bind (#3754)
     add ab944b558 chore(deps): Bump the csharp group with 8 updates (#3759)
     add cfa104c37 feat(server-ng): add cluster.nodes.advertised_address for 
clients (#3757)
     add 89045771e feat(consensus): rework client table for session resume 
across restarts (#3753)
     add eb4c262ab feat(server-ng): harden configuration surface

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   (66fd32020)
            \
             N -- N -- N   refs/heads/feat/server-ng-config-hardening 
(eb4c262ab)

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:
 core/binary_protocol/src/consensus/header.rs       |   55 +-
 core/binary_protocol/src/consensus/operation.rs    |    3 +-
 core/common/src/error/iggy_error.rs                |    2 +
 core/common/src/types/identifier/mod.rs            |   16 +-
 core/configs/src/server_ng_config/cluster.rs       |  486 +++++++-
 core/configs/src/server_ng_config/defaults.rs      |    1 +
 core/configs/src/server_ng_config/validators.rs    |   81 +-
 core/consensus/src/client_table.rs                 | 1169 ++++++++++++--------
 core/consensus/src/lib.rs                          |    2 +-
 core/consensus/src/metadata_helpers.rs             |  492 ++++----
 .../tests/cluster/client_table_restart.rs          |  382 +++++--
 .../tests/sdk/consumer_group_membership.rs         |  102 ++
 core/metadata/src/impls/metadata.rs                |  787 ++++++++++---
 core/metadata/src/impls/recovery.rs                |  272 ++++-
 core/metadata/src/lib.rs                           |    2 +-
 core/metadata/src/stm/consumer_group.rs            |  281 ++++-
 core/metadata/src/stm/result.rs                    |   71 +-
 core/metadata/src/stm/snapshot.rs                  |    8 +-
 core/metadata/src/stm/stream.rs                    |   40 +-
 core/metadata/src/stm/user.rs                      |    2 +-
 core/sdk/src/clients/consumer.rs                   |    7 +-
 core/sdk/src/vsr.rs                                |   19 +-
 core/server-ng/config.toml                         |   25 +-
 core/server-ng/src/auth.rs                         |    5 +-
 core/server-ng/src/bootstrap.rs                    |  238 +++-
 core/server-ng/src/cluster_meta.rs                 |   81 +-
 core/server-ng/src/dispatch.rs                     |  103 +-
 core/server-ng/src/http/error.rs                   |  125 ++-
 core/server-ng/src/http/handlers.rs                |    4 +-
 core/server-ng/src/http/session.rs                 |   22 +-
 core/server-ng/src/http/state.rs                   |  104 +-
 core/server-ng/src/http/submit.rs                  |   90 +-
 core/server-ng/src/login_register.rs               |    9 +-
 core/server-ng/src/partition_reconciler.rs         |   24 +-
 core/server-ng/src/server_error.rs                 |   10 +-
 core/server-ng/src/session_manager.rs              |   26 +
 core/server-ng/src/users.rs                        |   10 +-
 core/server_common/src/consensus_message.rs        |   68 ++
 core/shard/src/coordinator.rs                      |  232 +++-
 core/shard/src/lib.rs                              |   14 +-
 core/simulator/src/workload/mod.rs                 |    4 +-
 .../src/workload/ops/delete_consumer_group.rs      |   34 +-
 .../Iggy_SDK.Examples.Basic.Consumer.csproj        |    8 +-
 .../Iggy_SDK.Examples.Basic.Producer.csproj        |   10 +-
 ...ggy_SDK.Examples.GettingStarted.Consumer.csproj |    4 +-
 ...ggy_SDK.Examples.GettingStarted.Producer.csproj |    4 +-
 .../Iggy_SDK.Examples.Shared.csproj                |    2 +-
 ...gy_SDK.Examples.MessageEnvelope.Consumer.csproj |   10 +-
 ...gy_SDK.Examples.MessageEnvelope.Producer.csproj |   10 +-
 ...ggy_SDK.Examples.MessageHeaders.Consumer.csproj |    4 +-
 ...ggy_SDK.Examples.MessageHeaders.Producer.csproj |    4 +-
 .../Iggy_SDK.Examples.NewSdk.Consumer.csproj       |   10 +-
 .../Iggy_SDK.Examples.NewSdk.Producer.csproj       |   10 +-
 .../Iggy_SDK.Examples.TcpTls.Consumer.csproj       |    4 +-
 .../Iggy_SDK.Examples.TcpTls.Producer.csproj       |    4 +-
 foreign/csharp/Directory.Packages.props            |    6 +-
 56 files changed, 4355 insertions(+), 1243 deletions(-)

Reply via email to