Skip to content

Commit

Permalink
chore(release): 1.79.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.79.1](v1.79.0...v1.79.1) (2022-04-12)

### Bug Fixes

* **connection:** remove Queue reconnect overrides ([#1119](#1119)) ([83f1c79](83f1c79))
  • Loading branch information
semantic-release-bot committed Apr 12, 2022
1 parent 83f1c79 commit 56ffa3c
Show file tree
Hide file tree
Showing 12 changed files with 65 additions and 10 deletions.
11 changes: 11 additions & 0 deletions docs/gitbook/api/bullmq.clusteroptions.md
@@ -0,0 +1,11 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [bullmq](./bullmq.md) &gt; [ClusterOptions](./bullmq.clusteroptions.md)

## ClusterOptions type

<b>Signature:</b>

```typescript
export declare type ClusterOptions = IORedis.ClusterOptions & BaseOptions;
```
4 changes: 2 additions & 2 deletions docs/gitbook/api/bullmq.connectionoptions.md
Expand Up @@ -7,7 +7,7 @@
<b>Signature:</b>

```typescript
export declare type ConnectionOptions = RedisOptions | Redis | Cluster;
export declare type ConnectionOptions = RedisOptions | ClusterOptions | IORedis.Redis | IORedis.Cluster;
```
<b>References:</b> [RedisOptions](./bullmq.redisoptions.md)
<b>References:</b> [RedisOptions](./bullmq.redisoptions.md)<!-- -->, [ClusterOptions](./bullmq.clusteroptions.md)

22 changes: 22 additions & 0 deletions docs/gitbook/api/bullmq.isrediscluster.md
@@ -0,0 +1,22 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [bullmq](./bullmq.md) &gt; [isRedisCluster](./bullmq.isrediscluster.md)

## isRedisCluster() function

<b>Signature:</b>

```typescript
export declare function isRedisCluster(obj: unknown): obj is Cluster;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| obj | unknown | |

<b>Returns:</b>

obj is Cluster

4 changes: 2 additions & 2 deletions docs/gitbook/api/bullmq.isredisinstance.md
Expand Up @@ -7,7 +7,7 @@
<b>Signature:</b>

```typescript
export declare function isRedisInstance(obj: any): boolean;
export declare function isRedisInstance(obj: any): obj is Redis | Cluster;
```

## Parameters
Expand All @@ -18,5 +18,5 @@ export declare function isRedisInstance(obj: any): boolean;

<b>Returns:</b>

boolean
obj is Redis \| Cluster

2 changes: 2 additions & 0 deletions docs/gitbook/api/bullmq.md
Expand Up @@ -48,6 +48,7 @@
| [getParentKey(opts)](./bullmq.getparentkey.md) | |
| [isEmpty(obj)](./bullmq.isempty.md) | |
| [isNotConnectionError(error)](./bullmq.isnotconnectionerror.md) | |
| [isRedisCluster(obj)](./bullmq.isrediscluster.md) | |
| [isRedisInstance(obj)](./bullmq.isredisinstance.md) | |
| [jobIdForGroup(jobOpts, data, queueOpts)](./bullmq.jobidforgroup.md) | |
| [killAsync(child, signal, timeoutMs)](./bullmq.killasync.md) | Sends a kill signal to a child resolving when the child has exited, resorting to SIGKILL if the given timeout is reached |
Expand Down Expand Up @@ -126,6 +127,7 @@
| [BackoffFunction](./bullmq.backofffunction.md) | |
| [BulkJobOptions](./bullmq.bulkjoboptions.md) | |
| [CleanedEventCallback3](./bullmq.cleanedeventcallback3.md) | |
| [ClusterOptions](./bullmq.clusteroptions.md) | |
| [CompletedEventCallback3](./bullmq.completedeventcallback3.md) | |
| [ConnectionOptions](./bullmq.connectionoptions.md) | |
| [EntryId](./bullmq.entryid.md) | |
Expand Down
13 changes: 13 additions & 0 deletions docs/gitbook/api/bullmq.queuebaseoptions.blockingconnection.md
@@ -0,0 +1,13 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [bullmq](./bullmq.md) &gt; [QueueBaseOptions](./bullmq.queuebaseoptions.md) &gt; [blockingConnection](./bullmq.queuebaseoptions.blockingconnection.md)

## QueueBaseOptions.blockingConnection property

Denotes commands should retry indefinitely.

<b>Signature:</b>

```typescript
blockingConnection?: boolean;
```
1 change: 1 addition & 0 deletions docs/gitbook/api/bullmq.queuebaseoptions.md
Expand Up @@ -16,6 +16,7 @@ export interface QueueBaseOptions

| Property | Type | Description |
| --- | --- | --- |
| [blockingConnection?](./bullmq.queuebaseoptions.blockingconnection.md) | boolean | <i>(Optional)</i> Denotes commands should retry indefinitely. |
| [connection?](./bullmq.queuebaseoptions.connection.md) | [ConnectionOptions](./bullmq.connectionoptions.md) | <i>(Optional)</i> Options for connecting to a Redis instance. |
| [prefix?](./bullmq.queuebaseoptions.prefix.md) | string | <i>(Optional)</i> Prefix for all queue keys. |
| [sharedConnection?](./bullmq.queuebaseoptions.sharedconnection.md) | boolean | <i>(Optional)</i> Specify if the connection is shared. |
Expand Down
3 changes: 2 additions & 1 deletion docs/gitbook/api/bullmq.redisconnection._constructor_.md
Expand Up @@ -9,7 +9,7 @@ Constructs a new instance of the `RedisConnection` class
<b>Signature:</b>

```typescript
constructor(opts?: ConnectionOptions, shared?: boolean);
constructor(opts?: ConnectionOptions, shared?: boolean, blocking?: boolean);
```

## Parameters
Expand All @@ -18,4 +18,5 @@ constructor(opts?: ConnectionOptions, shared?: boolean);
| --- | --- | --- |
| opts | [ConnectionOptions](./bullmq.connectionoptions.md) | |
| shared | boolean | |
| blocking | boolean | |

2 changes: 1 addition & 1 deletion docs/gitbook/api/bullmq.redisconnection.md
Expand Up @@ -15,7 +15,7 @@ export declare class RedisConnection extends EventEmitter
| Constructor | Modifiers | Description |
| --- | --- | --- |
| [(constructor)(opts, shared)](./bullmq.redisconnection._constructor_.md) | | Constructs a new instance of the <code>RedisConnection</code> class |
| [(constructor)(opts, shared, blocking)](./bullmq.redisconnection._constructor_.md) | | Constructs a new instance of the <code>RedisConnection</code> class |
## Properties
Expand Down
4 changes: 1 addition & 3 deletions docs/gitbook/api/bullmq.redisoptions.md
Expand Up @@ -7,7 +7,5 @@
<b>Signature:</b>

```typescript
export declare type RedisOptions = (BaseRedisOptions | ClusterOptions) & {
skipVersionCheck?: boolean;
};
export declare type RedisOptions = IORedis.RedisOptions & BaseOptions;
```
7 changes: 7 additions & 0 deletions docs/gitbook/changelog.md
@@ -1,3 +1,10 @@
## [1.79.1](https://github.com/taskforcesh/bullmq/compare/v1.79.0...v1.79.1) (2022-04-12)


### Bug Fixes

* **connection:** remove Queue reconnect overrides ([#1119](https://github.com/taskforcesh/bullmq/issues/1119)) ([83f1c79](https://github.com/taskforcesh/bullmq/commit/83f1c797b8a5272028c8d78d5ce464236e90909e))

# [1.79.0](https://github.com/taskforcesh/bullmq/compare/v1.78.2...v1.79.0) (2022-04-08)


Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "bullmq",
"version": "1.79.0",
"version": "1.79.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 56ffa3c

Please sign in to comment.