All Versions
39
Latest Version
Avg Release Cycle
35 days
Latest Release
842 days ago
Changelog History
Page 4
Changelog History
Page 4
-
v2.2.12 Changes
August 25, 2019 -
v2.2.11 Changes
August 02, 2019๐ Bugfixes
- Pull 6560: Fix NPE when debouncing an empty source.
- ๐ Pull 6599: Fix
mergeWith
not canceling other when the main fails. - Pull 6601:
ObservableBlockingSubscribe
compares with wrong object. - Pull 6602: Fix truncation bugs in
replay()
andReplaySubject
/Processor
.
๐ Documentation changes
- Pull 6565: Fix JavaDocs of
Single.doOnTerminate
refer toonComplete
notification.
-
v2.2.10 Changes
June 21, 2019 -
v2.2.9 Changes
May 30, 2019๐ Bugfixes
- Pull 6488: Fix
zip
not stopping the subscription upon eager error.
๐ Documentation changes
- ๐ Pull 6453: Fixed wrong type referenced in
Maybe
andSingle
JavaDocs. - โก๏ธ Pull 6458: Update the Javadoc of the
retry
operator.
Other
- โฑ Pull 6452: Remove dependency of
Schedulers
fromObservableRefCount
. - Pull 6461: Change error message in
ObservableFromArray
. - ๐ Pull 6469: Remove redundant methods from
sample(Observable)
. - ๐ Pull 6470: Remove unused import from
Flowable.java
. - ๐ Pull 6485: Remove unused
else
from theObservable
.
- Pull 6488: Fix
-
v2.2.8 Changes
March 26, 2019๐ Bugfixes
- Pull 6442: Add missing undeliverable error handling logic for
Completable.fromRunnable
&fromAction
operators.
๐ Documentation changes
- ๐ Pull 6432: Improve the docs of
CompositeDisposable
. - ๐ฆ Pull 6434: Improve subjects and processors package doc.
- Pull 6436: Improve
Creating-Observables
wiki doc.
Other
- Pull 6433: Make error messages of parameter checks consistent.
- Pull 6442: Add missing undeliverable error handling logic for
-
v2.2.7 Changes
February 23, 2019 -
v2.2.6 Changes
January 23, 2019API 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 onobserveOn
'sScheduler
. - 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 convertSingle
toCompletable
in theREADME.md
.
- โฑ Pull 6370: Add interruptible mode via the new
-
v2.2.5 Changes
December 31, 2018๐ Documentation changes
- ๐ Pull 6344: Use correct return type in JavaDocs documentation in
elementAtOrDefault
. - Pull 6346: Fix JavaDoc examples using markdown instead of
@code
.
Wiki changes
- Pull 6324: Java 8 version for Problem-Solving-Examples-in-RxJava.
- โก๏ธ Pull 6343: Update Filtering Observables docs.
- โก๏ธ Pull 6351: Updated java example in How-To-Use-RxJava.md file with java 8 version.
Other changes
- ๐ Pull 6344: Use correct return type in JavaDocs documentation in
-
v2.2.4 Changes
November 23, 2018API changes
- Pull 6278: Add
Maybe
/Single
/Completable
materialize
operator, - Pull 6278: Add
Single.dematerialize(selector)
operator. - Pull 6281: Add
Flowable
/Observable
dematerialize(selector)
operator.
๐ Bugfixes
- Pull 6258: Fix cancel/dispose upon upstream switch for some operators.
- Pull 6269: Call the
doOn{Dispose|Cancel}
handler at most once. - Pull 6283: Fix
Observable.flatMap
to sustain concurrency level. - Pull 6297: Fix refCount eager disconnect not resetting the connection.
๐ Documentation changes
- โฑ Pull 6280: Improve the package docs of
io.reactivex.schedulers
. - ๐ Pull 6301: Add missing
onSubscribe
null-checks to NPE docs onFlowable
/Observable
subscribe
. - ๐ Pull 6303: Fix incorrect image placement in
Flowable.zip
docs. - Pull 6305: Explain the non-concurrency requirement of the
Emitter
interface methods. - Pull 6308: Explain the need to consume both the group sequence and each group specifically with
Flowable.groupBy
. - Pull 6311: Explain that
distinctUntilChanged
requires non-mutating data to work as expected.
Wiki changes
- Pull 6260: Add
generate
examples toCreating-Observables.md
. - ๐ Pull 6267: Fix
Creating-Observables.md
docs stlye mistake. - Pull 6273: Fix broken markdown of
How-to-Contribute.md
. - โก๏ธ Pull 6266: Update Error Handling Operators docs.
- โก๏ธ Pull 6291: Update Transforming Observables docs.
Other changes
- ๐ Pull 6262: Use JUnit's assert format for assert messages for better IDE interoperation.
- Pull 6263: Inline
SubscriptionHelper.isCancelled()
. - Pull 6275: Improve the
Observable
/Flowable
cache()
operators. - โฑ Pull 6287: Expose the Keep-Alive value of the IO
Scheduler
as System property. - Pull 6321: Fix
Flowable.toObservable
backpressure annotation.
- Pull 6278: Add