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

dependabot[bot] pushed a change to branch 
dependabot/maven/opentelemetry.version-1.64.0
in repository https://gitbox.apache.org/repos/asf/ratis.git


 discard 8ee5e2436 Bump opentelemetry.version from 1.63.0 to 1.64.0
     add 1be42107f RATIS-2598. TLS provider/protocol/cipher config is not 
applied to DataStream server/client. (#1511)
     add bceb3c209 RATIS-2602. Pass CipherSuiteFilter to the TlsConf. (#1517)
     add 9c280a5d9 RATIS-2601. GroupInfoReply conf is lost when converting to 
GroupInfoReplyProto (#1515)
     add 44152380d RATIS-2604. Add a new server side DataStreamApi (#1518)
     add 27cdb5d38 RATIS-2603. Add DataStreamApi.Resolver for group-independent 
read-only requests (#1516)
     add 6aafce539 RATIS-2605. Avoid advancing matchIndex from heartbeat 
AppendEntries success (#1519)
     add f4c378146 RATIS-2606. Bump actions/setup-java to 5.5.0 (#1520)
     add 47bed2b51 RATIS-2398. Add opentelemetry-javaagent to ratis-examples 
and assembly (#1428)
     add 2b0bf55f5 Bump opentelemetry.version from 1.63.0 to 1.64.0

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   (8ee5e2436)
            \
             N -- N -- N   
refs/heads/dependabot/maven/opentelemetry.version-1.64.0 (2b0bf55f5)

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/workflows/check.yaml                       |   2 +-
 .github/workflows/ci.yaml                          |   2 +-
 .github/workflows/repeat-test.yaml                 |   2 +-
 .github/workflows/vulnerability-check.yaml         |   2 +-
 pom.xml                                            |   1 +
 ratis-assembly/src/main/assembly/bin.xml           |   6 +
 .../apache/ratis/client/impl/ClientProtoUtils.java |   1 +
 .../apache/ratis/client/impl/RaftClientImpl.java   |   3 +
 .../java/org/apache/ratis/security/TlsConf.java    |  25 ++
 .../org/apache/ratis/trace/NoOpTraceProvider.java  |   6 +
 .../java/org/apache/ratis/trace/TraceProvider.java |   4 +
 .../java/org/apache/ratis/trace/TraceUtils.java    |   5 +
 .../java/org/apache/ratis/util/NettyUtils.java     |  48 +++-
 ratis-examples/README.md                           |  50 ++++
 ratis-examples/pom.xml                             |   5 +-
 ratis-examples/src/main/bin/client.sh              |   5 +-
 ratis-examples/src/main/bin/common.sh              |  40 ++++
 ratis-examples/src/main/bin/server.sh              |   3 +-
 .../ratis/examples/arithmetic/cli/Client.java      |   2 +-
 .../ratis/examples/arithmetic/cli/Server.java      |   2 +-
 .../ratis/examples/common/ExampleLauncher.java     |  70 ++++++
 .../org/apache/ratis/examples/common/Runner.java   |   1 +
 .../ratis/examples/common/SubCommandBase.java      |   5 +
 .../examples/filestore/FileStoreStateMachine.java  |   9 +-
 .../ratis/examples/filestore/cli/Client.java       |   2 +-
 .../apache/ratis/examples/filestore/cli/Read.java  |   6 +-
 .../ratis/examples/filestore/cli/Server.java       |   2 +-
 .../java/org/apache/ratis/grpc/GrpcTlsConfig.java  |   7 +
 .../main/java/org/apache/ratis/grpc/GrpcUtil.java  |  17 +-
 .../org/apache/ratis/grpc/TestGrpcTlsConfig.java   |  31 +++
 .../ratis/netty/server/NettyServerStreamRpc.java   |   2 +-
 .../ratis/netty/server/ReadStreamManagement.java   |  62 ++++-
 .../apache/ratis/server/RaftServerConfigKeys.java  |  13 ++
 .../org/apache/ratis/server/api/DataStreamApi.java |  45 ++++
 .../apache/ratis/statemachine/StateMachine.java    |   8 +-
 .../ratis/server/leader/LogAppenderDefault.java    |  30 ++-
 .../server/leader/TestLogAppenderDefault.java      | 255 +++++++++++++++++++++
 .../apache/ratis/client/TestClientProtoUtils.java  |  91 ++++++++
 .../ratis/datastream/DataStreamTestUtils.java      |  17 +-
 .../apache/ratis/netty/TestTlsConfWithNetty.java   |  95 ++++++++
 .../netty/server/TestDataStreamManagement.java     | 183 ++++++++++++++-
 ratis-trace-otel/pom.xml                           |   6 +-
 .../apache/ratis/trace/otel/OTelTraceProvider.java |   5 +
 .../apache/ratis/trace/otel/OTelTraceUtils.java    |   4 +
 44 files changed, 1114 insertions(+), 66 deletions(-)
 create mode 100644 
ratis-examples/src/main/java/org/apache/ratis/examples/common/ExampleLauncher.java
 create mode 100644 
ratis-server-api/src/main/java/org/apache/ratis/server/api/DataStreamApi.java
 create mode 100644 
ratis-server/src/test/java/org/apache/ratis/server/leader/TestLogAppenderDefault.java

Reply via email to