33 Release History
44===============
55
6- 0.2.0 (unreleased )
6+ 0.2.0 (2018-07-25 )
77++++++++++++++++++
88
99- **Breaking change ** `MessageSender.send_async ` has been renamed to `MessageSender.send `, and
@@ -12,7 +12,7 @@ Release History
1212 MessageSenderAsync, and MessageReceiverAsync in favour of new `error_policy ` argument.
1313- Added ErrorPolicy class to determine how the client should respond to both generic AMQP errors
1414 and custom or vendor-specific errors. A default policy will be used, but a custom policy can
15- be added to and client by using new `error_policy ` argument. Value must be either an instance
15+ be added to any client by using a new `error_policy ` argument. Value must be either an instance
1616 or subclass of ErrorPolicy.
1717
1818 - The `error_policy ` argument has also been added to MessageSender, MessageReceiver, Connection, and their
@@ -24,10 +24,10 @@ Release History
2424 three properties: `retry ` (a boolean to determine whether the error is retryable), `backoff `
2525 (an integer to determine how long the client should wait before retrying, default is 0) and
2626 `increment_retries ` (a boolean to determine whether the error should count against the maximum
27- retry attempts). Currently `backoff ` and `increment_retries ` are only considered for message
28- send failures.
27+ retry attempts, default is ` True ` ). Currently `backoff ` and `increment_retries ` are only
28+ considered for message send failures.
2929 - Added `VendorConnectionClose ` and `VendorLinkDetach ` exceptions for non-standard (unrecognized)
30- connection errors.
30+ connection/link errors.
3131
3232- Added support for HTTP proxy configuration.
3333- Added support for running async clients synchronously.
@@ -36,7 +36,7 @@ Release History
3636 disabled by default, to enable, set the `keep_alive_interval ` argument on the client to
3737 an integer representing the number of seconds between connection pings.
3838- Added support for catching a Connection CLOSE event.
39- - Added support for `Connection.sleep ` and `AsyncConnection .sleep_async ` to pause the connection.
39+ - Added support for `Connection.sleep ` and `ConnectionAsync .sleep_async ` to pause the connection.
4040- Added support for surfacing message disposition delivery-state (with error information).
4141- Added `constants.ErrorCodes ` enum to map standard AMQP error conditions. This replaces the previous
4242 `constants.ERROR_CONNECTION_REDIRECT ` and `constants.ERROR_LINK_REDIRECT ` which are now both
0 commit comments