All Versions
15
Latest Version
Avg Release Cycle
137 days
Latest Release
1552 days ago

Changelog History
Page 1

  • v0.27.0 Changes

    December 29, 2019

    End-of-Life (EOL) version

    โž• Adds Scala 2.13 support.

    Note on compatibility:

    • Binary compatibility is only preserved within a Scala major version
    • This libraries definition of Seq follows that of the Scala major version, so scala.collection.generic.Seq in 2.10-2.12 and scala.collection.immutable.Seq in 2.13
    • Some methods which take an implicit CanBuildFrom[Nothing, ...] in the 2.10-2.12 version take an implicit Factory in the 2.13 version to follow the collection re-design.
  • v0.26.5 Changes

    December 28, 2016

    ๐Ÿ”€ The most notable change is adding SyncOnSubscribe and AsyncOnSubscribe support. Search them in RxScalaDemo โฌ†๏ธ for examples. RxJava and Scala are upgraded to the latest version as well. Check the following section for other changes.

    Pull Requests

    • ๐Ÿ”€ Pull 220 Implement SyncOnSubscribe and AsyncOnSubscribe
    • Pull 222 Add FutureToObservable
    • Pull 223 Add Notification.flatMap

    Artifacts: Maven Central

  • v0.26.4 Changes

    November 07, 2016

    ๐Ÿš€ This release upgrades RxJava to 1.2.2 and adds UnicastSubject. In addition, RxScala is also published with Scala 2.12.0 since this version.

    Pull Requests

    • Pull 213 Add UnicastSubject
    • โšก๏ธ Pull 214 Update Scala version to 2.12.0 final
    • Pull 215 Bump to RxJava 1.2.2

    Artifacts: Maven Central

  • v0.26.3 Changes

    October 08, 2016

    ๐Ÿš€ This release upgrades RxJava to 1.2.0, adds new RxScala/RxJava converters (See
    โœ… JavaConvertersDemo.scala
    ๐Ÿ›  for examples), Scala Try and Option converters and bug fixes.

    Pull Requests

    • โฑ Pull 199 Fix the wrong return type of take overload with scheduler
    • โฌ†๏ธ Pull 204 Upgrade to RxJava 1.1.9 and add missing operators
    • Pull 207 RxScala <-> RxJava converters
    • Pull 210 Try & Option converters
    • Pull 211 Bump to RxJava 1.2.0

    Artifacts: Maven Central

  • v0.26.2 Changes

    June 17, 2016

    ๐Ÿš€ This release upgrades RxJava to 1.1.6 and adds the new experimental ErrorDelayingObservable class.

    What is the new ErrorDelayingObservable class?

    โœ… ErrorDelayingObservable contains a variety of operators that support delaying errors. Sometimes when you compose multiple Observables together (e.g., flatMap, concat), you may want to refrain from propagating error notifications until all of the Observables have finished emitting items. In such cases, you can call Observable.delayError to get an ErrorDelayingObservable and use the ErrorDelayingObservable's methods to compose your Observables. Search for delayError in RxScalaDemo.scala for examples.

    Pull Requests

    Artifacts: Maven Central

  • v0.26.1 Changes

    April 14, 2016

    ๐Ÿš€ This release upgrades RxJava to 1.1.1 and adds Scala 2.12 support. Now you can use RxScala with Scala 2.12.0-M4.

    Pull Requests

    • โฌ†๏ธ Pull 189 Upgrade to RxJava 1.1.1 and add missing methods
    • ๐Ÿ‘ Pull 191 Scala 2.12 support

    Artifacts: Maven Central

  • v0.26.0 Changes

    January 26, 2016

    ๐Ÿš€ This release upgrades RxJava to 1.1.0 and removes deprecated APIs.

    Pull Requests

    • ๐Ÿšš Pull 184 Bump to RxJava 1.1.0 and remove deprecated APIs

    Artifacts: Maven Central

  • v0.25.1 Changes

    December 18, 2015

    ๐Ÿš€ This release upgrades RxJava to 1.0.17 along with several experimental APIs including new interval overloads, concatEager, concatMapEager, flattenDelayError and BlockingObservable.subscribe.

    Pull Requests

    • Pull 172 Fix invalid wikipedia url in AsyncWiki example
    • ๐Ÿ”จ Pull 174 Refactor CompletenessTest to support adding completeness tests for other classes
    • โฌ†๏ธ Pull 176 Upgrade sbt to 0.13.8; move completeness package to scala-2.11; enable fatal-warnings
    • โœ… Pull 178 Eliminated two possible false positives from BlockingObservableTest
    • โฌ†๏ธ Pull 182 Upgrade to RxJava 1.0.17

    Artifacts: Maven Central

  • v0.25.0 Changes

    June 08, 2015

    ๐Ÿš€ This release upgrades RxJava to 1.0.11 along with the following enhancements:

    • ๐Ÿ—„ Deprecate ExperimentalAPIs and use @Experimental/@Beta annotations directly. Unstable APIs wil be labeled Experimental/Beta in Scaladoc.
    • ๐Ÿ”„ Change error[T] to error: Observable[Nothing]
    • โž• Add TestSubscriber and its examples. Writing unit tests is much easier now. See TestSubscriberExample for examples.
    • โž• Add onBackpressureLatest and variants of flatMap and using.
    • โž• Add more experimental methods of Subject.
    • ๐Ÿ“ฆ Move examples to examples package: https://github.com/ReactiveX/RxScala/tree/0.x/examples/src/test/scala/examples
    • ๐Ÿ›  Some document fixes

    Migration from 0.24.1 to 0.25.0

    ๐Ÿšš Observable.error does not have a type parameter any more. Please remove the type parameter of Observable.error in your codes.
    Sometimes removing the type parameter may break your codes. E.g.,

    val x = Observable.error[Int](new RuntimeException("Oops")).toBlocking.single println(x + 1)
    

    ๐Ÿšš It won't be compiled if Int is removed. For these cases, you can add the explicit type to the variable and make the compiler happy, such as

    val x: Int = Observable.error(new RuntimeException("Oops")).toBlocking.single println(x + 1)
    

    ๐Ÿšš ExperimentalAPIs is deprecated. It's not a breaking change, but we plan to remove ExperimentalAPIs in 0.26.0. If you are using ExperimentalAPIs,
    ๐Ÿšš please recompile your codes and fix them as per the deprecated messages provided by the compiler as soon as possible. Once ExperimentalAPIs is removed,
    ๐Ÿ—„ you won't get the deprecated messages.

    Pull Requests

    • โšก๏ธ Pull 157 Update the out-of-date example in "Notification" doc
    • ๐Ÿ“š Pull 159 Correct documentation for Observable.merge
    • ๐Ÿ“š Pull 162 Fixed minor documentation typo
    • โšก๏ธ Pull 163 Update to Scala 2.10.5 / 2.11.6
    • Pull 164 Change error[T] to error: Observable[Nothing]
    • โšก๏ธ Pull 166 Update to using RxJava 1.0.11
    • ๐Ÿšš Pull 168 Move examples
    • โœ… Pull 170 Add TestSubscriber

    Artifacts: Maven Central

  • v0.24.1 Changes

    March 31, 2015

    ๐Ÿš€ This release upgrades RxJava to 1.0.8 along with ExecutionContextScheduler and onBackpressureDropDo.

    Pull Requests

    • โšก๏ธ Pull 151 Update to Rxjava 1.0.8 & add onBackpressureDropDo to ExperimentalAPIs
    • โฑ Pull 91 Add ExecutionContextScheduler for Scala ExecutionContext

    Artifacts: Maven Central