Skip to content

chore(deps): bump the production group with 25 updates - #1071

Closed
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/production-291662dc11
Closed

chore(deps): bump the production group with 25 updates#1071
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/production-291662dc11

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown

Bumps the production group with 25 updates:

Package From To
@fastify/env 5.0.3 7.0.0
@fastify/request-context 6.2.1 7.0.0
@prisma/adapter-pg 7.9.0 7.10.0
@prisma/client 7.9.0 7.10.0
bullmq 5.81.2 6.3.1
dotenv 16.6.1 17.4.2
fastify 5.10.0 5.12.1
fastify-plugin 5.1.0 6.0.0
ioredis 5.11.1 6.0.0
pg 8.22.0 8.23.0
redis 5.12.1 6.2.1
tsx 4.23.1 4.23.12
zod 3.25.76 4.4.3
@ioredis/commands 1.10.0 2.0.0
@prisma/client-runtime-utils 7.9.0 7.10.0
@prisma/driver-adapter-utils 7.9.0 7.10.0
@redis/bloom 5.12.1 6.2.1
@redis/client 5.12.1 6.2.1
@redis/json 5.12.1 6.2.1
@redis/search 5.12.1 6.2.1
@redis/time-series 5.12.1 6.2.1
cron-parser 4.9.0 5.10.0
env-schema 6.1.0 7.0.0
msgpackr 2.0.4 2.0.5
pg-protocol 1.15.0 1.16.0

Updates @fastify/env from 5.0.3 to 7.0.0

Release notes

Sourced from @​fastify/env's releases.

v7.0.0

What's Changed

Full Changelog: fastify/fastify-env@v6.0.0...v7.0.0

v6.0.0

Breaking

What's Changed

New Contributors

Full Changelog: fastify/fastify-env@v5.0.3...v6.0.0

Commits

Updates @fastify/request-context from 6.2.1 to 7.0.0

Release notes

Sourced from @​fastify/request-context's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-request-context@v6.2.1...v7.0.0

Commits
  • 9dceb74 7.0.0
  • 9f49ee2 chore: removed types and exports deprecated
  • aebb550 refactor(types): migrate from tsd to tstyche (#243)
  • b140ab8 ci: add lock-threads workflow (#241)
  • 98f34c3 build(deps-dev): bump neostandard from 0.12.2 to 0.13.0 (#240)
  • 1287bd0 build(deps): bump fastify/workflows/.github/workflows/plugins-ci.yml (#238)
  • 9115d0a chore: update plugin (#234)
  • b3595ca build(deps-dev): bump eslint from 9.39.3 to 10.0.2 (#237)
  • b973c50 build(deps-dev): bump c8 from 10.1.3 to 11.0.0 (#236)
  • 473a339 chore(license): standardise license notice (#235)
  • Additional commits viewable in compare view

Updates @prisma/adapter-pg from 7.9.0 to 7.10.0

Release notes

Sourced from @​prisma/adapter-pg's releases.

7.10.0

Prisma ORM 7.10.0

Prisma ORM 7.10.0 introduces a compatibility package for running Prisma 7 alongside newer Prisma versions, secures Prisma Studio's local server, and includes fixes across Prisma Client and the PostgreSQL, MariaDB, Neon, SQLite, and Prisma Postgres Serverless adapters.

Highlights

Run Prisma 7 alongside Prisma 8

This release introduces @prisma/prisma7, a compatibility package that lets you retain a matching Prisma 7 CLI and configuration while installing Prisma 8 in the same project.

Once 7.10.0 is released, a side-by-side installation can use:

npm install --save-dev prisma@8 @prisma/prisma7@7.10.0
npm install @prisma/client@7.10.0

Use prisma for the directly installed Prisma 8 CLI and prisma7 for Prisma 7:

npx prisma --version
npx prisma7 --version
npx prisma7 generate
npx prisma7 migrate dev
npx prisma7 db push

Prisma 7 now prefers version-specific configuration files, allowing its configuration to coexist with Prisma 8's prisma.config.* files:

// prisma7.config.ts
import { defineConfig } from '@prisma/prisma7/config'
export default defineConfig({
schema: 'prisma/schema.prisma',
migrations: {
path: 'prisma/migrations',
},
})

Without an explicit --config option, Prisma 7 searches for:

  1. Root-level prisma7.config.* files.
  2. .config/prisma7.* files.
  3. Existing prisma.config.* files as a backwards-compatible fallback.

The supported extensions are .js, .ts, .mjs, .cjs, .mts, and .cts. An explicit config path always takes precedence:

... (truncated)

Commits
  • 3fa65ac fix(p2002): correct modelName in nested create unique constraint errors #2959...
  • a180209 fix(adapter-pg): map PostgreSQL deadlocks to P2034 (#29717)
  • 800f1d1 fix(adapter-pg): preserve constraint name for unique violations (23505) (#29587)
  • 7ef2104 fix(postgres): handle SQLSTATE 23001 for RESTRICT violations (#29554)
  • See full diff in compare view

Updates @prisma/client from 7.9.0 to 7.10.0

Release notes

Sourced from @​prisma/client's releases.

7.10.0

Prisma ORM 7.10.0

Prisma ORM 7.10.0 introduces a compatibility package for running Prisma 7 alongside newer Prisma versions, secures Prisma Studio's local server, and includes fixes across Prisma Client and the PostgreSQL, MariaDB, Neon, SQLite, and Prisma Postgres Serverless adapters.

Highlights

Run Prisma 7 alongside Prisma 8

This release introduces @prisma/prisma7, a compatibility package that lets you retain a matching Prisma 7 CLI and configuration while installing Prisma 8 in the same project.

Once 7.10.0 is released, a side-by-side installation can use:

npm install --save-dev prisma@8 @prisma/prisma7@7.10.0
npm install @prisma/client@7.10.0

Use prisma for the directly installed Prisma 8 CLI and prisma7 for Prisma 7:

npx prisma --version
npx prisma7 --version
npx prisma7 generate
npx prisma7 migrate dev
npx prisma7 db push

Prisma 7 now prefers version-specific configuration files, allowing its configuration to coexist with Prisma 8's prisma.config.* files:

// prisma7.config.ts
import { defineConfig } from '@prisma/prisma7/config'
export default defineConfig({
schema: 'prisma/schema.prisma',
migrations: {
path: 'prisma/migrations',
},
})

Without an explicit --config option, Prisma 7 searches for:

  1. Root-level prisma7.config.* files.
  2. .config/prisma7.* files.
  3. Existing prisma.config.* files as a backwards-compatible fallback.

The supported extensions are .js, .ts, .mjs, .cjs, .mts, and .cts. An explicit config path always takes precedence:

... (truncated)

Commits
  • 05c1b88 Teach Prisma 7 to prefer versioned config files (#30020)
  • cf2bc1f Rename prisma7 package to @​prisma/prisma7 (#30002)
  • ce5a34c Complete downstream actionable Prisma 7 guidance propagation (#29994)
  • 3f13ec6 Complete CLI-owned prisma7 distribution identity (#29969)
  • 179ba0c feat(prisma7): add side-by-side CLI wrapper (#29949)
  • 3fa65ac fix(p2002): correct modelName in nested create unique constraint errors #2959...
  • 6b6d9e9 chore(deps): update engines to 7.10.0-4.0edf323efd1d98336f3f0a68684b56f689b90...
  • b64e33c chore(deps): update engines to 7.10.0-3.9d90ce2c89d5c95a1148aef15e5561ab6c490...
  • 2046f9b feat(client): expose ModelName to compute function in Result extensions (#29782)
  • f2b3abd chore(deps): update engines to 7.10.0-1.6d040c802892de6d56c7e0061b7a10b3e6a0c...
  • Additional commits viewable in compare view

Updates bullmq from 5.81.2 to 6.3.1

Release notes

Sourced from bullmq's releases.

v6.3.1

6.3.1 (2026-08-27)

Bug Fixes

  • postgres: resolve priv SQL dir at runtime for Mix releases (#4636) (9d737e9)

v6.3.0

6.3.0 (2026-08-26)

Features

  • postgres: forward :ssl option to Postgrex connection (#4631) (elixir) (bb569b8)

v6.2.2

6.2.2 (2026-08-25)

Performance Improvements

  • queue: do not affect rate limit when processing deferred failures (python) (elixir) (rust) (dotnet) (#4607) (ec4be04)

v6.2.1

6.2.1 (2026-08-25)

Bug Fixes

  • stalled: provide right key values in move_stalled_jobs_to_wait (#4589) (ec1c812)

v6.2.0

6.2.0 (2026-08-21)

Features

  • types: add generic ProgressType parameter to Job and Worker (#4529) fixes #3721 (c06b51c)

v6.1.2

6.1.2 (2026-08-16)

Bug Fixes

  • deps: update security patches [security] (#4566) (cb37233)

v6.1.1

6.1.1 (2026-08-14)

... (truncated)

Commits

Updates dotenv from 16.6.1 to 17.4.2

Changelog

Sourced from dotenv's changelog.

17.4.2 (2026-04-12)

Changed

  • Improved skill files - tightened up details (#1009)

17.4.1 (2026-04-05)

Changed

  • Change text injecting to injected (#1005)

17.4.0 (2026-04-01)

Added

  • Add skills/ folder with focused agent skills: skills/dotenv/SKILL.md (core usage) and skills/dotenvx/SKILL.md (encryption, multiple environments, variable expansion) for AI coding agent discovery via the skills.sh ecosystem (npx skills add motdotla/dotenv)

Changed

  • Tighten up logs: ◇ injecting env (14) from .env (#1003)

17.3.1 (2026-02-12)

Changed

  • Fix as2 example command in README and update spanish README

17.3.0 (2026-02-12)

Added

  • Add a new README section on dotenv’s approach to the agentic future.

Changed

  • Rewrite README to get humans started more quickly with less noise while simultaneously making more accessible for llms and agents to go deeper into details.

17.2.4 (2026-02-05)

Changed

  • Make DotenvPopulateInput accept NodeJS.ProcessEnv type (#915)
  • Give back to dotenv by checking out my newest project vestauth. It is auth for agents. Thank you for using my software.

17.2.3 (2025-09-29)

Changed

  • Fixed typescript error definition (#912)

... (truncated)

Commits

Updates fastify from 5.10.0 to 5.12.1

Release notes

Sourced from fastify's releases.

v5.12.1

⚠️ Security release

What's Changed

Full Changelog: fastify/fastify@v5.12.0...v5.12.1

v5.12.0

What's Changed

Full Changelog: fastify/fastify@v5.11.3...v5.12.0

v5.11.3

What's Changed

New Contributors

Full Changelog: fastify/fastify@v5.11.2...v5.11.3

v5.11.2

What's Changed

... (truncated)

Commits

Updates fastify-plugin from 5.1.0 to 6.0.0

Release notes

Sourced from fastify-plugin's releases.

v6.0.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-plugin@v5.1.0...v6.0.0

Commits
  • 05c1c32 6.0.0
  • a309399 chore: update depedabot setting (#292)
  • 3d43488 chore: removed interface deprecated
  • 629292b refactor: standardize entry points and project structure
  • 68ddddb refactor(types): migrate from tsd to tstyche (#288)
  • 12c07a4 ci: add lock-threads workflow (#286)
  • 8a4d1a2 build(deps-dev): bump neostandard from 0.12.2 to 0.13.0 (#285)
  • 8e9e035 build(deps): bump fastify/workflows/.github/workflows/plugins-ci.yml (#283)
  • 41b480e chore: remove stale workflow and node reference type declaration (#281)
  • 1f378b1 chore(license): standardise license notice (#278)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by fdawgs, a new releaser for fastify-plugin since your current version.


Updates ioredis from 5.11.1 to 6.0.0

Release notes

Sourced from ioredis's releases.

v6.0.0

6.0.0 (2026-07-31)

Bug Fixes

  • clear stale socket timeout on reconnect (#2148) (6455dbe)
  • cluster: recreate stale connection on circular MOVED (#2135) (08c8967)
  • cluster: validate MOVED slot to prevent Array.prototype pollution (#2151) (9618206), closes #1267
  • command: serialize large integer arguments in decimal notation (#2136) (09b8d04)
  • redis: keep reconnecting when connection closes during client setup (#2099) (#2123) (f9a66bc)
  • sentinel: preserve zero preferred slave priority (#2129) (a3f9f2d)
  • tracing: redact values for GETSET and PSETEX (#2134) (832765d)
  • types: export ScanStreamOptions, RedisStatus and ClusterStatus (#2158) (cf3bf71)

Features

BREAKING CHANGES

  • ioredis now requires Node.js 20 or newer and uses RESP3 by default. Set protocol: 2 to retain the v5 wire protocol.

v6.0.0-beta.1

6.0.0-beta.1 (2026-07-29)

Bug Fixes

  • clear stale socket timeout on reconnect (#2148) (6455dbe)
  • cluster: recreate stale connection on circular MOVED (#2135) (08c8967)
  • cluster: validate MOVED slot to prevent Array.prototype pollution (#2151) (9618206), closes #1267
  • command: serialize large integer arguments in decimal notation (#2136) (09b8d04)
  • redis: keep reconnecting when connection closes during client setup (#2099) (#2123) (f9a66bc)
  • sentinel: preserve zero preferred slave priority (#2129) (a3f9f2d)
  • tracing: redact values for GETSET and PSETEX (#2134) (832765d)

... (truncated)

Changelog

Sourced from ioredis's changelog.

6.0.0 (2026-07-31)

Bug Fixes

  • clear stale socket timeout on reconnect (#2148) (6455dbe)
  • cluster: recreate stale connection on circular MOVED (#2135) (08c8967)
  • cluster: validate MOVED slot to prevent Array.prototype pollution (#2151) (9618206), closes #1267
  • command: serialize large integer arguments in decimal notation (#2136) (09b8d04)
  • redis: keep reconnecting when connection closes during client setup (#2099) (#2123) (f9a66bc)
  • sentinel: preserve zero preferred slave priority (#2129) (a3f9f2d)
  • tracing: redact values for GETSET and PSETEX (#2134) (832765d)
  • types: export ScanStreamOptions, RedisStatus and ClusterStatus (#2158) (cf3bf71)

Features

BREAKING CHANGES

  • ioredis now requires Node.js 20 or newer and uses RESP3 by default. Set protocol: 2 to retain the v5 wire protocol.
Commits

Updates pg from 8.22.0 to 8.23.0

Changelog

Sourced from pg's changelog.

pg@8.23.0

Commits

Updates redis from 5.12.1 to 6.2.1

Release notes

Sourced from redis's releases.

redis@6.2.1

What's Changed

Bumps the production group with 25 updates:

| Package | From | To |
| --- | --- | --- |
| [@fastify/env](https://github.com/fastify/fastify-env) | `5.0.3` | `7.0.0` |
| [@fastify/request-context](https://github.com/fastify/fastify-request-context) | `6.2.1` | `7.0.0` |
| [@prisma/adapter-pg](https://github.com/prisma/prisma/tree/HEAD/packages/adapter-pg) | `7.9.0` | `7.10.0` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `7.9.0` | `7.10.0` |
| [bullmq](https://github.com/taskforcesh/bullmq) | `5.81.2` | `6.3.1` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.6.1` | `17.4.2` |
| [fastify](https://github.com/fastify/fastify) | `5.10.0` | `5.12.1` |
| [fastify-plugin](https://github.com/fastify/fastify-plugin) | `5.1.0` | `6.0.0` |
| [ioredis](https://github.com/redis/ioredis) | `5.11.1` | `6.0.0` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.22.0` | `8.23.0` |
| [redis](https://github.com/redis/node-redis) | `5.12.1` | `6.2.1` |
| [tsx](https://github.com/privatenumber/tsx) | `4.23.1` | `4.23.12` |
| [zod](https://github.com/colinhacks/zod) | `3.25.76` | `4.4.3` |
| [@ioredis/commands](https://github.com/ioredis/commands) | `1.10.0` | `2.0.0` |
| [@prisma/client-runtime-utils](https://github.com/prisma/prisma/tree/HEAD/packages/client-runtime-utils) | `7.9.0` | `7.10.0` |
| [@prisma/driver-adapter-utils](https://github.com/prisma/prisma/tree/HEAD/packages/driver-adapter-utils) | `7.9.0` | `7.10.0` |
| [@redis/bloom](https://github.com/redis/node-redis) | `5.12.1` | `6.2.1` |
| [@redis/client](https://github.com/redis/node-redis) | `5.12.1` | `6.2.1` |
| [@redis/json](https://github.com/redis/node-redis) | `5.12.1` | `6.2.1` |
| [@redis/search](https://github.com/redis/node-redis) | `5.12.1` | `6.2.1` |
| [@redis/time-series](https://github.com/redis/node-redis) | `5.12.1` | `6.2.1` |
| [cron-parser](https://github.com/harrisiirak/cron-parser) | `4.9.0` | `5.10.0` |
| [env-schema](https://github.com/fastify/env-schema) | `6.1.0` | `7.0.0` |
| [msgpackr](https://github.com/kriszyp/msgpackr) | `2.0.4` | `2.0.5` |
| [pg-protocol](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg-protocol) | `1.15.0` | `1.16.0` |


Updates `@fastify/env` from 5.0.3 to 7.0.0
- [Release notes](https://github.com/fastify/fastify-env/releases)
- [Commits](fastify/fastify-env@v5.0.3...v7.0.0)

Updates `@fastify/request-context` from 6.2.1 to 7.0.0
- [Release notes](https://github.com/fastify/fastify-request-context/releases)
- [Commits](fastify/fastify-request-context@v6.2.1...v7.0.0)

Updates `@prisma/adapter-pg` from 7.9.0 to 7.10.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.10.0/packages/adapter-pg)

Updates `@prisma/client` from 7.9.0 to 7.10.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.10.0/packages/client)

Updates `bullmq` from 5.81.2 to 6.3.1
- [Release notes](https://github.com/taskforcesh/bullmq/releases)
- [Commits](taskforcesh/bullmq@v5.81.2...v6.3.1)

Updates `dotenv` from 16.6.1 to 17.4.2
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.6.1...v17.4.2)

Updates `fastify` from 5.10.0 to 5.12.1
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.10.0...v5.12.1)

Updates `fastify-plugin` from 5.1.0 to 6.0.0
- [Release notes](https://github.com/fastify/fastify-plugin/releases)
- [Commits](fastify/fastify-plugin@v5.1.0...v6.0.0)

Updates `ioredis` from 5.11.1 to 6.0.0
- [Release notes](https://github.com/redis/ioredis/releases)
- [Changelog](https://github.com/redis/ioredis/blob/main/CHANGELOG.md)
- [Commits](redis/ioredis@v5.11.1...v6.0.0)

Updates `pg` from 8.22.0 to 8.23.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.23.0/packages/pg)

Updates `redis` from 5.12.1 to 6.2.1
- [Release notes](https://github.com/redis/node-redis/releases)
- [Changelog](https://github.com/redis/node-redis/blob/master/CHANGELOG.md)
- [Commits](https://github.com/redis/node-redis/compare/redis@5.12.1...redis@6.2.1)

Updates `tsx` from 4.23.1 to 4.23.12
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.23.1...v4.23.12)

Updates `zod` from 3.25.76 to 4.4.3
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.76...v4.4.3)

Updates `@ioredis/commands` from 1.10.0 to 2.0.0
- [Release notes](https://github.com/ioredis/commands/releases)
- [Changelog](https://github.com/ioredis/commands/blob/main/CHANGELOG.md)
- [Commits](ioredis/commands@v1.10.0...v2.0.0)

Updates `@prisma/client-runtime-utils` from 7.9.0 to 7.10.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.10.0/packages/client-runtime-utils)

Updates `@prisma/driver-adapter-utils` from 7.9.0 to 7.10.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.10.0/packages/driver-adapter-utils)

Updates `@redis/bloom` from 5.12.1 to 6.2.1
- [Release notes](https://github.com/redis/node-redis/releases)
- [Changelog](https://github.com/redis/node-redis/blob/master/CHANGELOG.md)
- [Commits](https://github.com/redis/node-redis/compare/json@5.12.1...json@6.2.1)

Updates `@redis/client` from 5.12.1 to 6.2.1
- [Release notes](https://github.com/redis/node-redis/releases)
- [Changelog](https://github.com/redis/node-redis/blob/master/CHANGELOG.md)
- [Commits](https://github.com/redis/node-redis/compare/json@5.12.1...json@6.2.1)

Updates `@redis/json` from 5.12.1 to 6.2.1
- [Release notes](https://github.com/redis/node-redis/releases)
- [Changelog](https://github.com/redis/node-redis/blob/master/CHANGELOG.md)
- [Commits](https://github.com/redis/node-redis/compare/json@5.12.1...json@6.2.1)

Updates `@redis/search` from 5.12.1 to 6.2.1
- [Release notes](https://github.com/redis/node-redis/releases)
- [Changelog](https://github.com/redis/node-redis/blob/master/CHANGELOG.md)
- [Commits](https://github.com/redis/node-redis/compare/json@5.12.1...json@6.2.1)

Updates `@redis/time-series` from 5.12.1 to 6.2.1
- [Release notes](https://github.com/redis/node-redis/releases)
- [Changelog](https://github.com/redis/node-redis/blob/master/CHANGELOG.md)
- [Commits](https://github.com/redis/node-redis/compare/json@5.12.1...json@6.2.1)

Updates `cron-parser` from 4.9.0 to 5.10.0
- [Release notes](https://github.com/harrisiirak/cron-parser/releases)
- [Changelog](https://github.com/harrisiirak/cron-parser/blob/master/CHANGELOG.md)
- [Commits](harrisiirak/cron-parser@4.9.0...v5.10.0)

Updates `env-schema` from 6.1.0 to 7.0.0
- [Release notes](https://github.com/fastify/env-schema/releases)
- [Commits](fastify/env-schema@v6.1.0...v7.0.0)

Updates `msgpackr` from 2.0.4 to 2.0.5
- [Release notes](https://github.com/kriszyp/msgpackr/releases)
- [Commits](kriszyp/msgpackr@v2.0.4...v2.0.5)

Updates `pg-protocol` from 1.15.0 to 1.16.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg-protocol@1.16.0/packages/pg-protocol)

---
updated-dependencies:
- dependency-name: "@fastify/env"
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: "@fastify/request-context"
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: "@prisma/adapter-pg"
  dependency-version: 7.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: "@prisma/client"
  dependency-version: 7.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: bullmq
  dependency-version: 6.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: dotenv
  dependency-version: 17.4.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: fastify
  dependency-version: 5.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: fastify-plugin
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: ioredis
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: pg
  dependency-version: 8.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: redis
  dependency-version: 6.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: tsx
  dependency-version: 4.23.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production
- dependency-name: zod
  dependency-version: 4.4.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: "@ioredis/commands"
  dependency-version: 2.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: "@prisma/client-runtime-utils"
  dependency-version: 7.10.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: "@prisma/driver-adapter-utils"
  dependency-version: 7.10.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: "@redis/bloom"
  dependency-version: 6.2.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: "@redis/client"
  dependency-version: 6.2.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: "@redis/json"
  dependency-version: 6.2.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: "@redis/search"
  dependency-version: 6.2.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: "@redis/time-series"
  dependency-version: 6.2.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: cron-parser
  dependency-version: 5.10.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: env-schema
  dependency-version: 7.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production
- dependency-name: msgpackr
  dependency-version: 2.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production
- dependency-name: pg-protocol
  dependency-version: 1.16.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies, npm. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@Mimah97 Mimah97 closed this Aug 31, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/production-291662dc11 branch August 31, 2026 15:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant