From 928eeb6704184bbbdfe064b49599e1afc529acf2 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Sat, 16 Mar 2024 03:49:23 +0000 Subject: [PATCH] 2.3.0 Automatically generated by python-semantic-release --- docs/gitbook/python/changelog.md | 24 ++++++++++++++++++++++++ python/bullmq/__init__.py | 2 +- python/pyproject.toml | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/docs/gitbook/python/changelog.md b/docs/gitbook/python/changelog.md index 6c936d1b3f..606d81b366 100644 --- a/docs/gitbook/python/changelog.md +++ b/docs/gitbook/python/changelog.md @@ -2,6 +2,30 @@ +## v2.3.0 (2024-03-16) +### Feature +* **job:** Add log method [python] (#2476) ref #2472 ([`34946c4`](https://github.com/taskforcesh/bullmq/commit/34946c4b29cc9e7d5ae81f8fd170a2e539ac6279)) +* **job:** Add removeChildDependency method ([#2435](https://github.com/taskforcesh/bullmq/issues/2435)) ([`1151022`](https://github.com/taskforcesh/bullmq/commit/1151022e4825fbb20cf1ef6ce1ff3e7fe929de5c)) +* **worker:** Add support for naming workers ([`7ba2729`](https://github.com/taskforcesh/bullmq/commit/7ba27293615e443903cfdf7d0ff8be0052d061c4)) +* **flow:** Add ignoreDependencyOnFailure option ([#2426](https://github.com/taskforcesh/bullmq/issues/2426)) ([`c7559f4`](https://github.com/taskforcesh/bullmq/commit/c7559f4f0a7fa51764ad43b4f46bb9d55ac42d0d)) + +### Fix +* Move fast-glob and minimatch as dev-dependencies ([#2452](https://github.com/taskforcesh/bullmq/issues/2452)) ([`cf13b31`](https://github.com/taskforcesh/bullmq/commit/cf13b31ca552bcad53f40fe5668a907cf02e0a2e)) +* **worker:** Set blockTimeout as 0.001 when reach the time to get delayed jobs (#2455) fixes #2450 ([`2de15ca`](https://github.com/taskforcesh/bullmq/commit/2de15ca1019517f7ce11f3734fff316a3e4ab894)) +* **deps:** Replaced glob by fast-glob due to security advisory ([`91cf9a9`](https://github.com/taskforcesh/bullmq/commit/91cf9a9253370ea76df48c27a7e0fcf8d7504c81)) +* **sandbox:** Extend SandboxedJob from JobJsonSandbox (#2446) fixes #2439 ([`7606e36`](https://github.com/taskforcesh/bullmq/commit/7606e3611f1cc18b1585c08b0f7fd9cb90749c9c)) +* **add-job:** Fix parent job cannot be replaced error message ([#2441](https://github.com/taskforcesh/bullmq/issues/2441)) ([`1e9a13f`](https://github.com/taskforcesh/bullmq/commit/1e9a13fc0dc9de810ef75a042fbfeeae5b571ffe)) +* **flow:** Remove failed children references on auto removal ([#2432](https://github.com/taskforcesh/bullmq/issues/2432)) ([`8a85207`](https://github.com/taskforcesh/bullmq/commit/8a85207cf3c552ebab37baca3c395821b9804b37)) +* **redis-connection:** Close redis connection even when initializing (#2425) fixes #2385 ([`1bc26a6`](https://github.com/taskforcesh/bullmq/commit/1bc26a64871b85a2d1f6799a9b73b60f8bf9fa90)) + +### Documentation +* **pro:** Update changelog with v7.3.0 ([#2474](https://github.com/taskforcesh/bullmq/issues/2474)) ([`efab7af`](https://github.com/taskforcesh/bullmq/commit/efab7af98b3dd1cff070794e4cbb23133449ddcf)) +* Fix typo in elasticache section ([#2471](https://github.com/taskforcesh/bullmq/issues/2471)) ([`2436c09`](https://github.com/taskforcesh/bullmq/commit/2436c09a38890dc58dc5c4189bc1cffe98249bef)) +* **bullmq-pro:** Update changelog with v7 ([#2470](https://github.com/taskforcesh/bullmq/issues/2470)) ([`63c01e8`](https://github.com/taskforcesh/bullmq/commit/63c01e84d375fde372bbff4849cd8c37c6bb0177)) +* Add infisical in usedBy ([`ada23fa`](https://github.com/taskforcesh/bullmq/commit/ada23fa3e6ff0d38d281c9e947ee43f1f57812a2)) +* **guide:** Fix queueEvents.on failed description ([#2420](https://github.com/taskforcesh/bullmq/issues/2420)) ([`415f389`](https://github.com/taskforcesh/bullmq/commit/415f389e41ae692a6e8c3da90fdb5d58a58985eb)) +* **guide:** Fix markdown syntax in prioritized jobs ([#2421](https://github.com/taskforcesh/bullmq/issues/2421)) ([`4c54873`](https://github.com/taskforcesh/bullmq/commit/4c548735d3c2489f2bdc1cfa870703db6f11f752)) + ## v2.2.4 (2024-02-13) ### Fix * **flow:** Parent job cannot be replaced (python) ([#2417](https://github.com/taskforcesh/bullmq/issues/2417)) ([`2696ef8`](https://github.com/taskforcesh/bullmq/commit/2696ef8200058b7f616938c2166a3b0454663b39)) diff --git a/python/bullmq/__init__.py b/python/bullmq/__init__.py index 951870a3d2..69c9e6415f 100644 --- a/python/bullmq/__init__.py +++ b/python/bullmq/__init__.py @@ -3,7 +3,7 @@ A background job processor and message queue for Python based on Redis. """ -__version__ = "2.2.4" +__version__ = "2.3.0" __author__ = 'Taskforce.sh Inc.' __credits__ = 'Taskforce.sh Inc.' diff --git a/python/pyproject.toml b/python/pyproject.toml index 1408a57f29..ca43f9a737 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "bullmq" -version = "2.2.4" +version = "2.3.0" description='BullMQ for Python' readme="README.md" authors = [