On behalf of the RabbitMQ team I'm happy to announce that the RabbitMQ Java Client library 5.13.0 Release Candidate 1, a preview release, is available for community testing.
This is a pre-release for 5.14.0, a maintenance release with bug fixes, usability improvements, and dependency upgrades. It is compatible with 5.13.x. All users of the 5.x.x series are encouraged to test this version.
Thanks to @wangqiandeniangniang, @ByteAlex, and @Yaytay for their contribution.
* TLS handshake hangs with NIO and TLS 1.3
* Unsigned 8 bit number field type is not supported
* Change/remove usage of some deprecated JDK API
* Be more defensive about provided channelMax values
* Bump dependencies
Consult the release change for more details [1].
Dependency (Maven artifact)
Maven:
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>5.14.0.RC1</version>
</dependency>
Gradle:
compile 'com.rabbitmq:amqp-client:5.14.0.RC1'
This new version is available on our PackageCloud Milestones Maven Repository [2]. You need to add this repository explicitly to your dependency manager configuration file.
<repositories>
<repository>
<id>packagecloud-rabbitmq-maven-milestones</id>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
Gradle:
repositories {
maven {
}
}