Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Releases: spring-attic/reactor-scala-extensions

Release v0.4.0

12 Jun 16:03
Compare
Choose a tag to compare

New

  • Deprecated Flux and Mono. They are replaced by SFlux and SMono respectively.
  • Upgrade the underlying reactor-core to version 3.2.9.RELEASE

Bugfix

  • Flux.name does not work with Scannable (#18)

Release v0.3.7

04 Mar 20:37
Compare
Choose a tag to compare
  • Added method SParallelFlux.asJava to allow caller to use the underlying ParallelFlux while its underlying method is being added to SParallelFlux (#21)

Release v0.3.5

16 Jun 17:24
Compare
Choose a tag to compare

Improvement:

  • Update reactor-core to version 3.1.7.RELEASE (#15)

Bug fixed:

  • Flux.expand has Flux.expandDeep behavior (#16)
  • Flux.groupBy with prefetch doesn't apply prefetch parameter (#17)
  • The name given in Flux.name cannot be retrieved via Scannable.name as supposed to be (#18)

Release v0.3.4

28 Mar 08:39
Compare
Choose a tag to compare

Enhancement

  • Cross compile with scala 2.13.0-M3, #7
  • Added trait Filter, #12
  • Added operator onErrorRecover and onErrorRecoverWith for both Flux and Mono, #13
  • Added operator zipWithTimeSinceSubscription, #9
  • Added operator flatten, #8
  • Update underlying reactor core to 3.1.5.RELEASE, #6

Clean up

  • Removed tuple2toScala conversion from most zip operators, #11(Thanks to @smiklos)

Release v0.3.3

28 Mar 08:35
Compare
Choose a tag to compare
  • Cross compile with Scala 2.12, #3
  • Added a conversion from and to Java, #4
  • Update underlying reactor core to version 3.1.3.RELEASE

Release v0.3.2

11 Dec 07:27
Compare
Choose a tag to compare
  • Update reactor-core-3.1.2.RELEASE under the hood
  • Add Flux#index operator
  • Add Mono#single to enforce the presence of an element in a Mono[T]
  • Add Mono#blockOption to block and return an Option
  • Add Flux#fromStream(Supplier[Stream])

Release v0.3.1

16 Nov 15:17
Compare
Choose a tag to compare
  • Update reactor-core-3.1.1 under the hood
  • First release that support scala 2.12 (#3)
  • Convert Java Mono/Flux to Scala Mono/Flux (#4)

v0.3.0

09 Oct 16:00
Compare
Choose a tag to compare

First release of scala-extensions against reactor-core-3.1.0.RELEASE

Release v0.2.5

01 Oct 15:47
Compare
Choose a tag to compare

This is the last release based on reactor-core 3.0.x unless there is bug.
New development is based on reactor-core 3.1.x

Another change in this release is that the artifact name contains the scala version it is built against, i.e. reactor-scala-extensions_2.11

Release v0.2.4

19 Jun 16:27
Compare
Choose a tag to compare

Change set:

  • Upgraded the underlying reactor-core to v3.0.7
  • Completed scaladoc for Mono
  • Added FluxProcessor