Skip to content

Commit 0e0540e

Browse files
chore(release): 1.15.1 [skip ci]
## [1.15.1](v1.15.0...v1.15.1) (2021-03-19) ### Bug Fixes * **obliterate:** safer implementation ([82f571f](82f571f))
1 parent 82f571f commit 0e0540e

5 files changed

+13
-6
lines changed

docs/gitbook/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.15.1](https://github.com/taskforcesh/bullmq/compare/v1.15.0...v1.15.1) (2021-03-19)
2+
3+
4+
### Bug Fixes
5+
6+
* **obliterate:** safer implementation ([82f571f](https://github.com/taskforcesh/bullmq/commit/82f571f2548c61c776b897fd1c5050bb09c8afca))
7+
18
# [1.15.0](https://github.com/taskforcesh/bullmq/compare/v1.14.8...v1.15.0) (2021-03-18)
29

310

docs/gitbook/api/bullmq.queue.obliterate.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@
88

99
```typescript
1010
obliterate(opts?: {
11-
force: boolean;
11+
force?: boolean;
12+
count?: number;
1213
}): Promise<void>;
1314
```
1415

1516
## Parameters
1617

1718
| Parameter | Type | Description |
1819
| --- | --- | --- |
19-
| opts | { force: boolean; } | |
20+
| opts | { force?: boolean; count?: number; } | |
2021

2122
<b>Returns:</b>
2223

docs/gitbook/api/bullmq.scripts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export declare class Scripts
2828
| [moveToFailedArgs(queue, job, failedReason, removeOnFailed, token, fetchNext)](./bullmq.scripts.movetofailedargs.md) | <code>static</code> | |
2929
| [moveToFinished(queue, job, val, propVal, shouldRemove, target, token, fetchNext)](./bullmq.scripts.movetofinished.md) | <code>static</code> | |
3030
| [moveToFinishedArgs(queue, job, val, propVal, shouldRemove, target, token, fetchNext)](./bullmq.scripts.movetofinishedargs.md) | <code>static</code> | |
31-
| [obliterate(queue, cursor, opts)](./bullmq.scripts.obliterate.md) | <code>static</code> | |
31+
| [obliterate(queue, opts)](./bullmq.scripts.obliterate.md) | <code>static</code> | |
3232
| [pause(queue, pause)](./bullmq.scripts.pause.md) | <code>static</code> | |
3333
| [promote(queue, jobId)](./bullmq.scripts.promote.md) | <code>static</code> | |
3434
| [remove(queue, jobId)](./bullmq.scripts.remove.md) | <code>static</code> | |

docs/gitbook/api/bullmq.scripts.obliterate.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<b>Signature:</b>
88

99
```typescript
10-
static obliterate(queue: Queue, cursor: number, opts: {
10+
static obliterate(queue: Queue, opts: {
1111
force: boolean;
1212
count: number;
1313
}): Promise<any>;
@@ -18,7 +18,6 @@ static obliterate(queue: Queue, cursor: number, opts: {
1818
| Parameter | Type | Description |
1919
| --- | --- | --- |
2020
| queue | [Queue](./bullmq.queue.md) | |
21-
| cursor | number | |
2221
| opts | { force: boolean; count: number; } | |
2322

2423
<b>Returns:</b>

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bullmq",
3-
"version": "1.15.0",
3+
"version": "1.15.1",
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)