Skip to content

Commit 3864e15

Browse files
committed
Merge pull request #231 from NiteshKant/0.x
Updates to CHANGES.md for 0.3.13
2 parents 136af0d + 25f3a88 commit 3864e15

File tree

1 file changed

+38
-2
lines changed

1 file changed

+38
-2
lines changed

CHANGES.md

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,50 @@
11
# RxNetty Releases #
22

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+
327
### Version 0.3.12 ###
428

529
[Milestone](https://github.com/ReactiveX/RxNetty/issues?q=milestone%3A0.3.12+is%3Aclosed)
630

731
* [Issue 118] (https://github.com/Netflix/RxNetty/issues/118) Javadoc errors when compiling with Java 8.
832
* [Pull 196] (https://github.com/Netflix/RxNetty/pull/196) Websocket client and server implementation.
933
* [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.
1248

1349
Artifacts: [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxnetty%22%20AND%20v%3A%220.3.12%22)
1450

0 commit comments

Comments
 (0)