On behalf of the RabbitMQ team I'm happy to announce that the RabbitMQ
Java Client library 5.5.0 Release Candidate 1, a preview release, is
available for community testing. This preview release is likely to be
the last before a GA release in the next few days.
This is a pre-release for 5.5.0, a maintenance release with 2 new
features and a bug fix. It is compatible with 5.5.x. All users of the
5.x.x series are encouraged to test this version.
* Add traffic listener
* Connection recovery runs into timeouts when using NIO
* Provide factories to create NIO artefacts
Consult the release change for more details [1].
Dependency (Maven artifact)
Maven:
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>5.5.0.RC1</version>
</dependency>
Gradle:
compile 'com.rabbitmq:amqp-client:5.5.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>
<url>
https://packagecloud.io/rabbitmq/maven-milestones/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
Gradle:
repositories {
maven {
url "
https://packagecloud.io/rabbitmq/maven-milestones/maven2"
}
}
[1]
https://github.com/rabbitmq/rabbitmq-java-client/releases/tag/v5.5.0.RC1
[2]
https://packagecloud.io/rabbitmq/maven-milestones