Skip to content
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
21 changes: 21 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,27 @@ updates:
- minor
- patch

# BullMQ and ioredis are one type graph, not two packages. BullMQ's
# `ConnectionOptions` accepts an ioredis `Redis`, and that assignment only
# typechecks while a single copy of ioredis resolves in the tree. Bump one
# without the other and the copies diverge:
#
# error TS2322: Type 'Redis' is not assignable to type 'ConnectionOptions'
#
# on every site that hands a client to a Queue, Worker, QueueEvents or
# FlowProducer. Both #33 (ioredis alone) and #39 (bullmq alone) failed exactly
# that way, while the same two versions applied together are green. Grouping
# all update types keeps them moving as the pair they are.
Comment thread
msalvatti marked this conversation as resolved.
bullmq-stack:
patterns:
- 'bullmq'
- 'bullmq-otel'
- 'ioredis'
update-types:
- major
- minor
- patch

# Batch low-risk dev tooling bumps into a single PR to cut review noise.
# Majors stay out: each one needs its own verification and its own revert.
dev-dependencies:
Expand Down
31 changes: 15 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@
"release": "pnpm publish --provenance",
"prepare": "husky"
},
"dependencies": {},
"peerDependencies": {
Comment thread
msalvatti marked this conversation as resolved.
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
Expand All @@ -92,33 +91,33 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/testing": "^11.0.0",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^9.39.5",
"@nestjs/common": "^11.1.28",
"@nestjs/core": "^11.1.28",
"@nestjs/testing": "^11.1.28",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/jest-runner": "^9.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"bullmq": "^5.79.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"@types/node": "^24.13.3",
"bullmq": "^5.81.2",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"ioredis": "5.10.1",
"ioredis": "5.11.1",
"ioredis-mock": "^8.9.0",
"jest": "^30.0.0",
"jest-environment-node": "^30.4.1",
"lint-staged": "^17.2.0",
"prettier": "^3.3.3",
"prettier": "^3.9.6",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"testcontainers": "^12.0.3",
"ts-jest": "^29.2.5",
"testcontainers": "^12.0.4",
"ts-jest": "^29.4.12",
"tsup": "^8.3.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.12.0"
"typescript-eslint": "^8.65.0"
},
"keywords": [
"nestjs",
Expand Down
Loading
Loading