Skip to content

Commit 3db9e5d

Browse files
authored
docs(bullmq-pro): update changelog to v7.10.0 (#2634)
1 parent b4669d8 commit 3db9e5d

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

docs/gitbook/bullmq-pro/changelog.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# [7.10.0](https://github.com/taskforcesh/bullmq-pro/compare/v7.9.2...v7.10.0) (2024-07-06)
2+
3+
4+
### Bug Fixes
5+
6+
* **queue-getters:** consider passing maxJobs when calling getRateLimitTtl ([#2631](https://github.com/taskforcesh/bullmq/issues/2631)) fixes [#2628](https://github.com/taskforcesh/bullmq/issues/2628) ([9f6609a](https://github.com/taskforcesh/bullmq/commit/9f6609ab1856c473b2d5cf0710068ce2751d708e))
7+
* **job:** consider changing priority to 0 ([#2599](https://github.com/taskforcesh/bullmq/issues/2599)) ([4dba122](https://github.com/taskforcesh/bullmq/commit/4dba122174ab5173315fca7fdbb7454761514a53))
8+
* **priority:** consider paused state when calling getCountsPerPriority (python) ([#2609](https://github.com/taskforcesh/bullmq/issues/2609)) ([6e99250](https://github.com/taskforcesh/bullmq/commit/6e992504b2a7a2fa76f1d04ad53d1512e98add7f))
9+
* **priority:** use module instead of bit.band to keep order (python) ([#2597](https://github.com/taskforcesh/bullmq/issues/2597)) ([9ece15b](https://github.com/taskforcesh/bullmq/commit/9ece15b17420fe0bee948a5307e870915e3bce87))
10+
11+
### Features
12+
13+
* **queue:** add getCountsPerPriority method ([#2595](https://github.com/taskforcesh/bullmq/issues/2595)) ([77971f4](https://github.com/taskforcesh/bullmq/commit/77971f42b9fc425ad66e0b581e800ea429fc254e))
14+
15+
### Performance Improvements
16+
17+
* **job:** set processedBy using hmset ([#2592](https://github.com/taskforcesh/bullmq/issues/2592)) (python) ([238680b](https://github.com/taskforcesh/bullmq/commit/238680b84593690a73d542dbe1120611c3508b47))
18+
119
## [7.9.2](https://github.com/taskforcesh/bullmq-pro/compare/v7.9.1...v7.9.2) (2024-06-28)
220

321

@@ -1040,9 +1058,9 @@ Fixes https://github.com/taskforcesh/bullmq-pro-support/issues/25
10401058
## [2.4.6](https://github.com/taskforcesh/bullmq-pro/compare/v2.4.5...v2.4.6) (2022-09-06)
10411059

10421060

1043-
### Bug Fixes
1061+
### Performance Improvements
10441062

1045-
* **deps:** upgrade bullmq to 1.90.1 ([#91](https://github.com/taskforcesh/bullmq-pro/issues/91)) ([e3a6dac](https://github.com/taskforcesh/bullmq-pro/commit/e3a6dacfe58252d7373a96b54e41b18dd37367f7))
1063+
* **add-job:** handle parent split on js ([#1397](https://github.com/taskforcesh/bullmq/issues/1397)) ([566f074](https://github.com/taskforcesh/bullmq/commit/566f0747110679e5b07e7642fef793744565fffe))
10461064

10471065
## [2.4.5](https://github.com/taskforcesh/bullmq-pro/compare/v2.4.4...v2.4.5) (2022-08-30)
10481066

docs/gitbook/guide/rate-limiting.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ For this purpose, you can use the **`getRateLimitTtl`** method like this:
103103
import { Queue } from 'bullmq';
104104

105105
const queue = new Queue('myQueue', { connection });
106+
const maxJobs = 100;
106107

107-
const ttl = await queue.getRateLimitTtl();
108+
const ttl = await queue.getRateLimitTtl(maxJobs);
108109

109110
if (ttl > 0) {
110111
console.log('Queue is rate limited');

0 commit comments

Comments
 (0)