Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 29, 2025

Bumps the dependencies group with 9 updates:

Package From To
lint-staged 16.1.6 16.2.3
typescript-eslint 8.44.0 8.44.1
@google-cloud/datastore 9.2.1 10.0.1
@google-cloud/firestore 7.11.4 7.11.6
@aws-sdk/client-s3 3.893.0 3.896.0
mongoose 8.18.1 8.18.2
mysql2 3.15.0 3.15.1
@nats-io/jetstream 3.1.0 3.2.0
@nats-io/transport-node 3.1.0 3.2.0

Updates lint-staged from 16.1.6 to 16.2.3

Release notes

Sourced from lint-staged's releases.

v16.2.3

Patch Changes

  • #1669 27cd541 Thanks @​iiroj! - When using --fail-on-changes, automatically hidden (partially) unstaged changes are no longer counted to make lint-staged fail.

v16.2.2

Patch Changes

  • #1667 699f95d Thanks @​iiroj! - The backup stash will not be dropped when using --fail-on-changes and there are errors. When reverting to original state is disabled (via --no-revert or --fail-on-changes), hidden (partially) unstaged changes are still restored automatically so that it's easier to resolve the situation manually.

    Additionally, the example for using the backup stash manually now uses the correct backup hash, if available:

    % npx lint-staged --fail-on-changes
    ✔ Backed up original state in git stash (c18d55a3)
    ✔ Running tasks for staged files...
    ✖ Tasks modified files and --fail-on-changes was used!
    ↓ Cleaning up temporary files...
    ✖ lint-staged failed because --fail-on-changes was used.
    Any lost modifications can be restored from a git stash:
    > git stash list --format="%h %s"
    c18d55a3 On main: lint-staged automatic backup
    > git apply --index c18d55a3

v16.2.1

Patch Changes

  • #1664 8277b3b Thanks @​iiroj! - The built-in TypeScript types have been updated to more closely match the implementation. Notably, the list of staged files supplied to task functions is readonly string[] and can't be mutated. Thanks @​outslept!

    export default {
    ---  "*": (files: string[]) => void console.log('staged files', files)
    +++  "*": (files: readonly string[]) => void console.log('staged files', files)
    }
  • #1654 70b9af3 Thanks @​iiroj! - This version has been published from GitHub Actions using Trusted Publishing for npm packages.

  • #1659 4996817 Thanks @​iiroj! - Fix searching configuration files when the working directory is a subdirectory of a git repository, and there are package.json files in the working directory. This situation might happen when running lint-staged for a single package in a monorepo.

  • #1654 7021f0a Thanks @​iiroj! - Return the caret semver range (^) to direct dependencies so that future patch and minor versions are allowed. This enables projects to better maintain and deduplicate their own transitive dependencies while not requiring direct updates to lint-staged. This was changed in 16.2.0 after the vulnerability issues with chalk and debug, which were also removed in the same version.

    Given the recent vulnerabilities in the npm ecosystem, it's best to be very careful when updating dependencies.

v16.2.0

Minor Changes

... (truncated)

Changelog

Sourced from lint-staged's changelog.

16.2.3

Patch Changes

  • #1669 27cd541 Thanks @​iiroj! - When using --fail-on-changes, automatically hidden (partially) unstaged changes are no longer counted to make lint-staged fail.

16.2.2

Patch Changes

  • #1667 699f95d Thanks @​iiroj! - The backup stash will not be dropped when using --fail-on-changes and there are errors. When reverting to original state is disabled (via --no-revert or --fail-on-changes), hidden (partially) unstaged changes are still restored automatically so that it's easier to resolve the situation manually.

    Additionally, the example for using the backup stash manually now uses the correct backup hash, if available:

    % npx lint-staged --fail-on-changes
    ✔ Backed up original state in git stash (c18d55a3)
    ✔ Running tasks for staged files...
    ✖ Tasks modified files and --fail-on-changes was used!
    ↓ Cleaning up temporary files...
    ✖ lint-staged failed because --fail-on-changes was used.
    Any lost modifications can be restored from a git stash:
    > git stash list --format="%h %s"
    c18d55a3 On main: lint-staged automatic backup
    > git apply --index c18d55a3

16.2.1

Patch Changes

  • #1664 8277b3b Thanks @​iiroj! - The built-in TypeScript types have been updated to more closely match the implementation. Notably, the list of staged files supplied to task functions is readonly string[] and can't be mutated. Thanks @​outslept!

    export default {
    ---  "*": (files: string[]) => void console.log('staged files', files)
    +++  "*": (files: readonly string[]) => void console.log('staged files', files)
    }
  • #1654 70b9af3 Thanks @​iiroj! - This version has been published from GitHub Actions using Trusted Publishing for npm packages.

  • #1659 4996817 Thanks @​iiroj! - Fix searching configuration files when the working directory is a subdirectory of a git repository, and there are package.json files in the working directory. This situation might happen when running lint-staged for a single package in a monorepo.

  • #1654 7021f0a Thanks @​iiroj! - Return the caret semver range (^) to direct dependencies so that future patch and minor versions are allowed. This enables projects to better maintain and deduplicate their own transitive dependencies while not requiring direct updates to lint-staged. This was changed in 16.2.0 after the vulnerability issues with chalk and debug, which were also removed in the same version.

    Given the recent vulnerabilities in the npm ecosystem, it's best to be very careful when updating dependencies.

... (truncated)

Commits
  • bdcd03a chore(changeset): release
  • 27cd541 fix: do not count hidden (partially) unstaged changes when using `--fail-on-c...
  • ab2f42e fix: emit correct value to debug logs
  • 3fc5832 refactor: make general error messages more clear they originate from lint-staged
  • 409d79a chore(changeset): release
  • 7edaee9 docs: fix typo in changeset
  • 699f95d fix: backup stash example uses real hash if available
  • 47d01a9 fix: print backup stash example when failing to --fail-on-changes
  • 325dc03 fix: restore unstaged changes on errors when --fail-on-errors or `--no-reve...
  • 53bb27b fix: do not drop backup stash when errors and --fail-on-changes was used
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for lint-staged since your current version.


Updates typescript-eslint from 8.44.0 to 8.44.1

Release notes

Sourced from typescript-eslint's releases.

v8.44.1

8.44.1 (2025-09-22)

🩹 Fixes

  • eslint-plugin: [no-base-to-string] make ignoredTypeNames match type names without generics (#11597)
  • eslint-plugin: [no-unsafe-enum-comparison] support unions of literals (#11599)
  • eslint-plugin: [await-thenable] should not report passing values to promise aggregators which may be a promise in an array literal (#11611)
  • typescript-estree: forbid class property with name constructor (#11590)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.44.1 (2025-09-22)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates @google-cloud/datastore from 9.2.1 to 10.0.1

Release notes

Sourced from @​google-cloud/datastore's releases.

v10.0.1

10.0.1 (2025-05-08)

Bug Fixes

  • Fix the compiler error blocking the release (#1391) (ec91e14)

v10.0.0

10.0.0 (2025-05-02)

⚠ BREAKING CHANGES

  • migrate to Node 18 (#1384)

Bug Fixes

  • doc: Fix param descriptions for filters (#1346) (a18c169)
  • More error visibility in nodejs-datastore (#1389) (55934da)
  • Not check sub-property existence for null values (#1330) (5c0ddbc)

Miscellaneous Chores

Changelog

Sourced from @​google-cloud/datastore's changelog.

10.0.1 (2025-05-08)

Bug Fixes

  • Fix the compiler error blocking the release (#1391) (ec91e14)

10.0.0 (2025-05-02)

⚠ BREAKING CHANGES

  • migrate to Node 18 (#1384)

Bug Fixes

  • doc: Fix param descriptions for filters (#1346) (a18c169)
  • More error visibility in nodejs-datastore (#1389) (55934da)
  • Not check sub-property existence for null values (#1330) (5c0ddbc)

Miscellaneous Chores

Commits

Updates @google-cloud/firestore from 7.11.4 to 7.11.6

Release notes

Sourced from @​google-cloud/firestore's releases.

v7.11.6

7.11.6 (2025-09-26)

Bug Fixes

  • Pool.ts: add even more logging (c508d1b)

v7.11.5

7.11.5 (2025-09-22)

Bug Fixes

  • Pool.ts: add more detailed logging for client garbage collection (#2420) (1bbca46)
Changelog

Sourced from @​google-cloud/firestore's changelog.

7.11.6 (2025-09-26)

Bug Fixes

  • Pool.ts: add even more logging (c508d1b)

7.11.5 (2025-09-22)

Bug Fixes

  • Pool.ts: add more detailed logging for client garbage collection (#2420) (1bbca46)
Commits

Updates @aws-sdk/client-s3 from 3.893.0 to 3.896.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.896.0

3.896.0(2025-09-24)

Chores
Documentation Changes
  • client-neptune: Doc-only update to address customer use. (08c43a61)
  • client-kms: Documentation only updates for KMS. (915892a5)
  • client-appstream: G6f instance support for AppStream 2.0 (ec122646)
New Features
  • client-cloudwatch: Fix default dualstack FIPS endpoints in AWS GovCloud(US) regions (b22faff8)
  • client-dax: This release adds support for IPv6-only, DUAL_STACK DAX instances (d0290d54)
Bug Fixes
  • lib-storage: add validation for partCount and contentLength for multipart upload (#7363) (0562a0d1)
  • nested-clients: update latest changes from SSO/SSOOIDC (#7371) (6800db79)
Tests
  • clients: update payload types in client tests (#7373) (f7eb085f)

For list of updated packages, view updated-packages.md in assets-3.896.0.zip

v3.895.0

3.895.0(2025-09-23)

Chores
  • util-endpoints: update aws partitions.json (e2d3b450)
  • endpoints: update endpoints model (6ebbaa18)
  • models: update API models (717ae5db)
New Features
  • client-entityresolution: Support incremental id mapping workflow for AWS Entity Resolution (556772aa)
  • client-cleanrooms: Added support for running incremental ID mapping for rule-based workflows. (f151936f)
  • client-sso-oidc: This release includes exception definition and documentation updates. (6106ad2c)
  • client-ec2: Add Amazon EC2 R8gn instance types (6368fb54)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-s3's changelog.

3.896.0 (2025-09-24)

Note: Version bump only for package @​aws-sdk/client-s3

3.895.0 (2025-09-23)

Note: Version bump only for package @​aws-sdk/client-s3

3.894.0 (2025-09-22)

Features

  • xml-builder: use DOMParser for browser XML parsing (#7347) (af40250)
Commits

Updates mongoose from 8.18.1 to 8.18.2

Release notes

Sourced from mongoose's releases.

8.18.2 / 2025-09-22

  • fix(document): prevent $clone() from converting mongoose arrays into vanilla arrays #15633 #15625
  • fix(connection): use correct collection name for model when using useConnection() #15637
  • fix(connection): propagate changes to _lastHeartbeatAt to useDb() child connections #15640 #15635
  • types: fix schema property type definition in SchemaType #15631
Changelog

Sourced from mongoose's changelog.

8.18.2 / 2025-09-22

  • fix(document): prevent $clone() from converting mongoose arrays into vanilla arrays #15633 #15625
  • fix(connection): use correct collection name for model when using useConnection() #15637
  • fix(connection): propagate changes to _lastHeartbeatAt to useDb() child connections #15640 #15635
  • types: fix schema property type definition in SchemaType #15631
Commits

Updates mysql2 from 3.15.0 to 3.15.1

Release notes

Sourced from mysql2's releases.

v3.15.1

3.15.1 (2025-09-24)

Bug Fixes

  • typings: fix missing callback to PoolCluster.end() (#3819) (53a9bc2)
Changelog

Sourced from mysql2's changelog.

3.15.1 (2025-09-24)

Bug Fixes

  • typings: missing callback to PoolCluster.end() (#3819) (53a9bc2)
Commits
  • 036f463 chore(master): release 3.15.1 (#3821)
  • 78b2aab build(deps): bump sass from 1.93.1 to 1.93.2 in /website (#3820)
  • 53a9bc2 fix(typings): missing callback to PoolCluster.end() (#3819)
  • 6bfad13 ci: resolve Promise wrapper flaky test (#3817)
  • 4449c23 build(deps): bump sass from 1.93.0 to 1.93.1 in /website (#3815)
  • 9fa7020 build(deps-dev): bump @​eslint/markdown from 7.2.0 to 7.3.0 (#3812)
  • 82f7bc5 build(deps-dev): bump @​typescript-eslint/eslint-plugin (#3814)
  • d7b00f8 build(deps): bump sass from 1.92.1 to 1.93.0 in /website (#3811)
  • 171a9eb build(deps-dev): bump @​eslint/js from 9.35.0 to 9.36.0 (#3810)
  • ef47e49 build(deps-dev): bump @​types/node from 24.5.1 to 24.5.2 (#3806)
  • Additional commits viewable in compare view

Updates @nats-io/jetstream from 3.1.0 to 3.2.0

Release notes

Sourced from @​nats-io/jetstream's releases.

v3.2.0

What's Changed

This release increases stability and adds support for a number of exciting nats-server 2.12 features

JetStream

  • feat: Batch publishing support. JetStream now allows you to publish a number of messages atomically in a batch. nats-io/nats.js#322
  • feat: add allow_msg_counter to stream configurations. This features enables the use of streams as a counter. For an incubating API see orbit counters nats-io/nats.js#317
  • feat: add Raft group and traffic account metadata to cluster types nats-io/nats.js#319
  • feat: Support for message scheduling by setting the streams allow_msg_schedules and using ScheduleOptions in the JetStreamPublishOptions. nats-io/nats.js#321
  • feat: Added support for Prioritized policy for pull consumers nats-io/nats.js#323
  • feat(jetstream): Add support to configure PersistMode stream configurations nats-io/nats.js#327
  • feat: It is now possible to remove stream mirrors via update API nats-io/nats.js#320
  • fix: NATS server 2.12 changed how pending messages were reported when accessed via the Direct API. nats-io/nats.js#314

Key-Value Store

Object Store

  • fix:replicas api option was leaking into object store configuration where the only supported value, which was set correctly, is num_replicas. Servers 2.12+ which validate configurations would reject the operation if this value was set. nats-io/nats.js#315

Node Transport

  • fix: changed DNS resolution to use dns.lookup() instead of dns.resolveX() as this allows overrides such as /etc/hosts to work properly nats-io/nats.js#310
  • fix: ensure proper cleanup of socket in discard() method. In some container setups under Windows. nats-io/nats.js#309

Full Changelog: nats-io/nats.js@v3.1.0...v3.2.0

Commits
  • 0552c1d chore: bump versions to 3.2.0 across all modules and dependencies (#330)
  • 6b41a6a chore: remove pre-release tags from versions across modules (#329)
  • 43e3e4a feat(jetstream): PersistMode for stream configurations (#327)
  • 6787372 chore(jsapi): jsdoc fixes, missing types (#326)
  • 597d5e7 feat(jetstream): refactor types and enhance batch publishing options (#325)
  • 2e0c000 chore: bump version and dependencies to pre-release across modules (#324)
  • 70d4802 feat(jsapi): add PrioritizedOptions and support for prioritized pull consum...
  • c3459a8 feat(jetstream): batch publishing (#322)
  • 6763278 feat(jsapi): add support for message scheduling (#321)
  • 2660028 feat(jsm): allow removal of stream mirrors via update API (#320)
  • Additional commits viewable in compare view

Updates @nats-io/transport-node from 3.1.0 to 3.2.0

Release notes

Sourced from @​nats-io/transport-node's releases.

v3.2.0

What's Changed

This release increases stability and adds support for a number of exciting nats-server 2.12 features

JetStream

  • feat: Batch publishing support. JetStream now allows you to publish a number of messages atomically in a batch. nats-io/nats.js#322
  • feat: add allow_msg_counter to stream configurations. This features enables the use of streams as a counter. For an incubating API see orbit counters nats-io/nats.js#317
  • feat: add Raft group and traffic account metadata to cluster types nats-io/nats.js#319
  • feat: Support for message scheduling by setting the streams allow_msg_schedules and using ScheduleOptions in the JetStreamPublishOptions. nats-io/nats.js#321
  • feat: Added support for Prioritized policy for pull consumers nats-io/nats.js#323
  • feat(jetstream): Add support to configure PersistMode stream configurations nats-io/nats.js#327
  • feat: It is now possible to remove stream mirrors via update API nats-io/nats.js#320
  • fix: NATS server 2.12 changed how pending messages were reported when accessed via the Direct API. nats-io/nats.js#314

Key-Value Store

Object Store

  • fix:replicas api option was leaking into object store configuration where the only supported value, which was set correctly, is num_replicas. Servers 2.12+ which validate configurations would reject the operation if this value was set. nats-io/nats.js#315

Node Transport

  • fix: changed DNS resolution to use dns.lookup() instead of dns.resolveX() as this allows overrides such as /etc/hosts to work properly nats-io/nats.js#310
  • fix: ensure proper cleanup of socket in discard() method. In some container setups under Windows. nats-io/nats.js#309

Full Changelog: nats-io/nats.js@v3.1.0...v3.2.0

Commits
  • 0552c1d chore: bump versions to 3.2.0 across all modules and dependencies (#330)
  • 6b41a6a chore: remove pre-release tags from versions across modules (#329)
  • 43e3e4a feat(jetstream): PersistMode for stream configurations (#327)
  • 6787372 chore(jsapi): jsdoc fixes, missing types (#326)
  • 597d5e7 feat(jetstream): refactor types and enhance batch publishing options (#325)
  • 2e0c000 chore: bump version and dependencies to pre-release across modules (#324)
  • 70d4802 feat(jsapi): add PrioritizedOptions and support for prioritized pull consum...
  • c3459a8 feat(jetstream): batch publishing (#322)
  • 6763278 feat(jsapi): add support for message scheduling (#321)
  • 2660028 feat(jsm): allow removal of stream mirrors via update API (#320)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.1.6` | `16.2.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.44.0` | `8.44.1` |
| [@google-cloud/datastore](https://github.com/googleapis/nodejs-datastore) | `9.2.1` | `10.0.1` |
| [@google-cloud/firestore](https://github.com/googleapis/nodejs-firestore) | `7.11.4` | `7.11.6` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.893.0` | `3.896.0` |
| [mongoose](https://github.com/Automattic/mongoose) | `8.18.1` | `8.18.2` |
| [mysql2](https://github.com/sidorares/node-mysql2) | `3.15.0` | `3.15.1` |
| [@nats-io/jetstream](https://github.com/nats-io/nats.js) | `3.1.0` | `3.2.0` |
| [@nats-io/transport-node](https://github.com/nats-io/nats.js) | `3.1.0` | `3.2.0` |


Updates `lint-staged` from 16.1.6 to 16.2.3
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.1.6...v16.2.3)

Updates `typescript-eslint` from 8.44.0 to 8.44.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.1/packages/typescript-eslint)

Updates `@google-cloud/datastore` from 9.2.1 to 10.0.1
- [Release notes](https://github.com/googleapis/nodejs-datastore/releases)
- [Changelog](https://github.com/googleapis/nodejs-datastore/blob/main/CHANGELOG.md)
- [Commits](googleapis/nodejs-datastore@v9.2.1...v10.0.1)

Updates `@google-cloud/firestore` from 7.11.4 to 7.11.6
- [Release notes](https://github.com/googleapis/nodejs-firestore/releases)
- [Changelog](https://github.com/googleapis/nodejs-firestore/blob/main/CHANGELOG.md)
- [Commits](googleapis/nodejs-firestore@v7.11.4...v7.11.6)

Updates `@aws-sdk/client-s3` from 3.893.0 to 3.896.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.896.0/clients/client-s3)

Updates `mongoose` from 8.18.1 to 8.18.2
- [Release notes](https://github.com/Automattic/mongoose/releases)
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md)
- [Commits](Automattic/mongoose@8.18.1...8.18.2)

Updates `mysql2` from 3.15.0 to 3.15.1
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v3.15.0...v3.15.1)

Updates `@nats-io/jetstream` from 3.1.0 to 3.2.0
- [Release notes](https://github.com/nats-io/nats.js/releases)
- [Commits](nats-io/nats.js@v3.1.0...v3.2.0)

Updates `@nats-io/transport-node` from 3.1.0 to 3.2.0
- [Release notes](https://github.com/nats-io/nats.js/releases)
- [Commits](nats-io/nats.js@v3.1.0...v3.2.0)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-version: 16.2.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.44.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@google-cloud/datastore"
  dependency-version: 10.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@google-cloud/firestore"
  dependency-version: 7.11.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.896.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mongoose
  dependency-version: 8.18.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mysql2
  dependency-version: 3.15.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@nats-io/jetstream"
  dependency-version: 3.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@nats-io/transport-node"
  dependency-version: 3.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code major An incompatible API change labels Sep 29, 2025
@netlify
Copy link

netlify bot commented Sep 29, 2025

Deploy Preview for testcontainers-node ready!

Name Link
🔨 Latest commit 57ccee4
🔍 Latest deploy log https://app.netlify.com/projects/testcontainers-node/deploys/68d9cdb6acaf920008dcb2cf
😎 Deploy Preview https://deploy-preview-1149--testcontainers-node.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 29, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Sep 29, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-ca87d23ae6 branch September 29, 2025 08:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code major An incompatible API change

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant