Skip to content

Commit

Permalink
chore(release): 1.68.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.68.1](taskforcesh/bullmq@v1.68.0...v1.68.1) (2022-02-01)

### Bug Fixes

* **update:** throw error when missing job key ([taskforcesh#1042](taskforcesh#1042)) ([a00ae5c](taskforcesh@a00ae5c))
  • Loading branch information
semantic-release-bot committed Feb 1, 2022
1 parent a00ae5c commit 2c2da6f
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/gitbook/api/bullmq.scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export declare class Scripts
| [reprocessJob(queue, job, state)](./bullmq.scripts.reprocessjob.md) | <code>static</code> | Attempts to reprocess a job |
| [retryJobArgs(queue, job)](./bullmq.scripts.retryjobargs.md) | <code>static</code> | |
| [retryJobs(queue, count)](./bullmq.scripts.retryjobs.md) | <code>static</code> | |
| [updateData(queue, job, data)](./bullmq.scripts.updatedata.md) | <code>static</code> | |
| [updateDelaySet(queue, delayedTimestamp)](./bullmq.scripts.updatedelayset.md) | <code>static</code> | It checks if the job in the top of the delay set should be moved back to the top of the wait queue (so that it will be processed as soon as possible) |
| [updateProgress(queue, job, progress)](./bullmq.scripts.updateprogress.md) | <code>static</code> | |

24 changes: 24 additions & 0 deletions docs/gitbook/api/bullmq.scripts.updatedata.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [bullmq](./bullmq.md) &gt; [Scripts](./bullmq.scripts.md) &gt; [updateData](./bullmq.scripts.updatedata.md)

## Scripts.updateData() method

<b>Signature:</b>

```typescript
static updateData<T = any, R = any, N extends string = string>(queue: MinimalQueue, job: Job<T, R, N>, data: T): Promise<void>;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| queue | [MinimalQueue](./bullmq.minimalqueue.md) | |
| job | [Job](./bullmq.job.md)<!-- -->&lt;T, R, N&gt; | |
| data | T | |
<b>Returns:</b>
Promise&lt;void&gt;
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.68.1](https://github.com/taskforcesh/bullmq/compare/v1.68.0...v1.68.1) (2022-02-01)


### Bug Fixes

* **update:** throw error when missing job key ([#1042](https://github.com/taskforcesh/bullmq/issues/1042)) ([a00ae5c](https://github.com/taskforcesh/bullmq/commit/a00ae5c9b3f6d51cb0229adca29d13d932fc5601))

# [1.68.0](https://github.com/taskforcesh/bullmq/compare/v1.67.3...v1.68.0) (2022-01-29)


Expand Down
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.68.0",
"version": "1.68.1",
"description": "Queue for messages and jobs based on Redis",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down

0 comments on commit 2c2da6f

Please sign in to comment.