Skip to content

v0.6.3.RELEASE

Compare
Choose a tag to compare
@smaldini smaldini released this 06 Jun 22:35

This is the 3rd release of Reactor Netty 0.6.

This is a recommended update for all Reactor Netty users which fixes a few blockers and some user experience issues.

⚠️ Update considerations

  • Cancelling/disposing an HttpClientResponse will now close prematurely the connection since there is no deterministic way to release it if it was persistent (default). See #57.
  • Immediate failure to write onto a newly acquired persistent connection by HttpClient will result in automatic close/re-acquire.
  • Reactor Netty does now depend on the exploded netty dependencies instead of netty-all for better transitive control, see #28.

✨ New features and improvements

  • HttpClient now closes on cancel/dispose #57
  • HttpClient will now present a 'user-agent' by default (#55)
  • HttpClient auto-retries immediately stale connection (96daef2)
  • Safely release bytebuf when exceptions are raised up to ChannelOperationHandler (#51)

🪲 Bug fixes

  • WebsocketInbound#aggregateFrames() is now properly working (#52)
  • Decorate binary message with websocket frames #54
  • Proxy resolution now lazily resolve unresolved address #53

👍 Thanks @nebhale @rstoyanchev for the reactive feedbacks