File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # Version 0.11
1+ # Changelog
22
3- * Add support for py-redis 3.x (#163 )
4- * Drop support for Python 3.4 and add testing for Python 3.7 (#163 )
5- * Fix test timings (#164 )
6- * Allow custom context managers to see task errors (#165 ). Thanks @igor47 .
3+ ## Version 0.12
4+
5+ ### Breaking changes
6+
7+ * Drop support for redis-py 2 ([ #183 ] ( https://github.com/closeio/tasktiger/pull/183 ) )
8+
9+ ### Other changes
10+
11+ * Make the ` TaskTiger ` instance available for the task via global state ([ #170 ] ( https://github.com/closeio/tasktiger/pull/170 ) )
12+ * Support for custom task runners ([ #175 ] ( https://github.com/closeio/tasktiger/pull/175 ) )
13+ * Add ability to configure a poll- vs push-method for task runners to discover new tasks ([ #176 ] ( https://github.com/closeio/tasktiger/pull/176 ) )
14+ * ` unique_key ` specifies the list of kwargs to use to construct the unique key ([ #180 ] ( https://github.com/closeio/tasktiger/pull/180 ) )
15+
16+ ### Bugfixes
17+
18+ * Ensure task exists in the given queue when retrieving it ([ #184 ] ( https://github.com/closeio/tasktiger/pull/184 ) )
19+ * Clear retried executions from successful periodic tasks ([ #188 ] ( https://github.com/closeio/tasktiger/pull/188 ) )
20+
21+ ## Version 0.11
22+
23+ ### Breaking changes
24+
25+ * Drop support for Python 3.4 and add testing for Python 3.7 ([ #163 ] ( https://github.com/closeio/tasktiger/pull/163 ) )
26+
27+ ### Other changes
28+
29+ * Add support for redis-py 3 ([ #163 ] ( https://github.com/closeio/tasktiger/pull/163 ) )
30+ * Fix test timings ([ #164 ] ( https://github.com/closeio/tasktiger/pull/164 ) )
31+ * Allow custom context managers to see task errors ([ #165 ] ( https://github.com/closeio/tasktiger/pull/165 ) ). Thanks @igor47
Original file line number Diff line number Diff line change @@ -272,8 +272,8 @@ The following options are supported by both ``delay`` and the task decorator:
272272- ``unique_key ``
273273
274274 If set, this implies ``unique=True `` and specifies the list of kwargs to use
275- use to construct the unique key. By default, all args and kwargs are
276- serialized and hashed.
275+ to construct the unique key. By default, all args and kwargs are serialized
276+ and hashed.
277277
278278- ``lock ``
279279
Original file line number Diff line number Diff line change 99
1010setup (
1111 name = 'tasktiger' ,
12- version = '0.11 ' ,
12+ version = '0.12 ' ,
1313 url = 'http://github.com/closeio/tasktiger' ,
1414 license = 'MIT' ,
1515 description = 'Python task queue' ,
You can’t perform that action at this time.
0 commit comments