|
1 | 1 | # RxNetty Releases #
|
2 | 2 |
|
| 3 | +### Version 0.3.13 ### |
| 4 | + |
| 5 | +[Milestone](https://github.com/ReactiveX/RxNetty/issues?q=milestone%3A0.3.13+is%3Aclosed) |
| 6 | + |
| 7 | +* [Issue 214] (https://github.com/Netflix/RxNetty/issues/214) HttpServerRequest should provide a way to access Netty channel. |
| 8 | +* [Issue 216] (https://github.com/Netflix/RxNetty/issues/216) Remove deprecated HttpClientResponse and HttpServerRequest constructors. |
| 9 | +* [Issue 218] (https://github.com/Netflix/RxNetty/issues/218) Migrate Branch Master -> 0.x. |
| 10 | +* [Issue 223] (https://github.com/Netflix/RxNetty/issues/223) Client connections receiving SSE responses should never be pooled & reused. |
| 11 | +* [Issue 225] (https://github.com/Netflix/RxNetty/issues/225) Unsubscribing from HttpClient.submit() should not close connection. |
| 12 | +* [Issue 226] (https://github.com/Netflix/RxNetty/issues/226) Response should be flushed on `RequestHandler`'s failure. |
| 13 | +* [Issue 228] (https://github.com/Netflix/RxNetty/issues/228) `DefaultChannelWriter` should return `Channel` instead of `ChannelHandlerContext`. |
| 14 | +* [Issue 230] (https://github.com/Netflix/RxNetty/issues/230) FlatResponseOperator does not emit any item if there is no content. |
| 15 | + |
| 16 | +##### Deprecations |
| 17 | + |
| 18 | +* [Issue 228] (https://github.com/Netflix/RxNetty/issues/228) `DefaultChannelWriter.getChannelHandlerContext()` is deprecated. |
| 19 | + |
| 20 | +##### Deprecation removals |
| 21 | + |
| 22 | +* [Issue 216] (https://github.com/Netflix/RxNetty/issues/216) Remove deprecated HttpClientResponse and HttpServerRequest constructors. |
| 23 | + |
| 24 | + |
| 25 | +Artifacts: [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxnetty%22%20AND%20v%3A%220.3.13%22) |
| 26 | + |
3 | 27 | ### Version 0.3.12 ###
|
4 | 28 |
|
5 | 29 | [Milestone](https://github.com/ReactiveX/RxNetty/issues?q=milestone%3A0.3.12+is%3Aclosed)
|
6 | 30 |
|
7 | 31 | * [Issue 118] (https://github.com/Netflix/RxNetty/issues/118) Javadoc errors when compiling with Java 8.
|
8 | 32 | * [Pull 196] (https://github.com/Netflix/RxNetty/pull/196) Websocket client and server implementation.
|
9 | 33 | * [Pull 204] (https://github.com/Netflix/RxNetty/pull/204) Add a generic Handler interface
|
10 |
| -* [Issue 206] (https://github.com/Netflix/RxNetty/issue/206) HttpClientResponse.getContent() will loose data if not eagerly subscribed. |
11 |
| -* [Issue 199] (https://github.com/Netflix/RxNetty/issue/199) Invalid metric event used in DefaultChannelWriter. |
| 34 | +* [Issue 206] (https://github.com/Netflix/RxNetty/issues/206) HttpClientResponse.getContent() will loose data if not eagerly subscribed. |
| 35 | +* [Issue 199] (https://github.com/Netflix/RxNetty/issues/199) Invalid metric event used in DefaultChannelWriter. |
| 36 | + |
| 37 | +##### Change in behavior |
| 38 | + |
| 39 | +As part of [Issue 206] (https://github.com/Netflix/RxNetty/issues/206) the following change in behavior is done in this release: |
| 40 | + |
| 41 | +##### Old Behavior |
| 42 | +- Before this fix, the the `Observable` returned from `HttpClient.submit()` used to complete after the content of the response completed. |
| 43 | +- The content could be lost (this issue) if the content was subscribed out of the `onNext` call of `HttpClientResponse` |
| 44 | + |
| 45 | +##### New Behavior |
| 46 | +- After this fix, the `Observable` returned from `HttpClient.submit()` completes immediately after one callback of `HttpClientResponse`. |
| 47 | +- The content can be subscribed out of the `onNext` call of `HttpClientResponse` till the content timeout as described in #206. |
12 | 48 |
|
13 | 49 | Artifacts: [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxnetty%22%20AND%20v%3A%220.3.12%22)
|
14 | 50 |
|
|
0 commit comments