produvia / kryptos

Kryptos AI is a virtual investment assistant that manages your cryptocurrency portfolio
http://twitter.com/kryptos_ai
MIT License
48 stars 8 forks source link

Bump rq from 0.12.0 to 1.1.0 in /core #149

Open dependabot-preview[bot] opened 4 years ago

dependabot-preview[bot] commented 4 years ago

Bumps rq from 0.12.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)! > > > ### 0.13.0 (2018-12-11) > - Compatibility with Redis 3.0. Thanks [@​dash-rai](https://github.com/dash-rai)! > - Added `job_timeout` argument to `queue.enqueue()`. This argument will eventually replace `timeout` argument. Thanks [@​selwin](https://github.com/selwin)! > - Added `job_id` argument to `BaseDeathPenalty` class. Thanks [@​loopbio](https://github.com/loopbio)! > - Fixed a bug which causes long running jobs to timeout under `SimpleWorker`. Thanks [@​selwin](https://github.com/selwin)! > - You can now override worker's name from config file. Thanks [@​houqp](https://github.com/houqp)! > - Horses will now return exit code 1 if they don't terminate properly (e.g when Redis connection is lost). Thanks [@​selwin](https://github.com/selwin)! > - Added `date_format` and `log_format` arguments to `Worker` and `rq worker` CLI. Thanks [@​shikharsg](https://github.com/shikharsg)!
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.12...v1.1.0)


Dependabot compatibility score

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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

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 close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@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) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)