Skip to content

Releases: micronaut-projects/micronaut-rabbitmq

Micronaut RabbitMQ 2.3.0

14 Dec 16:04
Compare
Choose a tag to compare

v2.3.0 (2020-12-14)

Full Changelog

Main Changes:

  • Upgrade to RabbitMQ Java Client to 5.10.0

Merged pull requests:

Micronaut RabbitMQ 2.2.1

04 Dec 14:15
Compare
Choose a tag to compare

v2.2.1 (2020-12-04)

Full Changelog

Closed issues:

  • RabbitMQ Health Indicator fails to instantiate when multiple servers are configured #168
  • RabbitMQ Health check does not support more than one connection #128
  • DefaultRabbitListenerExceptionHandler conflicts with other RabbitListenerExceptionHandler implementations #114

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

  • RabbitMQ Health check does not support more than one connection (#128)

Micronaut RabbitMQ 2.2.0

18 Nov 16:34
Compare
Choose a tag to compare

v2.2.0 (2020-11-18)

Full Changelog

Main Changes:

  • Upgrade to Micronaut 2.1.4

Merged pull requests:

Micronaut RabbitMQ 2.1.0

10 Sep 10:14
Compare
Choose a tag to compare
  • Bump up Kotlin to 1.4.0 from 1.3.72

Micronaut RabbitMQ 2.0.0

26 Jun 12:45
Compare
Choose a tag to compare

v2.0.0 (2020-06-26)

Full Changelog

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

Micronaut RabbitMQ v2.0.0.RC1

15 Jun 13:51
Compare
Choose a tag to compare
Pre-release

v2.0.0.RC1 (2020-06-10)

Full Changelog

Closed issues:

  • Update what's new docs for 2.0 #72

Merged pull requests:

* This Changelog was automatically generated by github_changelog_generator

Micronaut RabbitMQ 2.0.0.M1

28 May 16:35
Compare
Choose a tag to compare
Pre-release

v2.0.0.M1 (2020-05-28)

Full Changelog

Breaking changes:

Merged pull requests:

Micronaut RabbitMQ 1.2.0

28 May 10:36
Compare
Choose a tag to compare

v1.2.0 (2020-05-28)

This release requires Micronaut 1.3, and updates the RabbitMQ version to 5.9

Full Changelog

Closed issues:

  • Could not convert the publisher acknowledgement response to the return type of the method #66

Merged pull requests:

v1.0.0.RC1

10 Sep 04:34
Compare
Choose a tag to compare
  • Configuration surrounding defining connections has been expanded to support a list of addresses for fail over and multiple connections.
  • Consumers can now define which connection and executor to use.
  • Publishers can now define which connection to use.
  • Support for specifying the prefetch limit has been added.

v1.1.0.M2

10 Sep 04:32
Compare
Choose a tag to compare
  • The api:configuration.rabbitmq.serdes.RabbitMessageSerDes[] api has been changed significantly to support setting properties before publishing and deserializing complex types.
  • Messages published using the default JSON serialization will now have their content type set to "application/json" if it was not set already.
  • A consumer can now bind to the Channel used to consume messages
  • Support for Direct Reply-To (RPC) has been added. See <<rpc, the documentation>> for more information.
  • A new base class for doing channel initialization has been added to make the process easier. See <<initialization, the documentation>> for more information.
  • Support for acknowledging messages with a Boolean return type has been removed.
  • Publisher acknowledgements will now be executed on the IO thread pool.