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

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


    omit be67b221f Merge branch 'master' into drain-bus
    omit 7aac5d31f feat(message_bus): add drain method to collect buffered 
outbound messages
     add fc3976019 fix(consensus): prevent UB from untrusted bytes interpreted 
as enum discriminants in consensus headers                                      
                                               (#2887)
     add fc5d9005c feat(csharp): add TCP/TLS producer and consumer examples 
(#2821)
     add 5d3b7934f fix(js): use localhost instead of disabling hostname 
verification in … (#2913)
     add c15100698 feat(java): add TCP/TLS integration tests and examples 
(#2823)
     add 7ad9800c1 feat(message_bus): add drain method to collect buffered 
outbound messages

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   (be67b221f)
            \
             N -- N -- N   refs/heads/drain-bus (7ad9800c1)

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:
 .github/actions/java-gradle/pre-merge/action.yml   |  28 ++++
 Cargo.lock                                         |  14 ++
 Cargo.toml                                         |   2 +-
 DEPENDENCIES.md                                    |   1 +
 codecov.yml                                        |   1 +
 core/common/src/types/consensus/header.rs          |  96 +++++------
 core/common/src/types/consensus/message.rs         |  89 ++++++----
 core/consensus/src/plane_helpers.rs                |   3 +-
 core/metadata/src/stm/mod.rs                       |   1 -
 core/shard/src/lib.rs                              |  11 +-
 core/shard/src/router.rs                           |  24 ++-
 core/simulator/src/packet.rs                       |   3 +-
 examples/csharp/Iggy_SDK.Examples.sln              |  17 ++
 examples/csharp/README.md                          |  13 ++
 .../Iggy_SDK.Examples.TcpTls.Consumer.csproj}      |   2 +-
 .../Iggy_SDK.Examples.TcpTls.Consumer/Program.cs   | 113 +++++++++++++
 .../Iggy_SDK.Examples.TcpTls.Producer.csproj}      |   2 +-
 .../Iggy_SDK.Examples.TcpTls.Producer/Program.cs   | 141 ++++++++++++++++
 examples/java/README.md                            |  22 +++
 examples/java/build.gradle.kts                     |   9 +
 .../consumer/TcpTlsConsumer.java}                  |  31 +++-
 .../producer/TcpTlsProducer.java}                  |  31 +++-
 .../client/blocking/tcp/TlsConnectionTest.java     | 183 +++++++++++++++++++++
 foreign/node/src/e2e/tls.system.e2e.ts             |  11 +-
 scripts/run-csharp-examples-from-readme.sh         |  87 +++++++++-
 scripts/run-java-examples-from-readme.sh           |  81 ++++++++-
 26 files changed, 887 insertions(+), 129 deletions(-)
 copy 
examples/csharp/src/{MessageHeaders/Iggy_SDK.Examples.MessageHeaders.Consumer/Iggy_SDK.Examples.MessageHeaders.Consumer.csproj
 => 
TcpTls/Iggy_SDK.Examples.TcpTls.Consumer/Iggy_SDK.Examples.TcpTls.Consumer.csproj}
 (95%)
 create mode 100644 
examples/csharp/src/TcpTls/Iggy_SDK.Examples.TcpTls.Consumer/Program.cs
 copy 
examples/csharp/src/{GettingStarted/Iggy_SDK.Examples.GettingStarted.Producer/Iggy_SDK.Examples.GettingStarted.Producer.csproj
 => 
TcpTls/Iggy_SDK.Examples.TcpTls.Producer/Iggy_SDK.Examples.TcpTls.Producer.csproj}
 (95%)
 create mode 100644 
examples/csharp/src/TcpTls/Iggy_SDK.Examples.TcpTls.Producer/Program.cs
 copy 
examples/java/src/main/java/org/apache/iggy/examples/{gettingstarted/consumer/GettingStartedConsumer.java
 => tcptls/consumer/TcpTlsConsumer.java} (78%)
 copy 
examples/java/src/main/java/org/apache/iggy/examples/{gettingstarted/producer/GettingStartedProducer.java
 => tcptls/producer/TcpTlsProducer.java} (80%)
 create mode 100644 
foreign/java/java-sdk/src/test/java/org/apache/iggy/client/blocking/tcp/TlsConnectionTest.java

Reply via email to