File tree 2 files changed +24
-3
lines changed
2 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1
1
# RxJava Releases #
2
2
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
+
3
24
### Version 1.2.0 - September 17, 2016 ([ Maven] ( http://search.maven.org/#artifactdetails%7Cio.reactivex%7Crxjava%7C1.2.0%7C ) )
4
25
5
26
This 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) {
1087
1087
public void noCallToHooksOnPlainError () {
1088
1088
1089
1089
final boolean [] called = { false };
1090
-
1090
+
1091
1091
RxJavaHooks .setOnError (new Action1 <Throwable >() {
1092
1092
@ Override
1093
1093
public void call (Throwable t ) {
1094
1094
called [0 ] = true ;
1095
1095
}
1096
1096
});
1097
-
1097
+
1098
1098
try {
1099
1099
Observable .error (new TestException ())
1100
1100
.subscribe (new TestSubscriber <Object >());
1101
-
1101
+
1102
1102
assertFalse (called [0 ]);
1103
1103
} finally {
1104
1104
RxJavaHooks .reset ();
You can’t perform that action at this time.
0 commit comments