- You can now view worker information - Detailed worker statistics such as failed/completed job count are now shown (requires RQ >= 0.9.0). Thanks seiryuz! - `rqstats` management command now allows you to monitor queue stats via CLI. Thanks seiryuz! - Added `/stats.json` endpoint to fetch RQ stats in JSON format, useful for monitoring purposes. Thanks seiryuz! - Fixed a crash when displaying deferring jobs. Thanks Hovercross! - Added `sentry-dsn` cli option to `rqworker` management command. Thanks efi-mk! - Improved performance when requeueing all jobs. Thanks therefromhere!
0.14.0
* Support for RQ 2.0. Thanks selwin!
0.13.1
* Support for RQ 1.14. Thanks HerrTxbias! * Added `result_ttl` and `ttl` arguments to `scheduler.cron()`. Thanks marcelblijleven!
0.13.0
- Compatibility with Redis 3.0. Thanks dash-rai! - Added `job_timeout` argument to `queue.enqueue()`. This argument will eventually replace `timeout` argument. Thanks selwin! - Added `job_id` argument to `BaseDeathPenalty` class. Thanks loopbio! - Fixed a bug which causes long running jobs to timeout under `SimpleWorker`. Thanks selwin! - You can now override worker's name from config file. Thanks houqp! - Horses will now return exit code 1 if they don't terminate properly (e.g when Redis connection is lost). Thanks selwin! - Added `date_format` and `log_format` arguments to `Worker` and `rq worker` CLI. Thanks shikharsg!
0.12.0
- Added support for Python 3.7. Since `async` is a keyword in Python 3.7, `Queue(async=False)` has been changed to `Queue(is_async=False)`. The `async` keyword argument will still work, but raises a `DeprecationWarning`. Thanks dchevell!
0.11.0
- `Worker` now periodically sends heartbeats and checks whether child process is still alive while performing long running jobs. Thanks Kriechi! - `Job.create` now accepts `timeout` in string format (e.g `1h`). Thanks theodesp! - `worker.main_work_horse()` should exit with return code `0` even if job execution fails. Thanks selwin! - `job.delete(delete_dependents=True)` will delete job along with its dependents. Thanks olingerc! - Other minor fixes and documentation updates.