Skip to content
Merged

v0.12 #187

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 30 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
# Version 0.11
# Changelog

* Add support for py-redis 3.x (#163)
* Drop support for Python 3.4 and add testing for Python 3.7 (#163)
* Fix test timings (#164)
* Allow custom context managers to see task errors (#165). Thanks @igor47.
## Version 0.12

### Breaking changes

* Drop support for redis-py 2 ([#183](https://github.com/closeio/tasktiger/pull/183))

### Other changes

* Make the `TaskTiger` instance available for the task via global state ([#170](https://github.com/closeio/tasktiger/pull/170))
* Support for custom task runners ([#175](https://github.com/closeio/tasktiger/pull/175))
* Add ability to configure a poll- vs push-method for task runners to discover new tasks ([#176](https://github.com/closeio/tasktiger/pull/176))
* `unique_key` specifies the list of kwargs to use to construct the unique key ([#180](https://github.com/closeio/tasktiger/pull/180))

### Bugfixes

* Ensure task exists in the given queue when retrieving it ([#184](https://github.com/closeio/tasktiger/pull/184))
* Clear retried executions from successful periodic tasks ([#188](https://github.com/closeio/tasktiger/pull/188))

## Version 0.11

### Breaking changes

* Drop support for Python 3.4 and add testing for Python 3.7 ([#163](https://github.com/closeio/tasktiger/pull/163))

### Other changes

* Add support for redis-py 3 ([#163](https://github.com/closeio/tasktiger/pull/163))
* Fix test timings ([#164](https://github.com/closeio/tasktiger/pull/164))
* Allow custom context managers to see task errors ([#165](https://github.com/closeio/tasktiger/pull/165)). Thanks @igor47
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ The following options are supported by both ``delay`` and the task decorator:
- ``unique_key``

If set, this implies ``unique=True`` and specifies the list of kwargs to use
use to construct the unique key. By default, all args and kwargs are
serialized and hashed.
to construct the unique key. By default, all args and kwargs are serialized
and hashed.

- ``lock``

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='tasktiger',
version='0.11',
version='0.12',
url='http://github.com/closeio/tasktiger',
license='MIT',
description='Python task queue',
Expand Down