Skip to content

chore(deps): bump uuid, @azure/identity, @testcontainers/mssqlserver and testcontainers in /server#3248

Closed
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/server/multi-df9e162537
Closed

chore(deps): bump uuid, @azure/identity, @testcontainers/mssqlserver and testcontainers in /server#3248
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/server/multi-df9e162537

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 21, 2026

Removes uuid. It's no longer used after updating ancestor dependencies uuid, @azure/identity, @testcontainers/mssqlserver and testcontainers. These dependencies need to be updated together.

Removes uuid

Updates @azure/identity from 4.13.0 to 4.13.1

Commits

Updates @testcontainers/mssqlserver from 10.28.0 to 12.0.0

Release notes

Sourced from @​testcontainers/mssqlserver's releases.

v12.0.0

🚨 Breaking Changes

  1. Node 20 is EOL. Minimum engine requirement is now >= 22.22, matching the constraints from our dependencies.

  2. Previously, when no wait strategy was configured, Testcontainers defaulted to Wait.forListeningPorts().

    The new default wait strategy uses a Docker healthcheck when one is configured on the container image or service, falling back to Wait.forListeningPorts() when no healthcheck is available.

    To keep the previous behaviour, configure Wait.forListeningPorts() explicitly:

    import { DockerComposeEnvironment, GenericContainer, Wait } from "testcontainers";
    // Container: opt back into the previous default of waiting for listening ports
    const container = await new GenericContainer("my-image:latest")
    .withExposedPorts(8080)
    .withWaitStrategy(Wait.forListeningPorts())
    .start();
    // Compose: apply the previous default to all services
    const environment = await new DockerComposeEnvironment(composeFilePath, "docker-compose.yml")
    .withDefaultWaitStrategy(Wait.forListeningPorts())
    .up();
    // Compose: or apply it to a specific compose container
    const environment = await new DockerComposeEnvironment(composeFilePath, "docker-compose.yml")
    .withWaitStrategy("api-1", Wait.forListeningPorts())
    .up();


Changes

🚀 Features

🐛 Bug Fixes

📖 Documentation

🧹 Maintenance

... (truncated)

Commits
  • 80d537a Fix npm publish version updates (#1330)
  • 5e9bfff Use configured health checks as the default wait strategy (#1096)
  • 7f40327 Bump ghcr.io/devcontainers/features/node in the dependencies group (#1318)
  • df148bb Bump the dependencies group across 18 directories with 20 updates (#1321)
  • 1b7d67f Bump the dependencies group across 1 directory with 30 updates (#1322)
  • b25bbea Read RYUK_CONTAINER_IMAGE lazily so dotenv / other runtime overrides work (...
  • cec8a5f Bump the dependencies group across 1 directory with 23 updates (#1300)
  • 78975ef Bump the dependencies group across 16 directories with 18 updates (#1299)
  • 303430f Use /tmp for Kafka startup script (#1302)
  • 38fb397 Clarify PR defaults in AGENTS.md (#1303)
  • Additional commits viewable in compare view

Updates testcontainers from 10.28.0 to 12.0.0

Release notes

Sourced from testcontainers's releases.

v12.0.0

🚨 Breaking Changes

  1. Node 20 is EOL. Minimum engine requirement is now >= 22.22, matching the constraints from our dependencies.

  2. Previously, when no wait strategy was configured, Testcontainers defaulted to Wait.forListeningPorts().

    The new default wait strategy uses a Docker healthcheck when one is configured on the container image or service, falling back to Wait.forListeningPorts() when no healthcheck is available.

    To keep the previous behaviour, configure Wait.forListeningPorts() explicitly:

    import { DockerComposeEnvironment, GenericContainer, Wait } from "testcontainers";
    // Container: opt back into the previous default of waiting for listening ports
    const container = await new GenericContainer("my-image:latest")
    .withExposedPorts(8080)
    .withWaitStrategy(Wait.forListeningPorts())
    .start();
    // Compose: apply the previous default to all services
    const environment = await new DockerComposeEnvironment(composeFilePath, "docker-compose.yml")
    .withDefaultWaitStrategy(Wait.forListeningPorts())
    .up();
    // Compose: or apply it to a specific compose container
    const environment = await new DockerComposeEnvironment(composeFilePath, "docker-compose.yml")
    .withWaitStrategy("api-1", Wait.forListeningPorts())
    .up();


Changes

🚀 Features

🐛 Bug Fixes

📖 Documentation

🧹 Maintenance

... (truncated)

Commits
  • 80d537a Fix npm publish version updates (#1330)
  • 5e9bfff Use configured health checks as the default wait strategy (#1096)
  • 7f40327 Bump ghcr.io/devcontainers/features/node in the dependencies group (#1318)
  • df148bb Bump the dependencies group across 18 directories with 20 updates (#1321)
  • 1b7d67f Bump the dependencies group across 1 directory with 30 updates (#1322)
  • b25bbea Read RYUK_CONTAINER_IMAGE lazily so dotenv / other runtime overrides work (...
  • cec8a5f Bump the dependencies group across 1 directory with 23 updates (#1300)
  • 78975ef Bump the dependencies group across 16 directories with 18 updates (#1299)
  • 303430f Use /tmp for Kafka startup script (#1302)
  • 38fb397 Clarify PR defaults in AGENTS.md (#1303)
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

…and testcontainers

Removes [uuid](https://github.com/uuidjs/uuid). It's no longer used after updating ancestor dependencies [uuid](https://github.com/uuidjs/uuid), [@azure/identity](https://github.com/Azure/azure-sdk-for-js), [@testcontainers/mssqlserver](https://github.com/testcontainers/testcontainers-node) and [testcontainers](https://github.com/testcontainers/testcontainers-node). These dependencies need to be updated together.


Removes `uuid`

Updates `@azure/identity` from 4.13.0 to 4.13.1
- [Release notes](https://github.com/Azure/azure-sdk-for-js/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/Changelog-for-next-generation.md)
- [Commits](https://github.com/Azure/azure-sdk-for-js/compare/@azure/identity_4.13.0...@azure/identity_4.13.1)

Updates `@testcontainers/mssqlserver` from 10.28.0 to 12.0.0
- [Release notes](https://github.com/testcontainers/testcontainers-node/releases)
- [Commits](testcontainers/testcontainers-node@v10.28.0...v12.0.0)

Updates `testcontainers` from 10.28.0 to 12.0.0
- [Release notes](https://github.com/testcontainers/testcontainers-node/releases)
- [Commits](testcontainers/testcontainers-node@v10.28.0...v12.0.0)

---
updated-dependencies:
- dependency-name: uuid
  dependency-version:
  dependency-type: indirect
- dependency-name: "@azure/identity"
  dependency-version: 4.13.1
  dependency-type: indirect
- dependency-name: "@testcontainers/mssqlserver"
  dependency-version: 12.0.0
  dependency-type: direct:development
- dependency-name: testcontainers
  dependency-version: 12.0.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 21, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 28, 2026

Looks like these dependencies are no longer a dependency, so this is no longer needed.

@dependabot dependabot Bot closed this May 28, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/server/multi-df9e162537 branch May 28, 2026 22:49
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants