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

He-Pin pushed a change to branch worktree-fix-exhaustive-patmat-265
in repository https://gitbox.apache.org/repos/asf/pekko.git


 discard 5f5c838140 fix: enable strict-unsealed-patmat lint and fix 
exhaustiveness warnings
     add 2ed1e44718 Update scalafmt-core to 3.11.3 (#3338)
     add 876e44c2c5 Update junit-jupiter-engine to 6.1.2 (#3336)
     add b42ef42f15 Update aeron-client, aeron-driver to 1.52.2 (#3335)
     add a58029525c Update junit-platform-launcher to 6.1.2 (#3337)
     add 3bde77a4ee Update jackson-core to 3.2.1 (#3339)
     add e5d5113596 Clarify JsonFraming object-only behavior #3244 (#3320)
     add 97a03a3d2b fix: detect delayed messages in 
ManualTime.expectNoMessageFor (#3329)
     add 246fae4fb8 Optimize reflective hot paths with method handles (#3300)
     add d53beed463 Fix reentrant BatchingExecutor execution #1708 (#3331)
     add 2c5fb62d8a fix: validate legal files in packaged jars (#3328)
     add bccb37c030 workaround broken links (#3341)
     add 3fbb1848f3 fix: release completed graph interpreter references (#3030)
     add f79b53b36e fix(stream): handle deferred TLS output on inbound close 
(#3324)
     add 9ff774b726 fix: enable strict-unsealed-patmat lint and fix 
exhaustiveness warnings
     add b2622b1914 fix: add catch-all case for StageActorRefBenchmark 
getStageActor match

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   (5f5c838140)
            \
             N -- N -- N   refs/heads/worktree-fix-exhaustive-patmat-265 
(b2622b1914)

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:
 .scalafmt.conf                                     |   2 +-
 .../actor/testkit/typed/javadsl/ManualTime.scala   |   8 +-
 .../actor/testkit/typed/scaladsl/ManualTime.scala  |  10 +-
 .../testkit/typed/scaladsl/ManualTimeSpec.scala    | 122 ++++++++++++
 .../pekko/util/ReflectionExceptionFixtures.java    |  48 ++---
 .../org/apache/pekko/PekkoExceptionSpec.scala      |   4 +-
 .../org/apache/pekko/actor/DynamicAccessSpec.scala |  37 ++++
 .../pekko/dispatch/ExecutionContextSpec.scala      |  32 +++
 .../org/apache/pekko/util/ByteIteratorSpec.scala   |  10 +-
 .../pekko/util/ByteStringInitializationSpec.scala  |   9 +-
 .../scala/org/apache/pekko/util/ReflectSpec.scala  |  69 ++++++-
 .../actor/typed/internal/ExtensionsImpl.scala      |   7 +-
 .../org/apache/pekko/io/ByteBufferCleaner.java     |  11 +-
 .../apache/pekko/actor/IndirectActorProducer.scala |  17 +-
 .../pekko/actor/ReflectiveDynamicAccess.scala      |  87 ++++++--
 .../apache/pekko/dispatch/BatchingExecutor.scala   |  14 +-
 .../pekko/dispatch/VirtualThreadSupport.scala      |  91 ++++++---
 .../org/apache/pekko/io/dns/DnsSettings.scala      |  39 +++-
 .../scala/org/apache/pekko/util/LineNumbers.scala  |  15 +-
 .../main/scala/org/apache/pekko/util/Reflect.scala | 198 ++++++++++++++----
 .../pekko/stream/StageActorRefBenchmark.scala      |   1 +
 build.sbt                                          |   5 +
 .../pekko/cluster/sharding/FlightRecording.scala   |  18 +-
 docs/src/main/paradox/typed/dispatchers.md         |   3 +
 docs/src/main/paradox/typed/distributed-data.md    |   2 +-
 .../typed/handling-actor-responses-with-scala3.md  |   1 -
 .../exception/DurableStateExceptionsSpec.scala     |   4 +-
 project/AddMetaInfLicenseFiles.scala               |  37 +++-
 project/Dependencies.scala                         |   6 +-
 project/ValidatePullRequest.scala                  |   9 +
 .../remote/serialization/ProtobufSerializer.scala  | 111 +++++++----
 .../serialization/FailingInitializerMessage.java   |  20 +-
 .../serialization/ProtobufSerializerSpec.scala     |  43 +++-
 .../pekko/stream/impl/GraphStageLogicSpec.scala    |  33 ++-
 .../stream/impl/fusing/GraphInterpreterSpec.scala  | 113 +++++++++++
 .../impl/fusing/LifecycleInterpreterSpec.scala     |  25 ++-
 .../stream/io/TlsGraphStageIsolatedSpec.scala      | 221 ++++++++++++++++++++-
 .../pekko/stream/impl/JsonObjectParser.scala       |   9 +-
 .../stream/impl/fusing/GraphInterpreter.scala      | 162 +++++++++++++--
 .../pekko/stream/impl/io/TlsGraphStage.scala       |   8 +-
 .../apache/pekko/stream/javadsl/JsonFraming.scala  |  14 +-
 .../apache/pekko/stream/scaladsl/JsonFraming.scala |  16 +-
 .../testkit/metrics/FileDescriptorMetricSet.scala  |  32 ++-
 .../metrics/FileDescriptorMetricSetSpec.scala      |  24 ++-
 44 files changed, 1465 insertions(+), 282 deletions(-)
 create mode 100644 
actor-testkit-typed/src/test/scala/org/apache/pekko/actor/testkit/typed/scaladsl/ManualTimeSpec.scala
 copy 
bench-jmh/src/main/scala/org/apache/pekko/util/ArrayCopyOf_Benchmark.scala => 
actor-tests/src/test/java/org/apache/pekko/util/ReflectionExceptionFixtures.java
 (52%)
 copy 
stream-tests/src/test/scala/org/apache/pekko/stream/scaladsl/SinkFoldSpec.scala 
=> 
remote/src/test/java/org/apache/pekko/remote/serialization/FailingInitializerMessage.java
 (68%)
 copy 
actor-tests/src/test/scala/org/apache/pekko/io/ByteBufferCleanerSpec.scala => 
testkit/src/test/scala/org/apache/pekko/testkit/metrics/FileDescriptorMetricSetSpec.scala
 (52%)


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

Reply via email to