Closed dependabot-preview[bot] closed 4 years ago
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version
or @dependabot ignore this minor version
.
If you change your mind, just re-open this PR and I'll resolve any conflicts on it.
Bumps rq from 0.13.0 to 1.1.0.
Release notes
*Sourced from [rq's releases](https://github.com/nvie/rq/releases).* > ## 1.0 > Backward incompatible changes: > > - `job.status` has been removed. Use `job.get_status()` and `job.set_status()` instead. Thanks [@selwin](https://github.com/selwin)! > > - `FailedQueue` has been replaced with `FailedJobRegistry`: > * `get_failed_queue()` function has been removed. Please use `FailedJobRegistry(queue=queue)` instead. > * `move_to_failed_queue()` has been removed. > * RQ now provides a mechanism to automatically cleanup failed jobs. By default, failed jobs are kept for 1 year. > * Thanks [@selwin](https://github.com/selwin)! > > - RQ's custom job exception handling mechanism has also changed slightly: > * RQ's default exception handling mechanism (moving jobs to `FailedJobRegistry`) can be disabled by doing `Worker(disable_default_exception_handler=True)`. > * Custom exception handlers are no longer executed in reverse order. > * Thanks [@selwin](https://github.com/selwin)! > > - `Worker` names are now randomized. Thanks [@selwin](https://github.com/selwin)! > > - `timeout` argument on `queue.enqueue()` has been deprecated in favor of `job_timeout`. Thanks [@selwin](https://github.com/selwin)! > > - Sentry integration has been reworked: > * RQ now uses the new [sentry-sdk](https://pypi.org/project/sentry-sdk/) in place of the deprecated [Raven](https://pypi.org/project/raven/) library > * RQ will look for the more explicit `RQ_SENTRY_DSN` environment variable instead of `SENTRY_DSN` before instantiating Sentry integration > * Thanks [@selwin](https://github.com/selwin)! > > - Fixed `Worker.total_working_time` accounting bug. Thanks [@selwin](https://github.com/selwin)!Changelog
*Sourced from [rq's changelog](https://github.com/rq/rq/blob/master/CHANGES.md).* > ### RQ 1.1.0 (2019-07-20) > > - Added `max_jobs` to `Worker.work` and `--max-jobs` to `rq worker` CLI. Thanks [@perobertson](https://github.com/perobertson)! > - Passing `--disable-job-desc-logging` to `rq worker` now does what it's supposed to do. Thanks [@janierdavila](https://github.com/janierdavila)! > - `StartedJobRegistry` now properly handles jobs with infinite timeout. Thanks [@macintoshpie](https://github.com/macintoshpie)! > - `rq info` CLI command now cleans up registries when it first runs. Thanks [@selwin](https://github.com/selwin)! > - Replaced the use of `procname` with `setproctitle`. Thanks [@j178](https://github.com/j178)! > > > ### 1.0 (2019-04-06) > Backward incompatible changes: > > - `job.status` has been removed. Use `job.get_status()` and `job.set_status()` instead. Thanks [@selwin](https://github.com/selwin)! > > - `FailedQueue` has been replaced with `FailedJobRegistry`: > * `get_failed_queue()` function has been removed. Please use `FailedJobRegistry(queue=queue)` instead. > * `move_to_failed_queue()` has been removed. > * RQ now provides a mechanism to automatically cleanup failed jobs. By default, failed jobs are kept for 1 year. > * Thanks [@selwin](https://github.com/selwin)! > > - RQ's custom job exception handling mechanism has also changed slightly: > * RQ's default exception handling mechanism (moving jobs to `FailedJobRegistry`) can be disabled by doing `Worker(disable_default_exception_handler=True)`. > * Custom exception handlers are no longer executed in reverse order. > * Thanks [@selwin](https://github.com/selwin)! > > - `Worker` names are now randomized. Thanks [@selwin](https://github.com/selwin)! > > - `timeout` argument on `queue.enqueue()` has been deprecated in favor of `job_timeout`. Thanks [@selwin](https://github.com/selwin)! > > - Sentry integration has been reworked: > * RQ now uses the new [sentry-sdk](https://pypi.org/project/sentry-sdk/) in place of the deprecated [Raven](https://pypi.org/project/raven/) library > * RQ will look for the more explicit `RQ_SENTRY_DSN` environment variable instead of `SENTRY_DSN` before instantiating Sentry integration > * Thanks [@selwin](https://github.com/selwin)! > > - Fixed `Worker.total_working_time` accounting bug. Thanks [@selwin](https://github.com/selwin)!Commits
- [`dc63b36`](https://github.com/rq/rq/commit/dc63b362e2bfe0cf290fc66808e1be70190e6707) Bump version to 1.1.0 - [`f50e60d`](https://github.com/rq/rq/commit/f50e60d2f48a84c142830ba70b0187a2762991c0) Updated CHANGES.md - [`d0884be`](https://github.com/rq/rq/commit/d0884be9296cf2cba2428d5d90cdeda65a550296) otp: reuse utcnow ([#1115](https://github-redirect.dependabot.com/nvie/rq/issues/1115)) - [`f9d42e8`](https://github.com/rq/rq/commit/f9d42e8a177eb4356cc5dc29de6a4f410127ed1f) Added logging statements to handle_job_success and handle_job_failure ([#1112](https://github-redirect.dependabot.com/nvie/rq/issues/1112)) - [`b14c4e2`](https://github.com/rq/rq/commit/b14c4e288d5f1b74f16c42f381a6c8993ee9c122) Added checks for 0 ttl ([#1110](https://github-redirect.dependabot.com/nvie/rq/issues/1110)) - [`8df4e8e`](https://github.com/rq/rq/commit/8df4e8ecfae29b0b490769d3616c362606c192fb) Update worker document for setproctitle feature ([#1109](https://github-redirect.dependabot.com/nvie/rq/issues/1109)) - [`b52bad3`](https://github.com/rq/rq/commit/b52bad3ad034293185e72090a23817a2d23bc957) Replace procname with setproctitle ([#1108](https://github-redirect.dependabot.com/nvie/rq/issues/1108)) - [`549648b`](https://github.com/rq/rq/commit/549648bd1bd3e2d8e27c2a2d3ac1628f9252e5fe) rq info management command now cleans up registries when first run ([#1107](https://github-redirect.dependabot.com/nvie/rq/issues/1107)) - [`905824e`](https://github.com/rq/rq/commit/905824e8d8e3cc9a9b27526c053a81cfe61cbd94) Improve worker start/stop logging messages ([#1105](https://github-redirect.dependabot.com/nvie/rq/issues/1105)) - [`e1c135d`](https://github.com/rq/rq/commit/e1c135d4deece853596a15a7d9bc0f218f6f9560) add the ability to have the worker stop executing after a max amount of jobs ... - Additional commits viewable in [compare view](https://github.com/nvie/rq/compare/v0.13...v1.1.0)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it). To ignore the version in this PR you can just close it - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.