Skip to content

Latest commit

 

History

History
107 lines (87 loc) · 3.94 KB

CHANGELOG.rst

File metadata and controls

107 lines (87 loc) · 3.94 KB

Changelog

Version 2.2.1

  • Fixed potential Channel leak [#36] - Thanks Adam Mills.
  • Fixed threading losing select module during python shutdown [#37] - Thanks Adam Mills.

Version 2.2.0

  • Connection.close should now be more responsive.
  • Channels are now reset when re-opening an existing connection.
  • Re-wrote large portions of the Test suit.

Version 2.1.4

  • Added parameter to override auto-decode on incoming Messages - Thanks Travis Griggs.
  • Fixed a rare bug that could cause the consumer to get stuck if the connection unexpectedly dies - Thanks Connor Wolf.

Version 2.1.3

  • Fixed a potential recursion error in Connection.close.

Version 2.1.1

  • Reduced default TCP Timeout from 30s to 10s.
  • Connection Open/Close timeout is now three times the value of TCP Timeout.
  • Connection will now wait for a response from the remote server before closing.

Version 2.1.0

Version 2.0.0

  • Messages are now delivered as Message objects by default.
    • to_tuple and to_dict are now set to False by default.

      This is a breaking change that affects the following function:

      • channel.process_data_events
      • channel.start_consuming
      • channel.basic.get

Version 1.5.0

  • Added support for Channel.Tx (Server local transactions). [#27]
  • Added support for Heartbeat interval 0 (disabled). [#26]
  • Added Python implementation to platform string, e.g. Python 2.7.0 (Jython).
  • Fixed Jython bug. [#25]
  • Fixed incorrect log line for the Connection and Channel Context Manager.
  • Removed TCP Keepalive.

Version 1.4.1

  • Heartbeats are now only sent when there is no outgoing traffic - Thanks Tom.

Version 1.4.0

  • 100% Unit-test Coverage!
  • All classes are now slotted.
  • New improved Heartbeat Monitor.
    • If no data has been sent within the Heartbeat interval, the client will now send a Heartbeat to the server - Thanks David Schneider.
  • Reduced default RPC timeout from 120s to 60s.

Version 1.3.4

  • Dropped Python 3.2 Support.
  • Fixed incorrect SSL warning when adding heartbeat or timeout to uri string [#18] - Thanks Adam Mills.

Version 1.3.3

  • Fixed bug causing messages without a body to not be consumed properly [#16] - Thanks Adam Mills.

Version 1.3.2

  • Fixed minor bug in the Poller error handling.
  • Fixed issue where network corruption could caused a connection error to throw the wrong exception.

Version 1.3.1

  • Fixed SSL bug that could trigger an exception when running multiple threads [#14] - Thanks Adam Mills.
  • Fixed bug when using channel.basic.get to retrieve large payloads.
  • Reduced default RPC timeout from 360s to 120s.

Version 1.3.0

  • Removed noisy logging.

  • Fixed Runtime exception caused by listener trying to join itself [#11] - Thanks ramonz.

  • Channels are no longer closed after RabbitMQ throws a recoverable exception.

  • Added Error mapping based on the AMQP 0.9.1 specifications (when applicable).
    Introduced three new variables to the AMQPStorm Exceptions.
    • error_code: This provides HTTP style error codes based on the AMQP Specification.
    • error_type: This provides the full AMQP Error name; e.g. NO-ROUTE.
    • documentation: This provides the official AMQP Specification documentation string.

    These variables are available on all AMQPStorm exceptions, but if no error code was provided by RabbitMQ, they will be empty.

    Usage:
    except AMQPChannelError as why:
    if why.error_code == 312:

    self.channel.queue.declare(queue_name)