Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(bullmq-pro): update changelog to v6.4.0 #2192

Merged
merged 1 commit into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/gitbook/bullmq-pro/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# [6.4.0](https://github.com/taskforcesh/bullmq-pro/compare/v6.3.4...v6.4.0) (2023-09-16)


### Features

* **connection:** provide skipVersionCheck option for shared connections ([#2149](https://github.com/taskforcesh/bullmq/issues/2149)) ref [#2148](https://github.com/taskforcesh/bullmq/issues/2148) ([914820f](https://github.com/taskforcesh/bullmq/commit/914820f720cbc48b49f4bd1c46d148eb2bb5b79c))
* **sandbox:** sandbox: emulate moveToDelayed method ([#180](https://github.com/taskforcesh/bullmq-pro/issues/180)) ([d61de09](https://github.com/taskforcesh/bullmq-pro/commit/d61de095115481b688101bfaf0b126a02545cc6f)) ref [#2118](https://github.com/taskforcesh/bullmq/issues/2118)


### Bug Fixes

* **remove:** change error message when job is locked (python) ([#2175](https://github.com/taskforcesh/bullmq/issues/2175)) ([2f5628f](https://github.com/taskforcesh/bullmq/commit/2f5628feffab66cdcc78abf4d7bb608bdcaa65bb))
* **sandbox:** ignore extra params on processor ([#2142](https://github.com/taskforcesh/bullmq/issues/2142)) ([3602c20](https://github.com/taskforcesh/bullmq/commit/3602c20ab80cbe0a0d3de66210a01ad119e1090b))


## [6.3.4](https://github.com/taskforcesh/bullmq-pro/compare/v6.3.3...v6.3.4) (2023-08-18)


### Bug Fixes

* **worker:** abort rate-limit delay when closing worker ([#179](https://github.com/taskforcesh/bullmq-pro/issues/179)) ([4ad650b](https://github.com/taskforcesh/bullmq-pro/commit/4ad650b7bc0c6a950536df252e510cb96e2e0054))

## [6.3.3](https://github.com/taskforcesh/bullmq-pro/compare/v6.3.2...v6.3.3) (2023-08-15)


Expand Down
3 changes: 2 additions & 1 deletion src/classes/child-processor.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { JobJson, ParentCommand, SandboxedJob } from '../interfaces';
import { ParentCommand } from '../enums';
import { JobJson, SandboxedJob } from '../interfaces';
import { errorToJSON } from '../utils';

enum ChildStatus {
Expand Down
2 changes: 1 addition & 1 deletion src/classes/child.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChildProcess, fork } from 'child_process';
import { Worker } from 'worker_threads';
import { AddressInfo, createServer } from 'net';
import { ChildCommand, ParentCommand } from '../interfaces';
import { ChildCommand, ParentCommand } from '../enums';
import { EventEmitter } from 'events';

/**
Expand Down
2 changes: 1 addition & 1 deletion src/classes/main-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
import { toString } from 'lodash';
import { ChildProcessor } from './child-processor';
import { ParentCommand, ChildCommand } from '../interfaces';
import { ParentCommand, ChildCommand } from '../enums';
import { errorToJSON } from '../utils';

export default (
Expand Down
3 changes: 2 additions & 1 deletion src/classes/sandbox.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ChildCommand, ChildMessage, ParentCommand } from '../interfaces';
import { ChildCommand, ParentCommand } from '../enums';
import { ChildMessage } from '../interfaces';
import { ChildPool } from './child-pool';
import { Job } from './job';

Expand Down
33 changes: 14 additions & 19 deletions src/classes/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,31 +165,26 @@ export class Worker<
readonly opts: WorkerOptions;
readonly id: string;

private drained: boolean = false;
private waiting: Promise<string> | null = null;
private running = false;
private blockUntil = 0;
private limitUntil = 0;
private abortDelayController: AbortController | null = null;

protected processFn: Processor<DataType, ResultType, NameType>;

private resumeWorker: () => void;
protected paused: Promise<void>;
private _repeat: Repeat;
private childPool: ChildPool;

private extendLocksTimer: NodeJS.Timeout | null = null;

private blockingConnection: RedisConnection;

private stalledCheckTimer: NodeJS.Timeout;

private asyncFifoQueue: AsyncFifoQueue<void | Job<
DataType,
ResultType,
NameType
>>;
private blockingConnection: RedisConnection;
private blockUntil = 0;
private childPool: ChildPool;
private drained: boolean = false;
private extendLocksTimer: NodeJS.Timeout | null = null;
private limitUntil = 0;
private resumeWorker: () => void;
private stalledCheckTimer: NodeJS.Timeout;
private waiting: Promise<string> | null = null;
private _repeat: Repeat;

protected paused: Promise<void>;
protected processFn: Processor<DataType, ResultType, NameType>;
protected running = false;

static RateLimitError(): Error {
return new Error(RATE_LIMIT_ERROR);
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 3 additions & 1 deletion src/enums/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
export * from './error-code.enum';
export * from './child-command';
export * from './error-code';
export * from './parent-command';
export * from './metrics-time';
File renamed without changes.
2 changes: 1 addition & 1 deletion src/interfaces/child-message.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ParentCommand } from './parent-command';
import { ParentCommand } from '../enums/parent-command';

export interface ChildMessage {
cmd: ParentCommand;
Expand Down
2 changes: 0 additions & 2 deletions src/interfaces/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export * from './advanced-options';
export * from './backoff-options';
export * from './base-job-options';
export * from './child-command';
export * from './child-message';
export * from './connection';
export * from './flow-job';
Expand All @@ -11,7 +10,6 @@ export * from './keep-jobs';
export * from './metrics-options';
export * from './metrics';
export * from './minimal-job';
export * from './parent-command';
export * from './parent-message';
export * from './parent';
export * from './queue-options';
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/parent-message.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ChildCommand } from './child-command';
import { ChildCommand } from '../enums/child-command';
import { JobJson } from './job-json';

export interface ParentMessage {
Expand Down
Loading