This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch update/sbt-assembly-2.3.1 in repository https://gitbox.apache.org/repos/asf/pekko.git
discard b2b1cdc4ed Update sbt-assembly to 2.3.1 add 0ca804c7af Update commons-codec to 1.19.0 (#1963) add 50fe0a8a39 protect 1.2.x branch (#1964) add 4355abd9ec build with java 17 (#1967) add 2323878ae1 Remove some deprecated code in pekko-actor (#1945) add 1b9c197fd7 persistence deprecations (#1966) add f23107fc43 Remove java8 home and scala steward pins related to java 11 and java 17 (#1968) add f88ed28345 Update sbt-assembly to 2.3.1 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 (b2b1cdc4ed) \ N -- N -- N refs/heads/update/sbt-assembly-2.3.1 (f88ed28345) 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: .asf.yaml | 12 + .github/workflows/binary-compatibility-checks.yml | 4 +- .github/workflows/build-test-prValidation.yml | 12 +- .github/workflows/generate-doc-check.yml | 4 +- .github/workflows/headers.yml | 4 +- .github/workflows/link-validator.yml | 4 +- .github/workflows/nightly-builds-aeron.yml | 4 +- .github/workflows/nightly-builds.yml | 10 +- .github/workflows/publish-nightly.yml | 4 +- .github/workflows/scala3-build.yml | 4 +- .github/workflows/timing-tests.yml | 4 +- .scala-steward.conf | 11 - .../org/apache/pekko/actor/ActorCreationTest.java | 113 +-------- .../org/apache/pekko/actor/PropsCreationSpec.scala | 7 - .../apache/pekko/event/jul/JavaLoggerSpec.scala | 97 ------- .../pekko/actor/typed/internal/LoggerClass.scala | 2 + .../remove-deprecated-methods.excludes | 51 ++++ .../org/apache/pekko/actor/AbstractActor.scala | 3 +- .../scala/org/apache/pekko/actor/AbstractFSM.scala | 42 --- .../org/apache/pekko/actor/AbstractProps.scala | 36 +-- .../scala/org/apache/pekko/actor/ActorRef.scala | 30 +-- .../org/apache/pekko/actor/ActorSelection.scala | 27 -- .../scala/org/apache/pekko/actor/ActorSystem.scala | 2 - .../apache/pekko/actor/CoordinatedShutdown.scala | 16 +- .../main/scala/org/apache/pekko/actor/FSM.scala | 19 -- .../scala/org/apache/pekko/actor/Scheduler.scala | 43 ---- .../main/scala/org/apache/pekko/actor/Timers.scala | 19 -- .../pekko/actor/dungeon/TimerSchedulerImpl.scala | 3 - .../scala/org/apache/pekko/actor/package.scala | 23 -- .../scala/org/apache/pekko/dispatch/Future.scala | 26 +- .../scala/org/apache/pekko/event/Logging.scala | 7 - .../org/apache/pekko/event/jul/JavaLogger.scala | 121 --------- .../scala/org/apache/pekko/io/DnsProvider.scala | 9 +- actor/src/main/scala/org/apache/pekko/io/Tcp.scala | 9 - .../scala/org/apache/pekko/io/TcpConnection.scala | 5 +- .../apache/pekko/pattern/BackoffSupervisor.scala | 282 +-------------------- .../org/apache/pekko/pattern/CircuitBreaker.scala | 37 --- .../apache/pekko/serialization/Serialization.scala | 22 -- .../scala/org/apache/pekko/util/StackBench.scala | 2 + .../remove-deprecated-methods.excludes | 4 +- .../serialization/ReplicatedEventSourcing.java | 10 - .../remove-deprecated-methods.excludes | 5 +- .../typed/internal/EventSourcedBehaviorImpl.scala | 6 - .../typed/javadsl/EventSourcedBehavior.scala | 11 - .../typed/scaladsl/EventSourcedBehavior.scala | 12 - project/Dependencies.scala | 2 +- project/Doc.scala | 9 +- project/Jdk9.scala | 21 +- project/JdkOptions.scala | 92 +------ project/PekkoBuild.scala | 33 +-- project/TestExtras.scala | 4 +- project/plugins.sbt | 2 + .../remove-deprecated-methods.excludes} | 4 +- .../artery/tcp/ssl/PemManagersProviderSpec.scala | 4 +- .../pekko/remote/classic/RemoteInitErrorSpec.scala | 2 + .../remove-deprecated-methods.excludes | 5 +- .../org/apache/pekko/testkit/TestFSMRef.scala | 11 - 57 files changed, 156 insertions(+), 1211 deletions(-) delete mode 100644 actor-tests/src/test/scala/org/apache/pekko/event/jul/JavaLoggerSpec.scala create mode 100644 actor/src/main/mima-filters/2.0.x.backwards.excludes/remove-deprecated-methods.excludes delete mode 100644 actor/src/main/scala/org/apache/pekko/actor/package.scala delete mode 100644 actor/src/main/scala/org/apache/pekko/event/jul/JavaLogger.scala copy remote/src/main/mima-filters/1.1.x.backwards.excludes/failuredetector.backwards.excludes => cluster-tools/src/main/mima-filters/2.0.x.backwards.excludes/remove-deprecated-methods.excludes (90%) copy remote/src/main/mima-filters/1.1.x.backwards.excludes/failuredetector.backwards.excludes => persistence-typed/src/main/mima-filters/2.0.x.backwards.excludes/remove-deprecated-methods.excludes (76%) copy remote/src/main/mima-filters/{1.1.x.backwards.excludes/failuredetector.backwards.excludes => 2.0.x.backwards.excludes/remove-deprecated-methods.excludes} (90%) copy remote/src/main/mima-filters/1.1.x.backwards.excludes/failuredetector.backwards.excludes => testkit/src/main/mima-filters/2.0.x.backwards.excludes/remove-deprecated-methods.excludes (82%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pekko.apache.org For additional commands, e-mail: commits-h...@pekko.apache.org