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

dependabot[bot] pushed a change to branch 
dependabot/github_actions/sbt/setup-sbt-1.1.23
in repository https://gitbox.apache.org/repos/asf/pekko-grpc.git


    omit 1cc80842 Bump sbt/setup-sbt from 1.1.22 to 1.1.23
     add c7a96f7f Add mTLS examples ported from akka-grpc PR #1781 (#691)
     add 547387ea Update slf4j-api to 2.0.18 (#695)
     add 27814733 build with pekko core 2.0.0-M2 (#696)
     add 6f73ef0b Update sbt-scalafmt to 2.6.1 (#693)
     add 7d1d4484 Update scalafmt-core to 3.11.1 (#694)
     add 0dabeb39 Optimize unary gRPC handler fast paths (#686)
     add 483a9ffa Bump coursier/cache-action from 8.1.0 to 8.1.1 (#703)
     add b7afbc55 Bump sbt/setup-sbt from 1.1.22 to 1.1.23

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   (1cc80842)
            \
             N -- N -- N   
refs/heads/dependabot/github_actions/sbt/setup-sbt-1.1.23 (b7afbc55)

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/build-test.yml                   |  14 +-
 .github/workflows/headers.yml                      |   2 +-
 .github/workflows/link-validator.yml               |   2 +-
 .scalafmt.conf                                     |   2 +-
 .../org/apache/pekko/grpc/CommonBenchmark.scala    |   1 +
 .../pekko/grpc/GrpcMarshallingBenchmark.scala      |  50 ++++++-
 .../pekko/grpc/JavaUnaryHandlerBenchmark.scala     | 162 +++++++++++++++++++++
 .../pekko/grpc/ScalaUnaryHandlerBenchmark.scala    | 155 ++++++++++++++++++++
 build.sbt                                          |   4 +
 .../twirl/templates/JavaServer/Handler.scala.txt   |  31 +++-
 .../twirl/templates/ScalaServer/Handler.scala.txt  |  72 +++++++--
 docs/src/main/paradox/index.md                     |   1 +
 docs/src/main/paradox/mtls.md                      |  43 ++++++
 plugin-tester-java/build.gradle                    |  10 +-
 plugin-tester-java/pom.xml                         |   8 +-
 .../myapp/helloworld/MtlsGreeterClient.java        | 118 +++++++++++++++
 .../myapp/helloworld/MtlsGreeterServer.java        | 154 ++++++++++++++++++++
 .../src/main/resources/application.conf            |   1 +
 .../src/main/resources/certs/README.md             |  63 ++++++++
 .../src/main/resources/certs/bad-client.crt        |  18 +++
 .../src/main/resources/certs/bad-client.key        |  28 ++++
 .../src/main/resources/certs/client1.crt           |  21 +++
 .../src/main/resources/certs/client1.key           |  28 ++++
 .../src/main/resources/certs/domain.ext            |   5 +
 .../src/main/resources/certs/localhost-server.crt  |  20 +++
 .../src/main/resources/certs/localhost-server.key  |  28 ++++
 .../src/main/resources/certs/rootCA.crt            |  18 +++
 .../src/main/resources/certs/rootCA.key            |  30 ++++
 plugin-tester-scala/build.gradle                   |  12 +-
 plugin-tester-scala/pom.xml                        |  15 +-
 .../src/main/resources/certs/README.md             |  63 ++++++++
 .../src/main/resources/certs/bad-client.crt        |  18 +++
 .../src/main/resources/certs/bad-client.key        |  28 ++++
 .../src/main/resources/certs/client1.crt           |  21 +++
 .../src/main/resources/certs/client1.key           |  28 ++++
 .../src/main/resources/certs/domain.ext            |   5 +
 .../src/main/resources/certs/localhost-server.crt  |  20 +++
 .../src/main/resources/certs/localhost-server.key  |  28 ++++
 .../src/main/resources/certs/rootCA.crt            |  18 +++
 .../src/main/resources/certs/rootCA.key            |  30 ++++
 plugin-tester-scala/src/main/resources/logback.xml |  21 +++
 .../myapp/helloworld/MtlsGreeterClient.scala       |  96 ++++++++++++
 .../myapp/helloworld/MtlsGreeterServer.scala       | 128 ++++++++++++++++
 .../myapp/helloworld/MtlsIntegrationSpec.scala     |  49 +++++++
 project/Dependencies.scala                         |   3 +-
 project/PekkoCoreDependency.scala                  |   2 +-
 project/plugins.sbt                                |   2 +-
 .../org/apache/pekko/grpc/ProtobufSerializer.scala |   4 +
 .../pekko/grpc/internal/AbstractGrpcProtocol.scala |  36 +++--
 .../pekko/grpc/internal/GrpcEntityHelpers.scala    |  18 ++-
 .../pekko/grpc/internal/GrpcResponseHelpers.scala  |  49 ++++++-
 .../grpc/javadsl/GoogleProtobufSerializer.scala    |  17 ++-
 .../pekko/grpc/javadsl/GrpcMarshalling.scala       |  58 +++++++-
 .../pekko/grpc/scaladsl/GrpcMarshalling.scala      |  82 ++++++++++-
 .../grpc/scaladsl/ScalapbProtobufSerializer.scala  |  17 ++-
 .../pekko/grpc/javadsl/GrpcMarshallingSpec.scala   |  86 +++++++++++
 56 files changed, 1972 insertions(+), 71 deletions(-)
 create mode 100644 
benchmarks/src/main/scala/org/apache/pekko/grpc/JavaUnaryHandlerBenchmark.scala
 create mode 100644 
benchmarks/src/main/scala/org/apache/pekko/grpc/ScalaUnaryHandlerBenchmark.scala
 create mode 100644 docs/src/main/paradox/mtls.md
 create mode 100644 
plugin-tester-java/src/main/java/example/myapp/helloworld/MtlsGreeterClient.java
 create mode 100644 
plugin-tester-java/src/main/java/example/myapp/helloworld/MtlsGreeterServer.java
 create mode 100644 plugin-tester-java/src/main/resources/certs/README.md
 create mode 100644 plugin-tester-java/src/main/resources/certs/bad-client.crt
 create mode 100644 plugin-tester-java/src/main/resources/certs/bad-client.key
 create mode 100644 plugin-tester-java/src/main/resources/certs/client1.crt
 create mode 100644 plugin-tester-java/src/main/resources/certs/client1.key
 create mode 100644 plugin-tester-java/src/main/resources/certs/domain.ext
 create mode 100644 
plugin-tester-java/src/main/resources/certs/localhost-server.crt
 create mode 100644 
plugin-tester-java/src/main/resources/certs/localhost-server.key
 create mode 100644 plugin-tester-java/src/main/resources/certs/rootCA.crt
 create mode 100644 plugin-tester-java/src/main/resources/certs/rootCA.key
 create mode 100644 plugin-tester-scala/src/main/resources/certs/README.md
 create mode 100644 plugin-tester-scala/src/main/resources/certs/bad-client.crt
 create mode 100644 plugin-tester-scala/src/main/resources/certs/bad-client.key
 create mode 100644 plugin-tester-scala/src/main/resources/certs/client1.crt
 create mode 100644 plugin-tester-scala/src/main/resources/certs/client1.key
 create mode 100644 plugin-tester-scala/src/main/resources/certs/domain.ext
 create mode 100644 
plugin-tester-scala/src/main/resources/certs/localhost-server.crt
 create mode 100644 
plugin-tester-scala/src/main/resources/certs/localhost-server.key
 create mode 100644 plugin-tester-scala/src/main/resources/certs/rootCA.crt
 create mode 100644 plugin-tester-scala/src/main/resources/certs/rootCA.key
 create mode 100644 plugin-tester-scala/src/main/resources/logback.xml
 create mode 100644 
plugin-tester-scala/src/main/scala/example/myapp/helloworld/MtlsGreeterClient.scala
 create mode 100644 
plugin-tester-scala/src/main/scala/example/myapp/helloworld/MtlsGreeterServer.scala
 create mode 100644 
plugin-tester-scala/src/test/scala/example/myapp/helloworld/MtlsIntegrationSpec.scala
 create mode 100644 
runtime/src/test/scala/org/apache/pekko/grpc/javadsl/GrpcMarshallingSpec.scala


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to