Skip to content

1.1.10

Compare
Choose a tag to compare
@akarnokd akarnokd released this 05 Sep 12:34
· 100 commits to 1.x since this release

Maven

The release contains a few javadoc and internal cleanups, some enhancements and some deprecations.

Notable renames:

  • fromAsync is now fromEmitter
  • rx.Completable.CompletableSubscriber is now rx.CompletableSubscriber

API enhancements

  • Pull 4423: add free-form conversion operator to(Func1) to Observable, Single and Completable.
  • Pull 4425: Rename Completable helper interfaces by dropping the Completable prefix, move rx.Completable.CompletableSubscriber to rx.CompletableSubscriber.
  • Pull 4442: Rename fromAsync to fromEmitter.
  • Pull 4452: Enhance generics on Observable.onErrorResumeNext and onErrorReturn
  • Pull 4442: Add Completable.fromEmitter
  • Pull 4453: Remove throws InterruptedException from TestSubscriber.awaitValueCount()
  • Pull 4460: Add Completable.doOnEach(Action1)
  • Pull 4461: Add Single.doOnEach

Deprecations

  • Pull 4425: Deprecate CompletableOnSubscribe, CompletableOperator and CompletableTransformer and rename them by dropping the Completable prefix
  • Pull 4442: Deprecate Observable.fromAsync by renaming it to Observable.fromEmitter.
  • Pull 4466: Deprecate Notification.createOnCompleted(Class)

Bugfixes

  • Pull 4397: Fix multiple values produced by throttleFirst with TestScheduler
  • Pull 4427: Fix Observable.fromEmitter (formerly Observable.fromAsync) post-complete event suppression
  • Pull 4447: Fix type parameters of Observable.withLatestFrom