Skip to content

Commit c5e3a2a

Browse files
chore(release): 1.14.5 [skip ci]
## [1.14.5](v1.14.4...v1.14.5) (2021-02-16) ### Bug Fixes * add jobId support to repeatable jobs fixes [#396](#396) ([c2dc669](c2dc669))
1 parent c2dc669 commit c5e3a2a

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

docs/gitbook/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.14.5](https://github.com/taskforcesh/bullmq/compare/v1.14.4...v1.14.5) (2021-02-16)
2+
3+
4+
### Bug Fixes
5+
6+
* add jobId support to repeatable jobs fixes [#396](https://github.com/taskforcesh/bullmq/issues/396) ([c2dc669](https://github.com/taskforcesh/bullmq/commit/c2dc6693a4546e547245bc7ec1e71b4841829619))
7+
18
## [1.14.4](https://github.com/taskforcesh/bullmq/compare/v1.14.3...v1.14.4) (2021-02-08)
29

310

docs/gitbook/api/bullmq.jobsoptions.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export interface JobsOptions
1919
| [delay?](./bullmq.jobsoptions.delay.md) | number | <i>(Optional)</i> An amount of miliseconds to wait until this job can be processed. Note that for accurate delays, worker and producers should have their clocks synchronized. |
2020
| [jobId?](./bullmq.jobsoptions.jobid.md) | string | <i>(Optional)</i> Override the job ID - by default, the job ID is a unique integer, but you can use this setting to override it. If you use this option, it is up to you to ensure the jobId is unique. If you attempt to add a job with an id that already exists, it will not be added. |
2121
| [lifo?](./bullmq.jobsoptions.lifo.md) | boolean | <i>(Optional)</i> If true, adds the job to the right of the queue instead of the left (default false) |
22+
| [prevMillis?](./bullmq.jobsoptions.prevmillis.md) | number | <i>(Optional)</i> Internal property used by repeatable jobs. |
2223
| [priority?](./bullmq.jobsoptions.priority.md) | number | <i>(Optional)</i> Ranges from 1 (highest priority) to MAX\_INT (lowest priority). Note that using priorities has a slight impact on performance, so do not use it if not required. |
2324
| [rateLimiterKey?](./bullmq.jobsoptions.ratelimiterkey.md) | string | <i>(Optional)</i> Rate limiter key to use if rate limiter enabled. |
2425
| [removeOnComplete?](./bullmq.jobsoptions.removeoncomplete.md) | boolean \| number | <i>(Optional)</i> If true, removes the job when it successfully completes When given an number, it specifies the maximum amount of jobs to keep. Default behavior is to keep the job in the completed set. |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [bullmq](./bullmq.md) &gt; [JobsOptions](./bullmq.jobsoptions.md) &gt; [prevMillis](./bullmq.jobsoptions.prevmillis.md)
4+
5+
## JobsOptions.prevMillis property
6+
7+
Internal property used by repeatable jobs.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
prevMillis?: number;
13+
```

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bullmq",
3-
"version": "1.14.4",
3+
"version": "1.14.5",
44
"description": "Queue for messages and jobs based on Redis",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)