SHA256
14
0
forked from pool/python-rq

- Update to 1.4.2:

* RQ 1.4.2 (2020-05-26)
    + Reverted changes to hmset command which causes workers on Redis server < 4 to crash. Thanks @selwin!
    + Merged in more groundwork to enable jobs with multiple dependencies. Thanks @thomasmatecki!
  * RQ 1.4.1 (2020-05-16)
    + Default serializer now uses pickle.HIGHEST_PROTOCOL for backward compatibility reasons. Thanks @bbayles!
    + Avoid deprecation warnings on redis-py >= 3.5.0. Thanks @bbayles!
  * RQ 1.4.0 (2020-05-13)
    + Custom serializer is now supported. Thanks @solababs!
    + delay() now accepts job_id argument. Thanks @grayshirt!
    + Fixed a bug that may cause early termination of scheduled or requeued jobs. Thanks @rmartin48!
    + When a job is scheduled, always add queue name to a set containing active RQ queue names. Thanks @mdawar!
    + Added --sentry-ca-certs and --sentry-debug parameters to rq worker CLI. Thanks @kichawa!
    + Jobs cleaned up by StartedJobRegistry are given an exception info. Thanks @selwin!

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rq?expand=0&rev=11
This commit is contained in:
2020-06-11 05:07:38 +00:00
committed by Git OBS Bridge
parent 42f1fefb06
commit 286f0cb585
4 changed files with 22 additions and 4 deletions

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Thu Jun 11 05:04:56 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 1.4.2:
* RQ 1.4.2 (2020-05-26)
+ Reverted changes to hmset command which causes workers on Redis server < 4 to crash. Thanks @selwin!
+ Merged in more groundwork to enable jobs with multiple dependencies. Thanks @thomasmatecki!
* RQ 1.4.1 (2020-05-16)
+ Default serializer now uses pickle.HIGHEST_PROTOCOL for backward compatibility reasons. Thanks @bbayles!
+ Avoid deprecation warnings on redis-py >= 3.5.0. Thanks @bbayles!
* RQ 1.4.0 (2020-05-13)
+ Custom serializer is now supported. Thanks @solababs!
+ delay() now accepts job_id argument. Thanks @grayshirt!
+ Fixed a bug that may cause early termination of scheduled or requeued jobs. Thanks @rmartin48!
+ When a job is scheduled, always add queue name to a set containing active RQ queue names. Thanks @mdawar!
+ Added --sentry-ca-certs and --sentry-debug parameters to rq worker CLI. Thanks @kichawa!
+ Jobs cleaned up by StartedJobRegistry are given an exception info. Thanks @selwin!
-------------------------------------------------------------------
Wed Jun 10 16:49:11 UTC 2020 - Marcus Rueckert <mrueckert@suse.de>