Skip to content

Releases: rsocket/rsocket-java

0.11.5: Fix multiple calls to dispose in FragmentationDuplexConnection, allow…

02 Aug 17:36
Compare
Choose a tag to compare
… fragmentation to be disabled until leaks are fixed

Null Pointer Fix

27 Jul 04:37
78524f2
Compare
Choose a tag to compare

Prevents null pointer exception from being throw when Frame is being released

Use ReferenceCountUtil.safeRelease instead of release

16 May 20:18
Compare
Choose a tag to compare
0.11.3

Use ReferenceCountUtil.safeRelease instead of release (#505)

Fix a few potential leaks

15 May 21:50
Compare
Choose a tag to compare
0.11.2

Fix a few potential leaks (#504)

Maven Dependency Improvements

11 May 19:23
bf14aa3
Compare
Choose a tag to compare

Previously, an update the build system resulted in the Maven dependencies being aggressively calculated, before each project add dependencies to itself. This change updates the ordering of this calculation such that it happens after each project configures itself. In addition, this change goes through each project and ensures that the dependencies are scoped appropriately in order to achieve the a minimal and accurate Maven POM.

Update dependencies, various improvements

09 May 22:40
5fedb1d
Compare
Choose a tag to compare

Remove nested flatMap in RSocketFactory (#493)
Local Transport Improvements (#489)
Fix Reference Count Leak (#488)
Migration of Spectator to Micrometer (#486)
Fragmentation (#481)

Update dependencies, cleanup RSocketClient/Server implementation

12 Feb 18:19
Compare
Choose a tag to compare
Simplify RSocketClient/Server implementation and avoid unnecessary fl…

…atMap (#467)

Replace IntObjectHashMap with NonBlockingHashMapLong

03 Jan 08:57
Compare
Choose a tag to compare

Replace IntObjectHashMap with NonBlockingHashMapLong - prevents an exception being thrown when cleaning up connections on the RSocketClient.

Replace IntObjectHashMap with NonBlockingHashMapLong

03 Jan 08:57
Compare
Choose a tag to compare

Netty's IntObjectHashMap does not have thread safe iterators, replace with NonBlockingHashMapLong from JCTools so connections get cleaned up reliably

Closeable interface implements Disposable

23 Dec 21:17
Compare
Choose a tag to compare

Closeable implements Disposable now as removes the close method that returns a Mono.