2.1.1 (2026-08-15)
Performance Improvements
2.1.0 (2026-08-12)
Features
2.0.3 (2026-08-02)
Bug Fixes
2.0.2 (2026-07-31)
Bug Fixes
- postgres: drop redundant bullmq_ prefix from schema objects (#4436) (elixir) (python) (node) (067a73f)
2.0.1 (2026-07-31)
Bug Fixes
2.0.0 (2026-07-30)
Features
- release BullMQ v2 with pluggable queue backends (php) (python) (elixir) (e1f86ef)
- Introduce the IQueueBackend abstraction, Redis and PostgreSQL backends, and the accompanying v2 updates across the supported language clients.
BREAKING CHANGES
- High-level classes no longer expose Redis internals. The optional Connection constructor parameter is replaced by an optional BackendFactory. Queue#client, Queue#redisVersion, Queue#databaseType, Worker#blockingClient, and FlowProducer#client are removed. Access the raw Redis client through the RedisQueueBackend returned by getBackend(). Worker#waitUntilReady() now resolves to void instead of the Redis client.
- The deprecated debounce option and Job#debounceId property are removed. Use deduplication and Job#deduplicationId instead.
- The deprecated debounced event is removed. Listen for the deduplicated event instead.
- Job#discard() is removed from the API. Use UnrecoverableError instead.
- The legacy nextSchedulerJobId property is removed from Job and JobJson.
- The paused job state is removed from JobType and from the default Queue#getJobCounts() result. Jobs in a paused queue are represented as waiting.
- The public Redis implementation exports Scripts, createScripts, JobJsonRaw, and RedisJobOptions are removed. Use the backend APIs instead.