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

pjfanning pushed a change to branch optimize-bytestring-two-part
in repository https://gitbox.apache.org/repos/asf/pekko.git


 discard c962213cbf perf: avoid LazyList in ByteString2.iterator + cross-check 
tests + bench
 discard e6e9f567f4 Merge remote-tracking branch 'origin/main' into 
optimize-bytestring-two-part
 discard 9979cb10fe Wait for cluster test ports before restart
 discard c632b1da89 test: stabilize resizer performance log sampling
 discard ec1a982fd0 test: cover ByteString2 serialization paths
 discard f5956ea34c test: isolate quarantine event probes
 discard 9487c8bf03 test: stabilize outbound quarantine checks
 discard 147572b054 fix: tighten ByteString2 invariants
 discard 3a2bca8b6d fix: Address ByteString2 review comments
 discard b695f87870 fix: bind ByteString2 serializer
 discard 5c915d0424 feat: optimize two-part ByteString concatenation
     add 3c78ad4eeb try to fix flaky RotatingProviderWithChangingKeysSpec 
(#2940)
     add 967a270a04 MapAsyncPartitionedSpec: fix broken test on Java 25 (#2941)
     add 66fb4c959f Document package requirements in AGENTS.md (#2944)
     add 5a4f236db0 feat(stream): add TLS GraphStage engine (#2878)
     add 8116ff7c5e feat: support SO_REUSEPORT socket option (#2915)
     add 8675ef58e7 optimize ByteStrings startswith/endswith (#2896)
     add 7965d95b0d Make ByteString.copyToBuffer(buffer, offset) public, add 
scaladoc and test coverage (#2946)
     add 4900599a96 Stabilize JDK 25 virtualized stream tests (#2945)
     add 198f936f29 Support ActorSystem/ClassicActorSystemProvider serializer 
constructors, improve error message (#2948)
     add f2eb52af1d feat: Make it possible to define appVersion later (#2947)
     add 973446d1c7 Optimize stream boundary event allocation (#2916)
     add ebddbc2112 test: stabilize two flaky tests on JDK21+/virtualized 
nightly (#2949)
     add d015b64953 feat: optimize two-part ByteString concatenation
     add 8ad461a295 fix: bind ByteString2 serializer
     add e07bbff4a9 fix: Address ByteString2 review comments
     add 99f206301b fix: tighten ByteString2 invariants
     add 16d0b87618 test: stabilize outbound quarantine checks
     add 8db5d8e444 test: isolate quarantine event probes
     add d126d1e091 test: cover ByteString2 serialization paths
     add 3c52f7f6db Wait for cluster test ports before restart
     add ac2a6a7592 perf: avoid LazyList in ByteString2.iterator + cross-check 
tests + bench

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   (c962213cbf)
            \
             N -- N -- N   refs/heads/optimize-bytestring-two-part (ac2a6a7592)

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:
 AGENTS.md                                          |   27 +
 .../org/apache/pekko/io/InetSocketOptionSpec.scala |   82 ++
 .../org/apache/pekko/io/TcpIntegrationSpec.scala   |   18 +-
 .../org/apache/pekko/io/UdpIntegrationSpec.scala   |   14 +
 .../pekko/routing/MetricsBasedResizerSpec.scala    |    3 -
 .../apache/pekko/serialization/SerializeSpec.scala |   70 ++
 .../org/apache/pekko/util/ByteStringSpec.scala     |  120 ++-
 .../src/main/scala/org/apache/pekko/io/Inet.scala  |   39 +
 .../apache/pekko/io/TcpOutgoingConnection.scala    |   10 +-
 .../scala/org/apache/pekko/io/UdpManager.scala     |    2 +-
 .../main/scala/org/apache/pekko/io/UdpSender.scala |   50 +-
 .../apache/pekko/serialization/Serialization.scala |   46 +-
 .../scala/org/apache/pekko/util/ByteString.scala   |  153 ++-
 .../test => bench-jmh/src/main}/resources/keystore |  Bin
 .../src/main}/resources/truststore                 |  Bin
 .../ActorGraphInterpreterBoundaryBenchmark.scala   |  186 ++++
 .../org/apache/pekko/stream/io/TlsBenchmark.scala  |  216 ++++
 .../ClusterShardingCoordinatorRoleSpec.scala       |    2 +-
 .../org/apache/pekko/cluster/typed/Cluster.scala   |   28 +
 .../typed/internal/AdaptedClusterImpl.scala        |    4 +
 .../scala/org/apache/pekko/cluster/Cluster.scala   |   36 +
 .../org/apache/pekko/cluster/ClusterDaemon.scala   |  114 +-
 .../org/apache/pekko/cluster/AppVersionSpec.scala  |   79 ++
 .../org/apache/pekko/cluster/ClusterTestKit.scala  |    3 +-
 .../pekko/cluster/MixedProtocolClusterSpec.scala   |    2 +
 .../ssl/RotatingKeysSSLEngineProviderSpec.scala    |   38 +-
 .../stream/io/TlsGraphStageEdgeCasesSpec.scala     |  331 ++++++
 .../stream/io/TlsGraphStageIsolatedSpec.scala      |  238 +++++
 .../scala/org/apache/pekko/stream/io/TlsSpec.scala |   39 +-
 .../scaladsl/FlowMapAsyncUnorderedSpec.scala       |    3 +-
 .../stream/scaladsl/FlowMapWithResourceSpec.scala  |   20 +-
 .../pekko/stream/scaladsl/FlowScanSpec.scala       |    9 +-
 .../org/apache/pekko/stream/scaladsl/HubSpec.scala |   23 +-
 .../stream/scaladsl/TlsEngineSelectionSpec.scala   |   21 +-
 .../pekko/stream/MapAsyncPartitionedSpec.scala     |    9 +-
 .../pr-2916-boundary-event-allocation.excludes     |   30 +
 stream/src/main/resources/reference.conf           |   12 +
 .../org/apache/pekko/stream/impl/Stages.scala      |    1 +
 .../stream/impl/fusing/ActorGraphInterpreter.scala |  182 ++--
 .../org/apache/pekko/stream/impl/io/TLSActor.scala |   36 +-
 .../pekko/stream/impl/io/TlsEngineHelpers.scala    |   75 ++
 .../pekko/stream/impl/io/TlsGraphStage.scala       | 1103 ++++++++++++++++++++
 .../org/apache/pekko/stream/scaladsl/TLS.scala     |   50 +-
 43 files changed, 3282 insertions(+), 242 deletions(-)
 create mode 100644 
actor-tests/src/test/scala/org/apache/pekko/io/InetSocketOptionSpec.scala
 copy {stream-tests/src/test => bench-jmh/src/main}/resources/keystore (100%)
 copy {stream-tests/src/test => bench-jmh/src/main}/resources/truststore (100%)
 create mode 100644 
bench-jmh/src/main/scala/org/apache/pekko/stream/ActorGraphInterpreterBoundaryBenchmark.scala
 create mode 100644 
bench-jmh/src/main/scala/org/apache/pekko/stream/io/TlsBenchmark.scala
 create mode 100644 
cluster/src/multi-jvm/scala/org/apache/pekko/cluster/AppVersionSpec.scala
 create mode 100644 
stream-tests/src/test/scala/org/apache/pekko/stream/io/TlsGraphStageEdgeCasesSpec.scala
 create mode 100644 
stream-tests/src/test/scala/org/apache/pekko/stream/io/TlsGraphStageIsolatedSpec.scala
 copy actor-tests/src/test/scala/org/apache/pekko/io/dns/IdGeneratorSpec.scala 
=> 
stream-tests/src/test/scala/org/apache/pekko/stream/scaladsl/TlsEngineSelectionSpec.scala
 (58%)
 create mode 100644 
stream/src/main/mima-filters/2.0.x.backwards.excludes/pr-2916-boundary-event-allocation.excludes
 create mode 100644 
stream/src/main/scala/org/apache/pekko/stream/impl/io/TlsEngineHelpers.scala
 create mode 100644 
stream/src/main/scala/org/apache/pekko/stream/impl/io/TlsGraphStage.scala


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

Reply via email to