Skip to content

Releases: eandersson/amqpstorm

Version 2.1.3

29 Sep 04:08
Compare
Choose a tag to compare
  • Better fix to potential recursion error in Connection.close.

Version 2.1.2

23 Sep 18:12
Compare
Choose a tag to compare
  • Fixed a potential recursion error in Connection.close.

Version 2.1.1

23 Sep 15:07
Compare
Choose a tag to compare
  • 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.0.0

29 Jul 16:32
Compare
Choose a tag to compare
  • 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

17 Jul 21:10
Compare
Choose a tag to compare
  • 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

11 Jul 16:48
Compare
Choose a tag to compare
  • Heartbeats are now only sent when there is no outgoing traffic - Thanks Tom.

Version 1.4.0

10 Jul 10:22
Compare
Choose a tag to compare
  • 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.4.0 RC1

06 Jul 21:03
Compare
Choose a tag to compare
Version 1.4.0 RC1 Pre-release
Pre-release
  • 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.

Version 1.3.4

12 Jun 10:52
Compare
Choose a tag to compare
  • 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

08 Jun 21:54
Compare
Choose a tag to compare
  • Fixed bug causing messages without a body to not be consumed properly (#16) - Thanks Adam Mills.