RxJava v2.2.6 Release Notes

Release Date: 2019-01-23 // over 5 years ago
  • Maven

    API enhancements

    • Pull 6370: Add interruptible mode via the new Schedulers.from(Executor, boolean) overload.

    🛠 Bugfixes

    • 🚦 Pull 6359: Fix the error/race in Observable.repeatWhen due to flooding repeat signal.
    • Pull 6362: Fix Completable.andThen(Completable) not running on observeOn's Scheduler.
    • Pull 6364: Fix Flowable.publish not requesting upon client change.
    • Pull 6371: Fix bounded replay() memory leak due to bad node retention.
    • Pull 6375: Don't dispose the winner of {Single|Maybe|Completable}.amb().
    • Pull 6380: Fix CompositeException.getRootCause() detecting loops in the cause graph.

    📚 Documentation changes

    • Pull 6365: Indicate source disposal in timeout(fallback).

    Other changes

    • Pull 6353: Use ignoreElement to convert Single to Completable in the README.md.