Skip to content

Commit

Permalink
Update version history
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavin M. Roy committed May 16, 2013
1 parent ed45986 commit 07a05dd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,22 @@ Using Pika
-------------------
**Major Changes**

- IPv6 Support with thanks to Alessandro Tagliapietra for initial prototype
- Officially remove support for <= Python 2.5 even though it was broken already
- Drop pika.simplebuffer.SimpleBuffer in favor of the Python stdlib collections.deque object
- New default object for receiving content is a "bytes" object which is a str wrapper in Python 2, but paves way for Python 3 support
- New "Raw" mode for frame decoding content frames (#334) addresses issues #331, #229 added by Garth Williamson
- Connection and Disconnection logic refactored, allowing for cleaner separation of protocol logic and socket handling logic as well as connection state management
- IPv6 Support with thanks to Alessandro Tagliapietra for initial prototype
- New "on_open_error_callback" argument in creating connection objects and new Connection.add_on_open_error_callback method
- Support for all AMQP field types, using protocol specified signed/unsigned unpacking
- New Connection.connect method to cleanly allow for reconnection code
- Support for all AMQP field types, using protocol specified signed/unsigned unpacking

**Backwards Incompatible Changes**

- Method signature for creating connection objects has new argument "on_open_error_callback" which is positionally before "on_close_callback"
- Internal callback variable names in connection.Connection have been renamed and constants used. If you relied on any of these callbacks outside of their internal use, make sure to check out the new constants.
- Connection._connect method, which was an internal only method is now deprecated and will raise a DeprecationWarning. If you relied on this method, your code needs to change.
- pika.simplebuffer has been removed

**Bugfixes**

Expand All @@ -61,6 +64,7 @@ Using Pika

**Other**

- Refactored documentation
- Added Twisted Adapter example (#314) by nolinksoft

Authors
Expand Down
8 changes: 6 additions & 2 deletions docs/version_history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,22 @@ Version History
-------------------
**Major Changes**

- IPv6 Support with thanks to Alessandro Tagliapietra for initial prototype
- Officially remove support for <= Python 2.5 even though it was broken already
- Drop pika.simplebuffer.SimpleBuffer in favor of the Python stdlib collections.deque object
- New default object for receiving content is a "bytes" object which is a str wrapper in Python 2, but paves way for Python 3 support
- New "Raw" mode for frame decoding content frames (#334) addresses issues #331, #229 added by Garth Williamson
- Connection and Disconnection logic refactored, allowing for cleaner separation of protocol logic and socket handling logic as well as connection state management
- IPv6 Support with thanks to Alessandro Tagliapietra for initial prototype
- New "on_open_error_callback" argument in creating connection objects and new Connection.add_on_open_error_callback method
- Support for all AMQP field types, using protocol specified signed/unsigned unpacking
- New Connection.connect method to cleanly allow for reconnection code
- Support for all AMQP field types, using protocol specified signed/unsigned unpacking

**Backwards Incompatible Changes**

- Method signature for creating connection objects has new argument "on_open_error_callback" which is positionally before "on_close_callback"
- Internal callback variable names in connection.Connection have been renamed and constants used. If you relied on any of these callbacks outside of their internal use, make sure to check out the new constants.
- Connection._connect method, which was an internal only method is now deprecated and will raise a DeprecationWarning. If you relied on this method, your code needs to change.
- pika.simplebuffer has been removed

**Bugfixes**

Expand All @@ -33,6 +36,7 @@ Version History

**Other**

- Refactored documentation
- Added Twisted Adapter example (#314) by nolinksoft

0.9.12 - 2013-03-18
Expand Down

0 comments on commit 07a05dd

Please sign in to comment.