RxKotlin v2.2.0 Release Notes

Release Date: 2017-11-27 // over 6 years ago
  • ๐Ÿš€ This is a breaking release removing some annoyances, specifically the toSingle() and toMaybe() extension functions targeting futures, callables, and even single T items.

    ๐Ÿšš These caused far more harm than good, as they often clashed with other libraries and people's own extensions. For instance, RxKotlinFX has a Dialog<T>.toMaybe() extension which emits a dialog's response. This clashed directly with the toMaybe() in RxKotlin. Rather than deprecating these extensions, they were just removed to prevent further hindrance.

    ๐Ÿšš Deprecated Observable#combineLatest() and its Flowable counterpart have been removed as well, and you can use the Observables and Flowables factories instead.

    โšก๏ธ RxJava and Kotlin dependencies have been updated as well.