Skip to content

Commit

Permalink
chore(release): 1.20.4 [skip ci]
Browse files Browse the repository at this point in the history
## [1.20.4](v1.20.3...v1.20.4) (2021-04-23)

### Bug Fixes

* remove internal deps on barrel fixes [#469](#469) ([#495](#495)) ([60dbeed](60dbeed))
  • Loading branch information
semantic-release-bot committed Apr 23, 2021
1 parent 60dbeed commit 9cf71f6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
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.20.4](https://github.com/taskforcesh/bullmq/compare/v1.20.3...v1.20.4) (2021-04-23)


### Bug Fixes

* remove internal deps on barrel fixes [#469](https://github.com/taskforcesh/bullmq/issues/469) ([#495](https://github.com/taskforcesh/bullmq/issues/495)) ([60dbeed](https://github.com/taskforcesh/bullmq/commit/60dbeed7ff1d9b6cb0e35590713fee8a7be09477))

## [1.20.3](https://github.com/taskforcesh/bullmq/compare/v1.20.2...v1.20.3) (2021-04-23)


Expand Down
9 changes: 2 additions & 7 deletions docs/gitbook/api/bullmq.queue.getrepeatablejobs.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,7 @@ getRepeatableJobs(start?: number, end?: number, asc?: boolean): Promise<{
key: string;
name: string;
id: string;
endDate: number; /**
* Drains the queue, i.e., removes all jobs that are waiting
* or delayed, but not active, completed or failed.
*
* TODO: Convert to an atomic LUA script.
*/
endDate: number;
tz: string;
cron: string;
next: number;
Expand All @@ -33,5 +28,5 @@ getRepeatableJobs(start?: number, end?: number, asc?: boolean): Promise<{

<b>Returns:</b>

Promise&lt;{ key: string; name: string; id: string; endDate: number; /\*\* \* Drains the queue, i.e., removes all jobs that are waiting \* or delayed, but not active, completed or failed. \* \* TODO: Convert to an atomic LUA script. \*/ tz: string; cron: string; next: number; }\[\]&gt;
Promise&lt;{ key: string; name: string; id: string; endDate: number; tz: string; cron: string; next: number; }\[\]&gt;

4 changes: 2 additions & 2 deletions docs/gitbook/api/bullmq.scripts.movetoactive.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<b>Signature:</b>

```typescript
static moveToActive<T, R, N extends string>(worker: Worker<T, R, N>, token: string, jobId?: string): Promise<[] | [JobJsonRaw, string] | [number, undefined]>;
static moveToActive<T, R, N extends string>(worker: Worker<T, R, N>, token: string, jobId?: string): Promise<[] | [number, undefined] | [JobJsonRaw, string]>;
```
## Parameters
Expand All @@ -20,5 +20,5 @@ static moveToActive<T, R, N extends string>(worker: Worker<T, R, N>, token: stri
<b>Returns:</b>
Promise&lt;\[\] \| \[[JobJsonRaw](./bullmq.jobjsonraw.md)<!-- -->, string\] \| \[number, undefined\]&gt;
Promise&lt;\[\] \| \[number, undefined\] \| \[[JobJsonRaw](./bullmq.jobjsonraw.md)<!-- -->, string\]&gt;
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.20.3",
"version": "1.20.4",
"description": "Queue for messages and jobs based on Redis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 9cf71f6

Please sign in to comment.