File tree Expand file tree Collapse file tree 2 files changed +24
-3
lines changed Expand file tree Collapse file tree 2 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 11# RxJava Releases #
22
3+ ### Version 1.2.1 - October 5, 2016 ([ Maven] ( http://search.maven.org/#artifactdetails%7Cio.reactivex%7Crxjava%7C1.2.1%7C ) )
4+
5+ #### API enhancements
6+
7+ - [ Pull 4555] ( https://github.com/ReactiveX/RxJava/pull/4555 ) : enhance generics of ` doOnError ` and ` doOnRequest `
8+ - [ Pull 4580] ( https://github.com/ReactiveX/RxJava/pull/4580 ) : rename ` AsyncEmitter ` to ` Emitter `
9+
10+ #### Performance enhancements
11+
12+ - [ Pull 4621] ( https://github.com/ReactiveX/RxJava/pull/4621 ) : ` NotificationLite ` - reduce allocations
13+ - [ Pull 4648] ( https://github.com/ReactiveX/RxJava/pull/4648 ) : rework ` Single ` internals to reduce overhead and stack depth
14+
15+ #### Deprecations
16+
17+ - [ Pull 4580] ( https://github.com/ReactiveX/RxJava/pull/4580 ) : ` CompletableEmitter.setCancellation ` will change its type in 1.2.2.
18+ - [ Pull 4648] ( https://github.com/ReactiveX/RxJava/pull/4648 ) : Deprecate ` Single(Observable.OnSubscribe) ` constructor
19+
20+ #### Bugfixes
21+
22+ - [ Pull 4641] ( https://github.com/ReactiveX/RxJava/pull/4641 ) : ` SafeSubscriber ` not to call ` RxJavaHooks ` before delivering the error
23+
324### Version 1.2.0 - September 17, 2016 ([ Maven] ( http://search.maven.org/#artifactdetails%7Cio.reactivex%7Crxjava%7C1.2.0%7C ) )
425
526This is a minor release that is functionally equivalent to 1.1.10 minus the removal of some deprecated experimental APIs.
Original file line number Diff line number Diff line change @@ -1087,18 +1087,18 @@ public Completable.Operator onLift(Completable.Operator lift) {
10871087 public void noCallToHooksOnPlainError () {
10881088
10891089 final boolean [] called = { false };
1090-
1090+
10911091 RxJavaHooks .setOnError (new Action1 <Throwable >() {
10921092 @ Override
10931093 public void call (Throwable t ) {
10941094 called [0 ] = true ;
10951095 }
10961096 });
1097-
1097+
10981098 try {
10991099 Observable .error (new TestException ())
11001100 .subscribe (new TestSubscriber <Object >());
1101-
1101+
11021102 assertFalse (called [0 ]);
11031103 } finally {
11041104 RxJavaHooks .reset ();
You can’t perform that action at this time.
0 commit comments