Skip to content

Commit

Permalink
chore(release): 1.14.5 [skip ci]
Browse files Browse the repository at this point in the history
## [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))
  • Loading branch information
semantic-release-bot committed Feb 16, 2021
1 parent c2dc669 commit c5e3a2a
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
7 changes: 7 additions & 0 deletions docs/gitbook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.14.5](https://github.com/taskforcesh/bullmq/compare/v1.14.4...v1.14.5) (2021-02-16)


### Bug Fixes

* add jobId support to repeatable jobs fixes [#396](https://github.com/taskforcesh/bullmq/issues/396) ([c2dc669](https://github.com/taskforcesh/bullmq/commit/c2dc6693a4546e547245bc7ec1e71b4841829619))

## [1.14.4](https://github.com/taskforcesh/bullmq/compare/v1.14.3...v1.14.4) (2021-02-08)


Expand Down
1 change: 1 addition & 0 deletions docs/gitbook/api/bullmq.jobsoptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export interface JobsOptions
| [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. |
| [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. |
| [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) |
| [prevMillis?](./bullmq.jobsoptions.prevmillis.md) | number | <i>(Optional)</i> Internal property used by repeatable jobs. |
| [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. |
| [rateLimiterKey?](./bullmq.jobsoptions.ratelimiterkey.md) | string | <i>(Optional)</i> Rate limiter key to use if rate limiter enabled. |
| [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. |
Expand Down
13 changes: 13 additions & 0 deletions docs/gitbook/api/bullmq.jobsoptions.prevmillis.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [bullmq](./bullmq.md) &gt; [JobsOptions](./bullmq.jobsoptions.md) &gt; [prevMillis](./bullmq.jobsoptions.prevmillis.md)

## JobsOptions.prevMillis property

Internal property used by repeatable jobs.

<b>Signature:</b>

```typescript
prevMillis?: number;
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bullmq",
"version": "1.14.4",
"version": "1.14.5",
"description": "Queue for messages and jobs based on Redis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit c5e3a2a

Please sign in to comment.