Skip to content

Commit

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

### Bug Fixes

* **flows:** correct typings fixes [#492](#492) ([a77f80b](a77f80b))
  • Loading branch information
semantic-release-bot committed Apr 23, 2021
1 parent a77f80b commit 3b7c038
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 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.3](https://github.com/taskforcesh/bullmq/compare/v1.20.2...v1.20.3) (2021-04-23)


### Bug Fixes

* **flows:** correct typings fixes [#492](https://github.com/taskforcesh/bullmq/issues/492) ([a77f80b](https://github.com/taskforcesh/bullmq/commit/a77f80bc07e7627f512323f0dcc9141fe408809e))

## [1.20.2](https://github.com/taskforcesh/bullmq/compare/v1.20.1...v1.20.2) (2021-04-22)


Expand Down
6 changes: 3 additions & 3 deletions docs/gitbook/api/bullmq.job.getchildrenvalues.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Get this jobs children result values if any.
<b>Signature:</b>

```typescript
getChildrenValues(): Promise<{
[jobKey: string]: string;
getChildrenValues<CT = any>(): Promise<{
[jobKey: string]: CT;
}>;
```
<b>Returns:</b>
Promise&lt;{ \[jobKey: string\]: string; }&gt;
Promise&lt;{ \[jobKey: string\]: CT; }&gt;
Object mapping children job keys with their values.
8 changes: 5 additions & 3 deletions docs/gitbook/api/bullmq.job.getdependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ Get children job keys if this job is a parent and has children.

```typescript
getDependencies(): Promise<{
processed: string[];
unprocessed: object;
processed: {
[jobKey: string]: string;
};
unprocessed: string[];
}>;
```
<b>Returns:</b>

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

dependencies separated by processed and unprocessed.

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.2",
"version": "1.20.3",
"description": "Queue for messages and jobs based on Redis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 3b7c038

Please sign in to comment.