Skip to content

Releases: WegenenVerkeer/RxHttpClient

2.0 - release

14 Jul 13:08
Compare
Choose a tag to compare

2.0-RC1 : Upgrade to RxJava 3.0

21 Apr 10:07
Compare
Choose a tag to compare
  • Includes interop module for Reactor, Reactive-Streams, and JDK 9 Flow API.
  • includes fs2 module for interop with Scala fs2 library

For more information, see the README

1.2.0

12 Jul 11:38
Compare
Choose a tag to compare

Adds a executeAndDechunk(ClientRequest, String) method to the client. The method returns an Observable<String> that emits a String whenever a separator String is observed in the received chunks. This is especially useful when chunked transfer encoding is used for server sent events (SSE) or other streaming data.

1.1.0

25 Jun 14:38
Compare
Choose a tag to compare

New features:

  • Request logging logs only method and URL by default
  • To log headers and/or formParameters you must specify them by name in the Client Builder

Bugfix:

  • addHeader() to an already-built ClientRequest now works.

0.8.1

21 Nov 16:44
Compare
Choose a tag to compare

Oauth v1 on per request basis

0.8

20 Nov 15:52
Compare
Choose a tag to compare
0.8

Support for OAUTH v1

0.7

18 Oct 12:46
Compare
Choose a tag to compare
0.7
0.7.0

0.4.0

10 May 15:44
Compare
Choose a tag to compare
Set release version

BugFix release 0.3.1

02 Apr 12:58
Compare
Choose a tag to compare

This fixes a nasty bug when posting multipart file requests by reverting to an earlier AsyncHttpClient version (1.9.31)

0.3.0

01 Apr 13:55
Compare
Choose a tag to compare

Fixes for issues #9, #10, #11, #12

The major changes:

  • The RxHttpClient returns "Cold" Observables so that HTTP requests are only fired when an Observer subscribes to it
  • The Scala version of the client now also has the close() method
  • When recommended settings are not used, warnings are logged
  • Updates to the 1.9.x version of com.ning.AsyncHttpClient library, which fixes resource leak problem (#12)
  • Improved README