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

hepin pushed a change to branch elements
in repository https://gitbox.apache.org/repos/asf/pekko.git


 discard 9e9771148c feat: Add Source#elements
     add 0f299aff19 Update jackson-module-scala to 3.0.2 (#2449)
     add 4cb69977d7 Update jackson-dataformat-cbor to 3.0.2 (#2448)
     add 15be1f0b14 Update jackson-core, jackson-databind to 3.0.2 (#2447)
     add b4e216520d Update agrona to 2.3.1 (#2446)
     add f76f652a4e Update commons-io to 2.21.0 (#2445)
     add 7aa5457b36 Add tools.jackson dependencies to scala-steward config 
(#2454)
     add d2b7cdb208 chore: Fix typo of OptionVal's scaladoc (#2451)
     add e695cc9988 chore: Remove stream testkit's prob methods (#2440)
     add 51392022ab feat: Add effectful asking support in typed BehaviorTestKit 
(#2450)
     add 2f503e5cc5 update doc and tests that still refer to java 8 (#2458)
     add c3c549dda6 Update agrona to 2.3.2 (#2461)
     add 82692c8646 feat: Add asking support to BehaviorTestKit (#2453)
     add 523c05f7f6 feat: Add unpersistent versions of persistent behaviors 
(#2456)
     add 6d5996277c Add OptionalUtil to Java util
     add e251356ad9 Update lmdbjava to 0.9.2 (#2462)
     add 0a20baeb68 feat: Add Source#items

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   (9e9771148c)
            \
             N -- N -- N   refs/heads/elements (0a20baeb68)

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:
 .scala-steward.conf                                |   5 +
 README.md                                          |   2 +-
 .../add-ask-behavior-methods.excludes              |   7 +-
 .../apache/pekko/actor/testkit/typed/Effect.scala  |  57 ++-
 .../typed/internal/BehaviorTestKitImpl.scala       |  33 +-
 .../typed/internal/EffectfulActorContext.scala     |  67 ++-
 .../testkit/typed/internal/TestInboxImpl.scala     | 121 ++++-
 .../testkit/typed/javadsl/BehaviorTestKit.scala    |  54 +++
 .../actor/testkit/typed/javadsl/Effects.scala      |  16 +-
 .../actor/testkit/typed/javadsl/TestInbox.scala    |  84 +++-
 .../testkit/typed/scaladsl/BehaviorTestKit.scala   |  18 +
 .../actor/testkit/typed/scaladsl/Effects.scala     |  15 +-
 .../actor/testkit/typed/scaladsl/TestInbox.scala   |  94 ++++
 .../typed/javadsl/SyncTestingExampleTest.java      | 119 +++++
 .../testkit/typed/javadsl/BehaviorTestKitTest.java |  77 +++-
 .../typed/scaladsl/SyncTestingExampleSpec.scala    |  71 +++
 .../typed/scaladsl/BehaviorTestKitSpec.scala       | 196 ++++++++-
 .../actor/typed/internal/ActorFlightRecorder.scala |   3 +-
 .../java/org/apache/pekko/util/OptionalUtil.java   |  64 +++
 .../scala/org/apache/pekko/util/OptionVal.scala    |   7 +-
 .../typed/AccountExampleUnpersistentDocTest.java   | 161 +++++++
 .../typed/AccountExampleUnpersistentDocSpec.scala  |  97 ++++
 .../stream/operators/Source/asSubscriber.md        |   3 +-
 .../stream/operators/Source/fromPublisher.md       |   3 +-
 docs/src/main/paradox/typed/persistence-testing.md |  44 +-
 docs/src/main/paradox/typed/testing-sync.md        |  12 +-
 .../docs/stream/RateTransformationDocSpec.scala    |   8 +-
 .../testkit/internal/Unpersistent.scala            | 488 +++++++++++++++++++++
 .../testkit/javadsl/UnpersistentBehavior.scala     | 162 +++++++
 .../testkit/scaladsl/UnpersistentBehavior.scala    | 144 ++++++
 .../scaladsl/UnpersistentDurableStateSpec.scala    | 264 +++++++++++
 .../scaladsl/UnpersistentEventSourcedSpec.scala    | 337 ++++++++++++++
 project/Dependencies.scala                         |   8 +-
 remote/src/main/resources/reference.conf           |  12 -
 .../remote/artery/RemotingFlightRecorder.scala     |   3 +-
 .../remote/artery/RemotingFlightRecorderSpec.scala |   6 +-
 .../remove-deprecated-methods.excludes             |   4 +
 .../pekko/stream/testkit/javadsl/TestSink.scala    |   7 -
 .../pekko/stream/testkit/javadsl/TestSource.scala  |   7 -
 .../pekko/stream/testkit/scaladsl/TestSink.scala   |   6 -
 .../pekko/stream/testkit/scaladsl/TestSource.scala |   6 -
 .../apache/pekko/stream/scaladsl/FlowSpec.scala    |   2 +-
 .../apache/pekko/stream/scaladsl/SourceSpec.scala  |   2 +-
 .../org/apache/pekko/stream/scaladsl/Source.scala  |  16 -
 44 files changed, 2796 insertions(+), 116 deletions(-)
 copy 
stream/src/main/mima-filters/1.0.x.backwards.excludes/pr-1443-also-alsoTo-source-flow-with-context.backwards.excludes
 => 
actor-testkit-typed/src/main/mima-filters/2.0.x.backwards.excludes/add-ask-behavior-methods.excludes
 (68%)
 create mode 100644 actor/src/main/java/org/apache/pekko/util/OptionalUtil.java
 create mode 100644 
cluster-sharding-typed/src/test/java/jdocs/org/apache/pekko/cluster/sharding/typed/AccountExampleUnpersistentDocTest.java
 create mode 100644 
cluster-sharding-typed/src/test/scala/docs/org/apache/pekko/cluster/sharding/typed/AccountExampleUnpersistentDocSpec.scala
 create mode 100644 
persistence-testkit/src/main/scala/org/apache/pekko/persistence/testkit/internal/Unpersistent.scala
 create mode 100644 
persistence-testkit/src/main/scala/org/apache/pekko/persistence/testkit/javadsl/UnpersistentBehavior.scala
 create mode 100644 
persistence-testkit/src/main/scala/org/apache/pekko/persistence/testkit/scaladsl/UnpersistentBehavior.scala
 create mode 100644 
persistence-testkit/src/test/scala/org/apache/pekko/persistence/testkit/scaladsl/UnpersistentDurableStateSpec.scala
 create mode 100644 
persistence-testkit/src/test/scala/org/apache/pekko/persistence/testkit/scaladsl/UnpersistentEventSourcedSpec.scala


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

Reply via email to