This is an automated email from the ASF dual-hosted git repository.
He-Pin pushed a change to branch refactor/replace-reflection-with-methodhandles
in repository https://gitbox.apache.org/repos/asf/pekko.git
discard 062f859503 perf: replace java.lang.reflect with MethodHandle/VarHandle
across core modules
add e6b61dbf43 jackson MINIMAL_CLASS setting is dangerous too (#3304)
add 4e9cbe5016 Update jackson-core to 2.22.1 (#3305)
add c53fa8b622 fix: suppress dead-letter logging during a terminating
shutdown when disabled (#3262)
add b3d4f7a33a docs: link to app-version from Deployment for rolling
updates (#3276)
add 0b2d049ba8 Optimize reflective hot paths with method handles
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 (062f859503)
\
N -- N -- N
refs/heads/refactor/replace-reflection-with-methodhandles (0b2d049ba8)
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:
.../pekko/util/ReflectionExceptionFixtures.java | 48 +++---
.../org/apache/pekko/actor/DynamicAccessSpec.scala | 37 +++++
.../event/DeadLetterListenerShutdownSpec.scala | 185 +++++++++++++++++++++
.../scala/org/apache/pekko/util/HashCodeSpec.scala | 64 +++++++
.../scala/org/apache/pekko/util/ReflectSpec.scala | 60 +++++++
.../actor/typed/internal/ExtensionsImpl.scala | 6 +-
.../org/apache/pekko/actor/AbstractProps.scala | 40 ++++-
.../apache/pekko/actor/IndirectActorProducer.scala | 17 +-
.../pekko/actor/ReflectiveDynamicAccess.scala | 79 ++++++---
.../org/apache/pekko/dispatch/Mailboxes.scala | 4 +-
.../pekko/dispatch/VirtualThreadSupport.scala | 15 +-
.../apache/pekko/event/DeadLetterListener.scala | 53 +++++-
.../org/apache/pekko/io/dns/DnsSettings.scala | 12 +-
.../scala/org/apache/pekko/util/HashCode.scala | 65 ++++++--
.../scala/org/apache/pekko/util/LineNumbers.scala | 20 +--
.../main/scala/org/apache/pekko/util/Reflect.scala | 145 ++++++++++++----
.../src/main/paradox/additional/rolling-updates.md | 4 +
docs/src/main/paradox/serialization-jackson.md | 8 +-
project/Dependencies.scala | 2 +-
project/Paradox.scala | 1 +
.../remote/serialization/ProtobufSerializer.scala | 100 +++++++----
.../serialization/FailingInitializerMessage.java | 20 +--
.../serialization/ProtobufSerializerSpec.scala | 43 ++++-
.../jackson/JacksonSerializerSpec.scala | 14 +-
.../testkit/metrics/FileDescriptorMetricSet.scala | 44 +++--
.../metrics/FileDescriptorMetricSetSpec.scala | 24 ++-
26 files changed, 877 insertions(+), 233 deletions(-)
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%)
create mode 100644
actor-tests/src/test/scala/org/apache/pekko/event/DeadLetterListenerShutdownSpec.scala
create mode 100644
actor-tests/src/test/scala/org/apache/pekko/util/HashCodeSpec.scala
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]