summaryrefslogtreecommitdiff
path: root/Changelog
diff options
context:
space:
mode:
Diffstat (limited to 'Changelog')
-rw-r--r--Changelog58
1 files changed, 54 insertions, 4 deletions
diff --git a/Changelog b/Changelog
index 77fc48d..42dcd41 100644
--- a/Changelog
+++ b/Changelog
@@ -5,11 +5,61 @@ py-amqp is fork of amqplib used by Kombu containing additional features and impr
The previous amqplib changelog is here:
http://code.google.com/p/py-amqplib/source/browse/CHANGES
+.. _version-1.4.1:
+
+1.4.1
+=====
+:release-date: 2014-01-14 09:30 P.M UTC
+
+- Fixed error occurring when heartbeats disabled.
+
+.. _version-1.4.0:
+
+1.4.0
+=====
+:release-date: 2014-01-13 03:00 P.M UTC
+
+- Heartbeat implementation improved (Issue #6).
+
+ The new heartbeat behavior is the same approach as taken by the
+ RabbitMQ java library.
+
+ This also means that clients should preferably call the ``heartbeat_tick``
+ method more frequently (like every second) instead of using the old
+ ``rate`` argument (which is now ignored).
+
+ - Heartbeat interval is negotiated with the server.
+ - Some delay is allowed if the heartbeat is late.
+ - Monotonic time is used to keep track of the heartbeat
+ instead of relying on the caller to call the checking function
+ at the right time.
+
+ Contributed by Dustin J. Mitchell.
+
+- NoneType is now supported in tables and arrays.
+
+ Contributed by Dominik Fässler.
+
+- SSLTransport: Now handles ``ENOENT``.
+
+ Fix contributed by Adrien Guinet.
+
+.. _version-1.3.3:
+
+1.3.3
+=====
+:release-date: 2013-11-11 03:30 P.M UTC
+
+- SSLTransport: Now keeps read buffer if an exception is raised
+ (Issue #26).
+
+ Fix contributed by Tommie Gannert.
+
.. _version-1.3.2:
1.3.2
=====
-:release-date: 2013-10-29 2:00 P.M UTC
+:release-date: 2013-10-29 02:00 P.M UTC
- Message.channel is now a channel object (not the channel id).
@@ -130,7 +180,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
1.0.13
======
-:release-date: 2013-07-31 16:00 P.M BST
+:release-date: 2013-07-31 04:00 P.M BST
- Fixed problems with the SSL transport (Issue #15).
@@ -142,7 +192,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
1.0.12
======
-:release-date: 2013-06-25 14:00 P.M BST
+:release-date: 2013-06-25 02:00 P.M BST
- Fixed another Python 3 compatibility problem.
@@ -150,7 +200,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
1.0.11
======
-:release-date: 2013-04-11 18:00 P.M BST
+:release-date: 2013-04-11 06:00 P.M BST
- Fixed Python 3 incompatibility in ``amqp/transport.py``.