All Versions
31
Latest Version
Avg Release Cycle
111 days
Latest Release
1420 days ago

Changelog History
Page 1

  • v0.20.0 Changes

    May 29, 2020
    • fromURI now activates TLS if the URI starts with ampqs://. Previously it only changed the port, without activating TLS.
    • ๐Ÿ‘ fromURI now supports multi-broker URIs in the form of amqp://user:pass@host-1:port-2,host-2:port-2/vhost
  • v0.19.1 Changes

    January 14, 2020
    • โž• add nackMsg and nackEnv methods
  • v0.19.0 Changes

    December 18, 2019
    • ๐Ÿ”„ change FVString to be binary instead of UTF-8 encoded
  • v0.18.3 Changes

    July 07, 2019
    • respond to channel.close messages from the server with channel.close_ok
  • v0.18.2 Changes

    April 22, 2019
    • ๐Ÿ‘Œ support connection 0.3 and drop support for network < 2.6
  • v0.18.1 Changes

    September 28, 2017
    • ๐Ÿ†• new function addConnectionBlockedHandler to be notified when the connection is blocked (due to the server being resource-constrained)
  • v0.18.0 Changes

    September 27, 2017
    • ๐Ÿ‘ป ConnectionClosedException and ChannelClosedException now specify whether the close was normal (user-initiated) or abnormal (caused by an AMQP exception)
    • ๐Ÿ–จ channels that are abnormally closed and have no exception handler (set using addChannelExceptionHandler) will now print the error to stderr
    • ๐Ÿ†• new function getServerProperties to get the RabbitMQ server-properties
    • consumeMsgs' now allows setting a consumer-cancellation-callback
  • v0.17.0 Changes

    September 14, 2017
    • When the server asynchronously closed a channel, this was (erroneously) internally represented as a ConnectionClosedException. It is now represented as a ChannelClosedException. This could affect you if you explicitly match on ConnectionClosedException or ChannelClosedException in your code, for example when using addChannelExceptionHandler.
  • v0.16.0 Changes

    August 04, 2017
    • ๐Ÿ†• new coName field in ConnectionOpts to specify a custom name that will be displayed in the RabbitMQ web interface
  • v0.15.1 Changes

    June 30, 2017
    • export the AckType data-type and constructors