Skip to content

Update testcontainers-node monorepo to v12#185

Open
specmatic-builder wants to merge 1 commit into
mainfrom
renovate/major-testcontainers-node-monorepo
Open

Update testcontainers-node monorepo to v12#185
specmatic-builder wants to merge 1 commit into
mainfrom
renovate/major-testcontainers-node-monorepo

Conversation

@specmatic-builder

@specmatic-builder specmatic-builder commented May 20, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
testcontainers ^11.8.0^12.0.0 age adoption passing confidence

Release Notes

testcontainers/testcontainers-node (testcontainers)

v12.0.4

Compare Source

Changes

🐛 Bug Fixes

📖 Documentation

🧹 Maintenance

📦 Dependency Updates

v12.0.3

Compare Source

Changes

🐛 Bug Fixes

📦 Dependency Updates

v12.0.2

Compare Source

Changes

🐛 Bug Fixes

📦 Dependency Updates

v12.0.1

Compare Source

Changes

🐛 Bug Fixes

🧹 Maintenance

📦 Dependency Updates

v12.0.0

Compare Source

🚨 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

📦 Dependency Updates

v11.14.0

Compare Source

Changes

🚀 Features

📖 Documentation

🧹 Maintenance

📦 Dependency Updates

v11.13.0

Compare Source

Changes

🚀 Features

📖 Documentation

🧹 Maintenance

📦 Dependency Updates


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot. Specmatic specific configuration is managed here.

@specmatic-builder specmatic-builder changed the title chore(deps): update dependency testcontainers to v12 Update dependency testcontainers to v12 Jun 6, 2026
@specmatic-builder specmatic-builder changed the title Update dependency testcontainers to v12 Update testcontainers-node monorepo to v12 Jun 11, 2026
@specmatic-builder
specmatic-builder force-pushed the renovate/major-testcontainers-node-monorepo branch from d8306f0 to 6a08cd7 Compare July 15, 2026 00:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant