-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from ibnpaul/amqp-refactor
Replace AMQP publisher internals with latest internal version
- Loading branch information
Showing
8 changed files
with
1,110 additions
and
281 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Release History | ||
|
||
## 2.0.0 (2017-04-20) | ||
- Move Mixin and AMQP client to separate files | ||
- Replace AMQP connection handling code with latest internal version | ||
- Provide ability to register callbacks for ready, unavailable, and persistent failure states | ||
- Remove default AMQP URL from AMQP class, url is now a required parameter for install | ||
- Rename amqp_publish 'message' parameter to 'body' | ||
- Add properties for all AMQP states | ||
- Provide mandatory AMQP properties (app_id, correlation_id, message_id, timestamp) automatically | ||
- Mandatory properties cannot be overridden | ||
- Add unit test coverage for new functionality | ||
- Test execution requires a running AMQP server | ||
|
||
## 0.1.0 (2015-09-08) | ||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
coverage>=3.7,<4 | ||
nose>=1.3.1,<2.0.0 | ||
mock>=2.0.0,<3 | ||
wheel | ||
-r installation.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.