14
0
forked from pool/python-pika

- update to 1.0.0

* AsyncioConnection, TornadoConnection and TwistedProtocolConnection
     are no longer auto-imported
 * BlockingConnection.consume now returns (None, None, None) when inactivity
     timeout is reached
 * Python 3.7 support
 * all_channels parameter of the Channel.basic_qos method renamed to global_qos
 *  global_ parameter of the Basic.Qos spec class renamed to global_qos
 * NOTE: heartbeat_interval is removed, use heartbeat instead.
 * NOTE: The backpressure_detection option of ConnectionParameters
     and URLParameters property is REMOVED in favor of Connection.Blocked
     and Connection.Unblocked. See Connection.add_on_connection_blocked_callback

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pika?expand=0&rev=28
This commit is contained in:
2019-04-08 11:46:45 +00:00
committed by Git OBS Bridge
parent e4b53e7214
commit 7f5fb4a5b6
4 changed files with 21 additions and 5 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Apr 8 11:44:42 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 1.0.0
* AsyncioConnection, TornadoConnection and TwistedProtocolConnection
are no longer auto-imported
* BlockingConnection.consume now returns (None, None, None) when inactivity
timeout is reached
* Python 3.7 support
* all_channels parameter of the Channel.basic_qos method renamed to global_qos
* global_ parameter of the Basic.Qos spec class renamed to global_qos
* NOTE: heartbeat_interval is removed, use heartbeat instead.
* NOTE: The backpressure_detection option of ConnectionParameters
and URLParameters property is REMOVED in favor of Connection.Blocked
and Connection.Unblocked. See Connection.add_on_connection_blocked_callback
-------------------------------------------------------------------
Wed Mar 13 14:08:31 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>