Skip to content

Commit

Permalink
chore(release): 1.17.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.17.0](v1.16.2...v1.17.0) (2021-04-16)

### Features

* **job:** consider waiting-children state ([2916dd5](2916dd5))
  • Loading branch information
semantic-release-bot committed Apr 16, 2021
1 parent 9d5767b commit dcb5f5b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 3 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.17.0](https://github.com/taskforcesh/bullmq/compare/v1.16.2...v1.17.0) (2021-04-16)


### Features

* **job:** consider waiting-children state ([2916dd5](https://github.com/taskforcesh/bullmq/commit/2916dd5d7ba9438d2eae66436899d32ec8ac0e91))

## [1.16.2](https://github.com/taskforcesh/bullmq/compare/v1.16.1...v1.16.2) (2021-04-14)


Expand Down
4 changes: 2 additions & 2 deletions docs/gitbook/api/bullmq.job.getdependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ Get children job keys if this job is a parent and has children.
```typescript
getDependencies(): Promise<{
processed: string[];
unprocessed: any;
unprocessed: object;
}>;
```
<b>Returns:</b>

Promise&lt;{ processed: string\[\]; unprocessed: any; }&gt;
Promise&lt;{ processed: string\[\]; unprocessed: object; }&gt;

dependencies separated by processed and unprocessed.

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

[Home](./index.md) &gt; [bullmq](./bullmq.md) &gt; [Job](./bullmq.job.md) &gt; [isWaitingChildren](./bullmq.job.iswaitingchildren.md)

## Job.isWaitingChildren() method

<b>Signature:</b>

```typescript
isWaitingChildren(): Promise<boolean>;
```
<b>Returns:</b>

Promise&lt;boolean&gt;

1 change: 1 addition & 0 deletions docs/gitbook/api/bullmq.job.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export declare class Job<T = any, R = any, N extends string = string>
| [isDelayed()](./bullmq.job.isdelayed.md) | | |
| [isFailed()](./bullmq.job.isfailed.md) | | |
| [isWaiting()](./bullmq.job.iswaiting.md) | | |
| [isWaitingChildren()](./bullmq.job.iswaitingchildren.md) | | |
| [log(logRow)](./bullmq.job.log.md) | | Logs one row of log data. logRow: string String with log data to be logged. |
| [moveToCompleted(returnValue, token, fetchNext)](./bullmq.job.movetocompleted.md) | | Moves a job to the completed queue. Returned job to be used with Queue.prototype.nextJobFromJobData. |
| [moveToDelayed(timestamp)](./bullmq.job.movetodelayed.md) | | |
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.16.2",
"version": "1.17.0",
"description": "Queue for messages and jobs based on Redis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit dcb5f5b

Please sign in to comment.