2.0.0-RC3
This Release Candidate features mostly internal cleanups of code and Javadoc, Reactive-Streams Test Compatibility Kit implementations (and thus verification) of our Flowable
implementation and additional unit-test coverage. Big thanks to @vanniktech for the many contributions and @JakeWharton for the continued reviews.
Other notable changes:
- The new
Maybe
type of RC2 now features all relevant operators. - Many
Observable
andFlowable
operators now returnSingle
orMaybe
. - Pull 4525 : Fixed generics of
combineLatest
andzip
becauseFunction<? super T[], R>
doesn't work. - Pull 4522 : Fixed
delay
operator to callonError
on the provided scheduler - Pull 4490 : rename
isCancelled
toisDisposed
inside the varios emitters ofcreate()
- Pull 4504 : add default
XObserver
implementation toSingle
,Maybe
andCompletable
- Pull 4518 : add
ResourceXObserver
implementation toSingle
,Maybe
andCompletable
- Pull 4536 : fix
timeout
operators not properly cancelling/disposing the upstream. - Pull 4583 :
Flowable.create()
'sFlowableEmitter
didn't handlenull
s properly. - Pull 4586 : Add error assertion with predicate to
TestSubscriber
andTestObserver
.
In addition, the wiki page What's different in 2.0 has been extended with more information.