fix(deps): update module github.com/testcontainers/testcontainers-go to v0.35.0 #107

Open
forgejo-actions wants to merge 1 commit from renovate/testcontainers-go-monorepo into main

This PR contains the following updates:

Package Type Update Change
github.com/testcontainers/testcontainers-go require minor v0.31.0 -> v0.35.0

Release Notes

testcontainers/testcontainers-go (github.com/testcontainers/testcontainers-go)

v0.35.0

Compare Source

What's Changed

⚠️ Breaking Changes

The container.Terminate(ctx) method now accepts an extra variadic argument with termination options. The breaking change only affects users assigning this method to a variable, receiving a compile-time error. The rest of the users will simply satisfy the new signature with an empty slice of termination options.

The ShouldPrintBuildLog function of the ContainerRequest has been removed. Instead, a BuildLogWriter function appears, that returns the user-defined io.Writer for writing the image-build logs. In case there is no writer, and the FromDockerfile.PrintBuildLog is set to true, os.Stderr would be used.

Users of the GCloud module and the WithProjectID option must handle the error that this option now returns. This can be get at compile time, as all the functional options for container customisers must return an error.

The types and functions of the PortForwarder type are now private, as they are implementation details of the library, so there is no need for them to be exposed.

Usages of the GenericProviderOptions.DefaultNetwork field must be removed, as this field is now private. The container runtime should provide the default network under the hood.

🔒 Security

🚀 Features

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

v0.34.1

Compare Source

v0.34.0

Compare Source

What's Changed

🚀 Features

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

v0.33.0

Compare Source

What's Changed

⚠️ Breaking Changes

If you are building Docker images with the FromDockerfile struct in the GenericContainerRequest, please consider that the ContextArchive field in that struct has changed from io.Reader to io.ReadSeeker. This is needed because we want to be able to rewind to do multiple passes when reading all the images that are present in a Dockerfile.

🔒 Security

  • chore(deps): bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible (#​2733) @​mdelapenya

🚀 Features

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

v0.32.0

Compare Source

What's Changed

🚀 Features

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

📦 Dependency updates


Configuration

📅 Schedule: 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.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) | require | minor | `v0.31.0` -> `v0.35.0` | --- ### Release Notes <details> <summary>testcontainers/testcontainers-go (github.com/testcontainers/testcontainers-go)</summary> ### [`v0.35.0`](https://github.com/testcontainers/testcontainers-go/releases/tag/v0.35.0) [Compare Source](https://github.com/testcontainers/testcontainers-go/compare/v0.34.1...v0.35.0) ### What's Changed #### ⚠️ Breaking Changes - feat(termination)!: make container termination timeout configurable ([#&#8203;2926](https://github.com/testcontainers/testcontainers-go/issues/2926)) [@&#8203;moogacs](https://github.com/moogacs) > The `container.Terminate(ctx)` method now accepts an extra variadic argument with termination options. The breaking change only affects users assigning this method to a variable, receiving a compile-time error. The rest of the users will simply satisfy the new signature with an empty slice of termination options. - feat!: build log writer for container request ([#&#8203;2925](https://github.com/testcontainers/testcontainers-go/issues/2925)) [@&#8203;zenkovev](https://github.com/zenkovev) > The `ShouldPrintBuildLog` function of the `ContainerRequest` has been removed. Instead, a `BuildLogWriter` function appears, that returns the user-defined `io.Writer` for writing the image-build logs. In case there is no writer, and the `FromDockerfile.PrintBuildLog` is set to true, `os.Stderr` would be used. - feat(gcloud)!: add support to seed data when using RunBigQueryContainer ([#&#8203;2523](https://github.com/testcontainers/testcontainers-go/issues/2523)) [@&#8203;mtellis2](https://github.com/mtellis2) > Users of the GCloud module and the `WithProjectID` option must handle the error that this option now returns. This can be get at compile time, as all the functional options for container customisers must return an error. - fix!: port forwarding clean up and make private ([#&#8203;2881](https://github.com/testcontainers/testcontainers-go/issues/2881)) [@&#8203;stevenh](https://github.com/stevenh) > The types and functions of the `PortForwarder` type are now private, as they are implementation details of the library, so there is no need for them to be exposed. - fix!: data races ([#&#8203;2843](https://github.com/testcontainers/testcontainers-go/issues/2843)) [@&#8203;stevenh](https://github.com/stevenh) > Usages of the `GenericProviderOptions.DefaultNetwork` field must be removed, as this field is now private. The container runtime should provide the default network under the hood. #### 🔒 Security - security(deps): bump golang.org/x/crypto from 0.28.0 to 0.31.0 ([#&#8203;2916](https://github.com/testcontainers/testcontainers-go/issues/2916)) [@&#8203;dependabot](https://github.com/dependabot) #### 🚀 Features - feat(postgres): ssl for postgres ([#&#8203;2473](https://github.com/testcontainers/testcontainers-go/issues/2473)) [@&#8203;bearrito](https://github.com/bearrito) - feat(ollama): support calling the Ollama local process ([#&#8203;2923](https://github.com/testcontainers/testcontainers-go/issues/2923)) [@&#8203;stevenh](https://github.com/stevenh) - feat(termination)!: make container termination timeout configurable ([#&#8203;2926](https://github.com/testcontainers/testcontainers-go/issues/2926)) [@&#8203;moogacs](https://github.com/moogacs) - feat(wait): log sub match callback ([#&#8203;2929](https://github.com/testcontainers/testcontainers-go/issues/2929)) [@&#8203;stevenh](https://github.com/stevenh) - feat!: build log writer for container request ([#&#8203;2925](https://github.com/testcontainers/testcontainers-go/issues/2925)) [@&#8203;zenkovev](https://github.com/zenkovev) - feat(gcloud)!: add support to seed data when using RunBigQueryContainer ([#&#8203;2523](https://github.com/testcontainers/testcontainers-go/issues/2523)) [@&#8203;mtellis2](https://github.com/mtellis2) - feat(nats): WithConfigFile - pass a configuration file to nats server ([#&#8203;2905](https://github.com/testcontainers/testcontainers-go/issues/2905)) [@&#8203;vyskocilm](https://github.com/vyskocilm) - feat(wait): strategy walk ([#&#8203;2895](https://github.com/testcontainers/testcontainers-go/issues/2895)) [@&#8203;stevenh](https://github.com/stevenh) - feat(wait): tls strategy ([#&#8203;2896](https://github.com/testcontainers/testcontainers-go/issues/2896)) [@&#8203;stevenh](https://github.com/stevenh) - feat: add build to life cycle hooks ([#&#8203;2653](https://github.com/testcontainers/testcontainers-go/issues/2653)) [@&#8203;stevenh](https://github.com/stevenh) #### 🐛 Bug Fixes - fix: handle nil value in CleanupNetwork ([#&#8203;2928](https://github.com/testcontainers/testcontainers-go/issues/2928)) [@&#8203;l0nax](https://github.com/l0nax) - fix: avoid double lock in DockerProvider.DaemonHost() ([#&#8203;2900](https://github.com/testcontainers/testcontainers-go/issues/2900)) [@&#8203;vikstrous](https://github.com/vikstrous) - fix: container binds syntax ([#&#8203;2899](https://github.com/testcontainers/testcontainers-go/issues/2899)) [@&#8203;zregvart](https://github.com/zregvart) - fix(influxdb): Respect custom waitStrategy ([#&#8203;2845](https://github.com/testcontainers/testcontainers-go/issues/2845)) [@&#8203;marcinmilewski93](https://github.com/marcinmilewski93) - fix(redpanda): temporary file use ([#&#8203;2884](https://github.com/testcontainers/testcontainers-go/issues/2884)) [@&#8203;cavus700](https://github.com/cavus700) - fix: host access port instability ([#&#8203;2867](https://github.com/testcontainers/testcontainers-go/issues/2867)) [@&#8203;stevenh](https://github.com/stevenh) - fix: docker auth for identity tokens ([#&#8203;2866](https://github.com/testcontainers/testcontainers-go/issues/2866)) [@&#8203;stevenh](https://github.com/stevenh) - fix(compose): container initialisation ([#&#8203;2844](https://github.com/testcontainers/testcontainers-go/issues/2844)) [@&#8203;stevenh](https://github.com/stevenh) - fix!: data races ([#&#8203;2843](https://github.com/testcontainers/testcontainers-go/issues/2843)) [@&#8203;stevenh](https://github.com/stevenh) - fix: mongodb replicaset should work with auth ([#&#8203;2847](https://github.com/testcontainers/testcontainers-go/issues/2847)) [@&#8203;abhipranay](https://github.com/abhipranay) - fix: simplify fully-qualified image names ([#&#8203;2846](https://github.com/testcontainers/testcontainers-go/issues/2846)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - fix(compose): race condition ([#&#8203;2842](https://github.com/testcontainers/testcontainers-go/issues/2842)) [@&#8203;stevenh](https://github.com/stevenh) #### 📖 Documentation - docs: better contribution guidelines ([#&#8203;2893](https://github.com/testcontainers/testcontainers-go/issues/2893)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: fix new lifecycle hooks section ([#&#8203;2875](https://github.com/testcontainers/testcontainers-go/issues/2875)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs(mysql|neo4j): remove default image codeblock ([#&#8203;2860](https://github.com/testcontainers/testcontainers-go/issues/2860)) [@&#8203;mdelapenya](https://github.com/mdelapenya) #### 🧹 Housekeeping - chore(deps): bump jinja2 from 3.1.4 to 3.1.5 ([#&#8203;2935](https://github.com/testcontainers/testcontainers-go/issues/2935)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump sonarsource/sonarcloud-github-action from 2.1.1 to 4.0.0 ([#&#8203;2933](https://github.com/testcontainers/testcontainers-go/issues/2933)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump slackapi/slack-github-action from 1.26.0 to 2.0.0 ([#&#8203;2934](https://github.com/testcontainers/testcontainers-go/issues/2934)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump github/codeql-action from 3.25.15 to 3.28.0 ([#&#8203;2932](https://github.com/testcontainers/testcontainers-go/issues/2932)) [@&#8203;dependabot](https://github.com/dependabot) - chore(ci): add Github labels based on PR title ([#&#8203;2914](https://github.com/testcontainers/testcontainers-go/issues/2914)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(gha): use official docker/setup-docker-action ([#&#8203;2913](https://github.com/testcontainers/testcontainers-go/issues/2913)) [@&#8203;vvoland](https://github.com/vvoland) - chore(ci): enforce conventional commits syntax in PR titles ([#&#8203;2911](https://github.com/testcontainers/testcontainers-go/issues/2911)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: enable implicit default logger only in testing with -v ([#&#8203;2877](https://github.com/testcontainers/testcontainers-go/issues/2877)) [@&#8203;apstndb](https://github.com/apstndb) - refactor(cockroachdb): to use request driven options ([#&#8203;2883](https://github.com/testcontainers/testcontainers-go/issues/2883)) [@&#8203;stevenh](https://github.com/stevenh) - fix: only upload to sonar on ubuntu-latest ([#&#8203;2891](https://github.com/testcontainers/testcontainers-go/issues/2891)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - fix: build artifact name properly ([#&#8203;2890](https://github.com/testcontainers/testcontainers-go/issues/2890)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - fix: do not run sonar upload when ryuk is disabled ([#&#8203;2889](https://github.com/testcontainers/testcontainers-go/issues/2889)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - feat(ci): Enable master moby with rootless ([#&#8203;2880](https://github.com/testcontainers/testcontainers-go/issues/2880)) [@&#8203;vvoland](https://github.com/vvoland) - chore: resolve AWS deprecations for localstack ([#&#8203;2879](https://github.com/testcontainers/testcontainers-go/issues/2879)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - fix: typo in containerd integration ([#&#8203;2873](https://github.com/testcontainers/testcontainers-go/issues/2873)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: use testify instead of t.Error ([#&#8203;2871](https://github.com/testcontainers/testcontainers-go/issues/2871)) [@&#8203;mmorel-35](https://github.com/mmorel-35) - golangci-lint: enable perfsprint linter ([#&#8203;2872](https://github.com/testcontainers/testcontainers-go/issues/2872)) [@&#8203;mmorel-35](https://github.com/mmorel-35) - fix: reuse testcontainers.RequireContainerExec ([#&#8203;2870](https://github.com/testcontainers/testcontainers-go/issues/2870)) [@&#8203;mmorel-35](https://github.com/mmorel-35) - feat(ci): Test against the nightly master moby ([#&#8203;2861](https://github.com/testcontainers/testcontainers-go/issues/2861)) [@&#8203;vvoland](https://github.com/vvoland) - chore: use require instead of t.Fatal (part 2) ([#&#8203;2857](https://github.com/testcontainers/testcontainers-go/issues/2857)) [@&#8203;mmorel-35](https://github.com/mmorel-35) - chore: remove unused lint directives ([#&#8203;2864](https://github.com/testcontainers/testcontainers-go/issues/2864)) [@&#8203;stevenh](https://github.com/stevenh) - fix: log test data race ([#&#8203;2863](https://github.com/testcontainers/testcontainers-go/issues/2863)) [@&#8203;stevenh](https://github.com/stevenh) - chore(rabbitmq): refactor assertEntity in tests ([#&#8203;2856](https://github.com/testcontainers/testcontainers-go/issues/2856)) [@&#8203;mmorel-35](https://github.com/mmorel-35) - chore: use require instead of t.Fatal ([#&#8203;2855](https://github.com/testcontainers/testcontainers-go/issues/2855)) [@&#8203;mmorel-35](https://github.com/mmorel-35) - chore: use require.Len instead of assert.Len ([#&#8203;2854](https://github.com/testcontainers/testcontainers-go/issues/2854)) [@&#8203;mmorel-35](https://github.com/mmorel-35) - chore: enable usestdlibvars linter ([#&#8203;2850](https://github.com/testcontainers/testcontainers-go/issues/2850)) [@&#8203;mmorel-35](https://github.com/mmorel-35) - chore: use require.(No)Error(t,err) instead of t.Fatal(err) ([#&#8203;2851](https://github.com/testcontainers/testcontainers-go/issues/2851)) [@&#8203;mmorel-35](https://github.com/mmorel-35) #### 📦 Dependency updates - chore(deps): bump jinja2 from 3.1.4 to 3.1.5 ([#&#8203;2935](https://github.com/testcontainers/testcontainers-go/issues/2935)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump sonarsource/sonarcloud-github-action from 2.1.1 to 4.0.0 ([#&#8203;2933](https://github.com/testcontainers/testcontainers-go/issues/2933)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump slackapi/slack-github-action from 1.26.0 to 2.0.0 ([#&#8203;2934](https://github.com/testcontainers/testcontainers-go/issues/2934)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump github/codeql-action from 3.25.15 to 3.28.0 ([#&#8203;2932](https://github.com/testcontainers/testcontainers-go/issues/2932)) [@&#8203;dependabot](https://github.com/dependabot) - security(deps): bump golang.org/x/crypto from 0.28.0 to 0.31.0 ([#&#8203;2916](https://github.com/testcontainers/testcontainers-go/issues/2916)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump actions/setup-go from 5.0.0 to 5.1.0 ([#&#8203;2904](https://github.com/testcontainers/testcontainers-go/issues/2904)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump ossf/scorecard-action from 2.3.1 to 2.4.0 ([#&#8203;2903](https://github.com/testcontainers/testcontainers-go/issues/2903)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump test-summary/action from 2.3 to 2.4 ([#&#8203;2902](https://github.com/testcontainers/testcontainers-go/issues/2902)) [@&#8203;dependabot](https://github.com/dependabot) - fix: update GH actions for uploading/downloading artifacts ([#&#8203;2888](https://github.com/testcontainers/testcontainers-go/issues/2888)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - feat(ci): Enable master moby with rootless ([#&#8203;2880](https://github.com/testcontainers/testcontainers-go/issues/2880)) [@&#8203;vvoland](https://github.com/vvoland) - chore(deps): bump actions/download-artifact from 3.0.2 to 4.1.8 ([#&#8203;2676](https://github.com/testcontainers/testcontainers-go/issues/2676)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump actions/upload-artifact from 3.1.3 to 4.4.3 ([#&#8203;2885](https://github.com/testcontainers/testcontainers-go/issues/2885)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump mkdocs-include-markdown-plugin from 6.0.4 to 6.2.2 ([#&#8203;2806](https://github.com/testcontainers/testcontainers-go/issues/2806)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump mkdocs-markdownextradata-plugin from 0.2.5 to 0.2.6 ([#&#8203;2807](https://github.com/testcontainers/testcontainers-go/issues/2807)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump golangci/golangci-lint-action from 6.1.0 to 6.1.1 ([#&#8203;2868](https://github.com/testcontainers/testcontainers-go/issues/2868)) [@&#8203;dependabot](https://github.com/dependabot) - chore: bump ryuk to 0.11.0 ([#&#8203;2853](https://github.com/testcontainers/testcontainers-go/issues/2853)) [@&#8203;mdelapenya](https://github.com/mdelapenya) ### [`v0.34.1`](https://github.com/testcontainers/testcontainers-go/compare/v0.34.0...v0.34.1) [Compare Source](https://github.com/testcontainers/testcontainers-go/compare/v0.34.0...v0.34.1) ### [`v0.34.0`](https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0) [Compare Source](https://github.com/testcontainers/testcontainers-go/compare/v0.33.0...v0.34.0) ### What's Changed #### 🚀 Features - feat: add meilisearch-module ([#&#8203;2835](https://github.com/testcontainers/testcontainers-go/issues/2835)) [@&#8203;mashail](https://github.com/mashail) - feat: add yugabytedb module ([#&#8203;2825](https://github.com/testcontainers/testcontainers-go/issues/2825)) [@&#8203;henripqt](https://github.com/henripqt) - feat: add etcd module ([#&#8203;2788](https://github.com/testcontainers/testcontainers-go/issues/2788)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - feat: add dynamodb-local module ([#&#8203;2799](https://github.com/testcontainers/testcontainers-go/issues/2799)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - feat: support databend module ([#&#8203;2779](https://github.com/testcontainers/testcontainers-go/issues/2779)) [@&#8203;hantmac](https://github.com/hantmac) - feat(mongodb): Wait for mongodb module with a replicaset to finish ([#&#8203;2777](https://github.com/testcontainers/testcontainers-go/issues/2777)) [@&#8203;smgt](https://github.com/smgt) - feat: expose functions for resource clean up in tests and examples ([#&#8203;2738](https://github.com/testcontainers/testcontainers-go/issues/2738)) [@&#8203;stevenh](https://github.com/stevenh) - feat(wait): for file ([#&#8203;2731](https://github.com/testcontainers/testcontainers-go/issues/2731)) [@&#8203;stevenh](https://github.com/stevenh) - feat(compose): select services via profiles ([#&#8203;2758](https://github.com/testcontainers/testcontainers-go/issues/2758)) [@&#8203;ngrash](https://github.com/ngrash) #### 🐛 Bug Fixes - fix(postgres): duplicate snapshot name ([#&#8203;2840](https://github.com/testcontainers/testcontainers-go/issues/2840)) [@&#8203;stevenh](https://github.com/stevenh) - fix(reaper): refactor to allow retries and fix races ([#&#8203;2728](https://github.com/testcontainers/testcontainers-go/issues/2728)) [@&#8203;stevenh](https://github.com/stevenh) - fix: update module container struct name and missing imports ([#&#8203;2831](https://github.com/testcontainers/testcontainers-go/issues/2831)) [@&#8203;henripqt](https://github.com/henripqt) - fix(redpanda): wait for ([#&#8203;2794](https://github.com/testcontainers/testcontainers-go/issues/2794)) [@&#8203;stevenh](https://github.com/stevenh) - fix(elasticsearch): wait for ([#&#8203;2724](https://github.com/testcontainers/testcontainers-go/issues/2724)) [@&#8203;stevenh](https://github.com/stevenh) - fix(grafana): update module path ([#&#8203;2797](https://github.com/testcontainers/testcontainers-go/issues/2797)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - fix: container logging deadlocks ([#&#8203;2791](https://github.com/testcontainers/testcontainers-go/issues/2791)) [@&#8203;stevenh](https://github.com/stevenh) - fix: parallel containers clean race ([#&#8203;2790](https://github.com/testcontainers/testcontainers-go/issues/2790)) [@&#8203;stevenh](https://github.com/stevenh) - fix(registry): wait for ([#&#8203;2793](https://github.com/testcontainers/testcontainers-go/issues/2793)) [@&#8203;stevenh](https://github.com/stevenh) - fix: handle 127 error code for podman compatibility ([#&#8203;2778](https://github.com/testcontainers/testcontainers-go/issues/2778)) [@&#8203;vchandela](https://github.com/vchandela) - fix: do not override ImageBuildOptions.Labels when building from a Dockerfile ([#&#8203;2775](https://github.com/testcontainers/testcontainers-go/issues/2775)) [@&#8203;rzajac](https://github.com/rzajac) - fix(postgres): Apply default snapshot name if no name specified ([#&#8203;2783](https://github.com/testcontainers/testcontainers-go/issues/2783)) [@&#8203;kiview](https://github.com/kiview) - fix: docker config error handling when config file does not exist ([#&#8203;2772](https://github.com/testcontainers/testcontainers-go/issues/2772)) [@&#8203;stevenh](https://github.com/stevenh) - fix: check if the discovered docker socket responds ([#&#8203;2741](https://github.com/testcontainers/testcontainers-go/issues/2741)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - Fix trailing slash on Image Prefix ([#&#8203;2747](https://github.com/testcontainers/testcontainers-go/issues/2747)) [@&#8203;driverpt](https://github.com/driverpt) #### 📖 Documentation - docs: document redpanda options ([#&#8203;2789](https://github.com/testcontainers/testcontainers-go/issues/2789)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: refine heading badges in README ([#&#8203;2770](https://github.com/testcontainers/testcontainers-go/issues/2770)) [@&#8203;mdelapenya](https://github.com/mdelapenya) #### 🧹 Housekeeping - fix: use `Contains` or `ErrorContains` with testify ([#&#8203;2839](https://github.com/testcontainers/testcontainers-go/issues/2839)) [@&#8203;mmorel-35](https://github.com/mmorel-35) - golangci-lint: enable thelper linter ([#&#8203;2834](https://github.com/testcontainers/testcontainers-go/issues/2834)) [@&#8203;mmorel-35](https://github.com/mmorel-35) - chore: update ryuk to 0.10.2 ([#&#8203;2833](https://github.com/testcontainers/testcontainers-go/issues/2833)) [@&#8203;stevenh](https://github.com/stevenh) - chore: replace 'assert' with 'require' ([#&#8203;2827](https://github.com/testcontainers/testcontainers-go/issues/2827)) [@&#8203;JoelLau](https://github.com/JoelLau) - chore: replace 'assert' with 'require' for critical checks ([#&#8203;2824](https://github.com/testcontainers/testcontainers-go/issues/2824)) [@&#8203;JoelLau](https://github.com/JoelLau) - feat: add require for critical checks ([#&#8203;2812](https://github.com/testcontainers/testcontainers-go/issues/2812)) [@&#8203;AshutoshKD](https://github.com/AshutoshKD) - fix: container timeout test ([#&#8203;2792](https://github.com/testcontainers/testcontainers-go/issues/2792)) [@&#8203;stevenh](https://github.com/stevenh) - chore: golangci-lint 1.61.0 ([#&#8203;2787](https://github.com/testcontainers/testcontainers-go/issues/2787)) [@&#8203;stevenh](https://github.com/stevenh) - ci: add generate for mocks ([#&#8203;2774](https://github.com/testcontainers/testcontainers-go/issues/2774)) [@&#8203;stevenh](https://github.com/stevenh) - chore: avoid using of log.Fatal in main in tests ([#&#8203;2739](https://github.com/testcontainers/testcontainers-go/issues/2739)) [@&#8203;stevenh](https://github.com/stevenh) #### 📦 Dependency updates - chore: update ryuk to 0.10.2 ([#&#8203;2833](https://github.com/testcontainers/testcontainers-go/issues/2833)) [@&#8203;stevenh](https://github.com/stevenh) - chore: bump ryuk to latest release ([#&#8203;2818](https://github.com/testcontainers/testcontainers-go/issues/2818)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(deps): bump release-drafter/release-drafter from 5.25.0 to 6.0.0 ([#&#8203;2805](https://github.com/testcontainers/testcontainers-go/issues/2805)) [@&#8203;dependabot](https://github.com/dependabot) - chore: update dockercfg module ([#&#8203;2801](https://github.com/testcontainers/testcontainers-go/issues/2801)) [@&#8203;stevenh](https://github.com/stevenh) - fix: template for code generation ([#&#8203;2800](https://github.com/testcontainers/testcontainers-go/issues/2800)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: use a much smaller image for testing ([#&#8203;2795](https://github.com/testcontainers/testcontainers-go/issues/2795)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - fix(mssql): bump Docker image version ([#&#8203;2786](https://github.com/testcontainers/testcontainers-go/issues/2786)) [@&#8203;stevenh](https://github.com/stevenh) - chore(deps): bump mkdocs-markdownextradata-plugin from 0.2.5 to 0.2.6 ([#&#8203;2761](https://github.com/testcontainers/testcontainers-go/issues/2761)) [@&#8203;dependabot](https://github.com/dependabot) - fix: update checkout action in template ([#&#8203;2763](https://github.com/testcontainers/testcontainers-go/issues/2763)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(deps): bump actions/checkout from 4.1.1 to 4.1.7 ([#&#8203;2762](https://github.com/testcontainers/testcontainers-go/issues/2762)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump mkdocs-include-markdown-plugin from 6.0.4 to 6.2.2 ([#&#8203;2760](https://github.com/testcontainers/testcontainers-go/issues/2760)) [@&#8203;dependabot](https://github.com/dependabot) - Upgrade milvus-io/milvus-sdk-go to avoid checksum mismatch. ([#&#8203;2753](https://github.com/testcontainers/testcontainers-go/issues/2753)) [@&#8203;HappyHacker123](https://github.com/HappyHacker123) - chore: use new testcontainers/ryuk:0.9.0 image ([#&#8203;2750](https://github.com/testcontainers/testcontainers-go/issues/2750)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(deps): bump minimal Go version from 1.21 to 1.22 ([#&#8203;2743](https://github.com/testcontainers/testcontainers-go/issues/2743)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(deps): bump github/codeql-action from 3.24.9 to 3.25.15 ([#&#8203;2677](https://github.com/testcontainers/testcontainers-go/issues/2677)) [@&#8203;dependabot](https://github.com/dependabot) ### [`v0.33.0`](https://github.com/testcontainers/testcontainers-go/releases/tag/v0.33.0) [Compare Source](https://github.com/testcontainers/testcontainers-go/compare/v0.32.0...v0.33.0) ### What's Changed #### ⚠️ Breaking Changes - fix!: docker authentication setup ([#&#8203;2727](https://github.com/testcontainers/testcontainers-go/issues/2727)) [@&#8203;stevenh](https://github.com/stevenh) If you are building Docker images with the `FromDockerfile` struct in the `GenericContainerRequest`, please consider that the `ContextArchive` field in that struct has changed from `io.Reader` to `io.ReadSeeker`. This is needed because we want to be able to rewind to do multiple passes when reading all the images that are present in a Dockerfile. #### 🔒 Security - chore(deps): bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible ([#&#8203;2733](https://github.com/testcontainers/testcontainers-go/issues/2733)) [@&#8203;mdelapenya](https://github.com/mdelapenya) #### 🚀 Features - feat(wait): skip internal host port check ([#&#8203;2691](https://github.com/testcontainers/testcontainers-go/issues/2691)) [@&#8203;stevenh](https://github.com/stevenh) - feat(redpanda): Add option for arbitrary bootstrap config ([#&#8203;2666](https://github.com/testcontainers/testcontainers-go/issues/2666)) [@&#8203;oleiman](https://github.com/oleiman) - feat(inbucket): expose POP3 and wait for all ports ([#&#8203;2690](https://github.com/testcontainers/testcontainers-go/issues/2690)) [@&#8203;stevenh](https://github.com/stevenh) - feat: add grafana-lgtm module ([#&#8203;2660](https://github.com/testcontainers/testcontainers-go/issues/2660)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - Added valkey module ([#&#8203;2639](https://github.com/testcontainers/testcontainers-go/issues/2639)) [@&#8203;JensvandeWiel](https://github.com/JensvandeWiel) - feat: add custom container registry substitutor ([#&#8203;2647](https://github.com/testcontainers/testcontainers-go/issues/2647)) [@&#8203;stillya](https://github.com/stillya) #### 🐛 Bug Fixes - fix: config via environment ([#&#8203;2725](https://github.com/testcontainers/testcontainers-go/issues/2725)) [@&#8203;stevenh](https://github.com/stevenh) - fix(redpanda): race condition on port check ([#&#8203;2692](https://github.com/testcontainers/testcontainers-go/issues/2692)) [@&#8203;stevenh](https://github.com/stevenh) - fix: logging restart ([#&#8203;2697](https://github.com/testcontainers/testcontainers-go/issues/2697)) [@&#8203;stevenh](https://github.com/stevenh) - fix(kafka): port race on start ([#&#8203;2696](https://github.com/testcontainers/testcontainers-go/issues/2696)) [@&#8203;stevenh](https://github.com/stevenh) - fix(compose): container locking ([#&#8203;2722](https://github.com/testcontainers/testcontainers-go/issues/2722)) [@&#8203;stevenh](https://github.com/stevenh) - fix: readiness hook back off ([#&#8203;2718](https://github.com/testcontainers/testcontainers-go/issues/2718)) [@&#8203;stevenh](https://github.com/stevenh) - fix(milvus): racy container setup ([#&#8203;2693](https://github.com/testcontainers/testcontainers-go/issues/2693)) [@&#8203;stevenh](https://github.com/stevenh) - fix: port forwarding race condition ([#&#8203;2686](https://github.com/testcontainers/testcontainers-go/issues/2686)) [@&#8203;stevenh](https://github.com/stevenh) - fix: missing image build errors ([#&#8203;2651](https://github.com/testcontainers/testcontainers-go/issues/2651)) [@&#8203;stevenh](https://github.com/stevenh) - fix: incorrect parsing of exposedPorts in readiness check ([#&#8203;2658](https://github.com/testcontainers/testcontainers-go/issues/2658)) [@&#8203;robinvanderstraeten-klarrio](https://github.com/robinvanderstraeten-klarrio) - fix: container.Endpoint and wait.FortHTTP to use lowest internal port ([#&#8203;2641](https://github.com/testcontainers/testcontainers-go/issues/2641)) [@&#8203;stevenh](https://github.com/stevenh) - Fix: Couchbase containers intermittently hang on startup ([#&#8203;2650](https://github.com/testcontainers/testcontainers-go/issues/2650)) [@&#8203;couchbaseEd](https://github.com/couchbaseEd) - chore(deps): bump Ryuk to 0.8.1 ([#&#8203;2648](https://github.com/testcontainers/testcontainers-go/issues/2648)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - fix: retry on label error ([#&#8203;2644](https://github.com/testcontainers/testcontainers-go/issues/2644)) [@&#8203;stevenh](https://github.com/stevenh) - fix: log output after context timeout ([#&#8203;2643](https://github.com/testcontainers/testcontainers-go/issues/2643)) [@&#8203;stevenh](https://github.com/stevenh) #### 📖 Documentation - docs: fix broken doc tags ([#&#8203;2732](https://github.com/testcontainers/testcontainers-go/issues/2732)) [@&#8203;stevenh](https://github.com/stevenh) - docs: improve docs for container methods ([#&#8203;2713](https://github.com/testcontainers/testcontainers-go/issues/2713)) [@&#8203;stevenh](https://github.com/stevenh) - docs: add consistent snippets for network creation ([#&#8203;2703](https://github.com/testcontainers/testcontainers-go/issues/2703)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: fix compilation of examples ([#&#8203;2656](https://github.com/testcontainers/testcontainers-go/issues/2656)) [@&#8203;alexandear](https://github.com/alexandear) #### 🧹 Housekeeping - fix: authentication tests on WSL ([#&#8203;2706](https://github.com/testcontainers/testcontainers-go/issues/2706)) [@&#8203;stevenh](https://github.com/stevenh) - fix(registry): compatibility with WSL ([#&#8203;2705](https://github.com/testcontainers/testcontainers-go/issues/2705)) [@&#8203;stevenh](https://github.com/stevenh) - chore: improve error wrapping in some docker container methods and compose module ([#&#8203;2720](https://github.com/testcontainers/testcontainers-go/issues/2720)) [@&#8203;stevenh](https://github.com/stevenh) - chore: run make tests in verbose mode ([#&#8203;2734](https://github.com/testcontainers/testcontainers-go/issues/2734)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: fix nginx request failures in tests ([#&#8203;2723](https://github.com/testcontainers/testcontainers-go/issues/2723)) [@&#8203;stevenh](https://github.com/stevenh) - chore(wait): log test timeout ([#&#8203;2716](https://github.com/testcontainers/testcontainers-go/issues/2716)) [@&#8203;stevenh](https://github.com/stevenh) - chore: increase timeout values ([#&#8203;2719](https://github.com/testcontainers/testcontainers-go/issues/2719)) [@&#8203;stevenh](https://github.com/stevenh) - chore: remove unused parameters ([#&#8203;2721](https://github.com/testcontainers/testcontainers-go/issues/2721)) [@&#8203;stevenh](https://github.com/stevenh) - chore(mockserver): silence warning about internal port ([#&#8203;2730](https://github.com/testcontainers/testcontainers-go/issues/2730)) [@&#8203;stevenh](https://github.com/stevenh) - fix: skip unhealthy ([#&#8203;2717](https://github.com/testcontainers/testcontainers-go/issues/2717)) [@&#8203;stevenh](https://github.com/stevenh) - fix: filter context errors from log production ([#&#8203;2715](https://github.com/testcontainers/testcontainers-go/issues/2715)) [@&#8203;stevenh](https://github.com/stevenh) - fix(compose): remove test volumes ([#&#8203;2712](https://github.com/testcontainers/testcontainers-go/issues/2712)) [@&#8203;stevenh](https://github.com/stevenh) - chore(mysql): add missing error check in example ([#&#8203;2707](https://github.com/testcontainers/testcontainers-go/issues/2707)) [@&#8203;stevenh](https://github.com/stevenh) - chore: remove unused params from defaultPreCreateHook ([#&#8203;2714](https://github.com/testcontainers/testcontainers-go/issues/2714)) [@&#8203;stevenh](https://github.com/stevenh) - chore(registry): disable build log ([#&#8203;2711](https://github.com/testcontainers/testcontainers-go/issues/2711)) [@&#8203;stevenh](https://github.com/stevenh) - chore: remove obsolete compose version ([#&#8203;2710](https://github.com/testcontainers/testcontainers-go/issues/2710)) [@&#8203;stevenh](https://github.com/stevenh) - chore: improve lifecycle errors ([#&#8203;2708](https://github.com/testcontainers/testcontainers-go/issues/2708)) [@&#8203;stevenh](https://github.com/stevenh) - test: add retry on system error test ([#&#8203;2687](https://github.com/testcontainers/testcontainers-go/issues/2687)) [@&#8203;stevenh](https://github.com/stevenh) - fix(wait): data race in test ([#&#8203;2698](https://github.com/testcontainers/testcontainers-go/issues/2698)) [@&#8203;stevenh](https://github.com/stevenh) - test(mongodb): fix replica test failures ([#&#8203;2699](https://github.com/testcontainers/testcontainers-go/issues/2699)) [@&#8203;stevenh](https://github.com/stevenh) - test: racy port creation in port forwarding tests ([#&#8203;2688](https://github.com/testcontainers/testcontainers-go/issues/2688)) [@&#8203;stevenh](https://github.com/stevenh) - test: fix image label test ([#&#8203;2689](https://github.com/testcontainers/testcontainers-go/issues/2689)) [@&#8203;stevenh](https://github.com/stevenh) - chore: print Docker Info labels in banner ([#&#8203;2681](https://github.com/testcontainers/testcontainers-go/issues/2681)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: test cleanups ([#&#8203;2657](https://github.com/testcontainers/testcontainers-go/issues/2657)) [@&#8203;alexandear](https://github.com/alexandear) - perf: optimise docker authentication config lookup ([#&#8203;2646](https://github.com/testcontainers/testcontainers-go/issues/2646)) [@&#8203;stevenh](https://github.com/stevenh) #### 📦 Dependency updates - chore(deps): bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible ([#&#8203;2733](https://github.com/testcontainers/testcontainers-go/issues/2733)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(deps): bump github.com/docker/docker from 27.0.3+incompatible to 27.1.0+incompatible ([#&#8203;2682](https://github.com/testcontainers/testcontainers-go/issues/2682)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(deps): bump Ryuk to 0.8.1 ([#&#8203;2648](https://github.com/testcontainers/testcontainers-go/issues/2648)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(deps): use "github.com/containerd/platforms" instead ([#&#8203;2638](https://github.com/testcontainers/testcontainers-go/issues/2638)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(deps): bump google.golang.org/grpc to 1.64.1 ([#&#8203;2635](https://github.com/testcontainers/testcontainers-go/issues/2635)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(deps): bump certifi from 2024.2.2 to 2024.7.4 ([#&#8203;2631](https://github.com/testcontainers/testcontainers-go/issues/2631)) [@&#8203;dependabot](https://github.com/dependabot) ### [`v0.32.0`](https://github.com/testcontainers/testcontainers-go/releases/tag/v0.32.0) [Compare Source](https://github.com/testcontainers/testcontainers-go/compare/v0.31.0...v0.32.0) ### What's Changed #### 🚀 Features - feat: honour go toolchain's verbose flag to print out logs ([#&#8203;2624](https://github.com/testcontainers/testcontainers-go/issues/2624)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - feat: prepare modules for the new API ([#&#8203;2610](https://github.com/testcontainers/testcontainers-go/issues/2610)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - feat(postgres): use faster sql.DB instead of docker exec psql for snapshot/restore \[rebased for main] ([#&#8203;2600](https://github.com/testcontainers/testcontainers-go/issues/2600)) [@&#8203;cfstras](https://github.com/cfstras) - feat: add azurite module ([#&#8203;2569](https://github.com/testcontainers/testcontainers-go/issues/2569)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - feat: add testcontainers labels to the built images ([#&#8203;2579](https://github.com/testcontainers/testcontainers-go/issues/2579)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - feat(mongodb): Make the replica set name configurable ([#&#8203;2538](https://github.com/testcontainers/testcontainers-go/issues/2538)) [@&#8203;shubhamrajvanshi](https://github.com/shubhamrajvanshi) - feat: add vearch module ([#&#8203;2560](https://github.com/testcontainers/testcontainers-go/issues/2560)) [@&#8203;zhanghexian](https://github.com/zhanghexian) - feat(ryuk): allow to configure ryuk timeouts using env variables ([#&#8203;2541](https://github.com/testcontainers/testcontainers-go/issues/2541)) [@&#8203;fcx-mrogez](https://github.com/fcx-mrogez) #### 🐛 Bug Fixes - fix: never cache JSON representation of a container ([#&#8203;2606](https://github.com/testcontainers/testcontainers-go/issues/2606)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - fix: Rename TC_HOST environment variable to TESTCONTAINERS_HOST_OVERRIDE ([#&#8203;2536](https://github.com/testcontainers/testcontainers-go/issues/2536)) [@&#8203;hanapedia](https://github.com/hanapedia) - fix: allow compose files and readers to be used together ([#&#8203;2598](https://github.com/testcontainers/testcontainers-go/issues/2598)) [@&#8203;BoKleynen](https://github.com/BoKleynen) - fix: proper synchronisation for start/stop log production ([#&#8203;2576](https://github.com/testcontainers/testcontainers-go/issues/2576)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - fix: prepend substitutors for built images ([#&#8203;2577](https://github.com/testcontainers/testcontainers-go/issues/2577)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - fix(cockroachdb): Fixes cockroachdb wait strategy handling ([#&#8203;2456](https://github.com/testcontainers/testcontainers-go/issues/2456)) [@&#8203;bearrito](https://github.com/bearrito) - Fix race condition when looking up reaper (ryuk) container ([#&#8203;2508](https://github.com/testcontainers/testcontainers-go/issues/2508)) [@&#8203;emetsger](https://github.com/emetsger) - Handle error properly during port forwarding initialization. ([#&#8203;2550](https://github.com/testcontainers/testcontainers-go/issues/2550)) [@&#8203;cedric-appdirect](https://github.com/cedric-appdirect) - Fix network accessor for port-forwarding feature ([#&#8203;2551](https://github.com/testcontainers/testcontainers-go/issues/2551)) [@&#8203;JulienBreux](https://github.com/JulienBreux) - fix: add import to module generation ([#&#8203;2537](https://github.com/testcontainers/testcontainers-go/issues/2537)) [@&#8203;mdelapenya](https://github.com/mdelapenya) #### 📖 Documentation - docs: indicate version for the Run function ([#&#8203;2627](https://github.com/testcontainers/testcontainers-go/issues/2627)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: document ryuk timeouts for compose ([#&#8203;2620](https://github.com/testcontainers/testcontainers-go/issues/2620)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: document disabling ryuk with properties ([#&#8203;2603](https://github.com/testcontainers/testcontainers-go/issues/2603)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: example for NATS cluster ([#&#8203;2591](https://github.com/testcontainers/testcontainers-go/issues/2591)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: fix deprecation warning for material extensions emoji ([#&#8203;2592](https://github.com/testcontainers/testcontainers-go/issues/2592)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: update contributing guide ([#&#8203;2586](https://github.com/testcontainers/testcontainers-go/issues/2586)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: update colima docs ([#&#8203;2578](https://github.com/testcontainers/testcontainers-go/issues/2578)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs(compose): Fix typo docker compose docs ([#&#8203;2565](https://github.com/testcontainers/testcontainers-go/issues/2565)) [@&#8203;ynfle](https://github.com/ynfle) - fix: update search bar eval in mkdocs ([#&#8203;2547](https://github.com/testcontainers/testcontainers-go/issues/2547)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: improve contributing docs for code snippets ([#&#8203;2546](https://github.com/testcontainers/testcontainers-go/issues/2546)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: document test session semantics ([#&#8203;2544](https://github.com/testcontainers/testcontainers-go/issues/2544)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - docs: fix CircleCI docs ([#&#8203;2539](https://github.com/testcontainers/testcontainers-go/issues/2539)) [@&#8203;mdelapenya](https://github.com/mdelapenya) #### 🧹 Housekeeping - Fix issues in BuildImage() ([#&#8203;2626](https://github.com/testcontainers/testcontainers-go/issues/2626)) [@&#8203;ash2k](https://github.com/ash2k) - chore: remove duplicated tests for config ([#&#8203;2628](https://github.com/testcontainers/testcontainers-go/issues/2628)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - Log retried errors ([#&#8203;2613](https://github.com/testcontainers/testcontainers-go/issues/2613)) [@&#8203;ash2k](https://github.com/ash2k) - fix: do not use deprecated method in postgres tests ([#&#8203;2623](https://github.com/testcontainers/testcontainers-go/issues/2623)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: use self-hosted worker for Windows tests ([#&#8203;2619](https://github.com/testcontainers/testcontainers-go/issues/2619)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: remove most uses of TestcontainersConfig and deprecated TestcontainersConfig fields. ([#&#8203;2614](https://github.com/testcontainers/testcontainers-go/issues/2614)) [@&#8203;thaJeztah](https://github.com/thaJeztah) - chore: test cleanups ([#&#8203;2608](https://github.com/testcontainers/testcontainers-go/issues/2608)) [@&#8203;ash2k](https://github.com/ash2k) - chore(ci): pass docker install type to the nightly build payload ([#&#8203;2612](https://github.com/testcontainers/testcontainers-go/issues/2612)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: run rootless mode in nighlty builds ([#&#8203;2611](https://github.com/testcontainers/testcontainers-go/issues/2611)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: improve log handling when container is stopping ([#&#8203;2601](https://github.com/testcontainers/testcontainers-go/issues/2601)) [@&#8203;ash2k](https://github.com/ash2k) - chore(tests): rename test variables to kill sshd container more consistently ([#&#8203;2597](https://github.com/testcontainers/testcontainers-go/issues/2597)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - network: WithCheckDuplicate: don't set CheckDuplicate value ([#&#8203;2589](https://github.com/testcontainers/testcontainers-go/issues/2589)) [@&#8203;thaJeztah](https://github.com/thaJeztah) - chore: skip reaper tests if ryuk is disabled ([#&#8203;2582](https://github.com/testcontainers/testcontainers-go/issues/2582)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: increase check time to 60 secs instead of 20 ([#&#8203;2581](https://github.com/testcontainers/testcontainers-go/issues/2581)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: bring golangci-lint back ([#&#8203;2571](https://github.com/testcontainers/testcontainers-go/issues/2571)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: use a virtualenv for working with the docs site ([#&#8203;2545](https://github.com/testcontainers/testcontainers-go/issues/2545)) [@&#8203;mdelapenya](https://github.com/mdelapenya) #### 📦 Dependency updates - chore(deps): bump mkdocs-include-markdown-plugin from 6.0.4 to 6.2.1 ([#&#8203;2617](https://github.com/testcontainers/testcontainers-go/issues/2617)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump peter-evans/slash-command-dispatch from 3.0.2 to 4.0.0 ([#&#8203;2561](https://github.com/testcontainers/testcontainers-go/issues/2561)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump github.com/docker/docker from v27.0.2 to v27.0.3 ([#&#8203;2615](https://github.com/testcontainers/testcontainers-go/issues/2615)) [@&#8203;thaJeztah](https://github.com/thaJeztah) - chore(deps): bump github.com/docker/docker from v26.1.4 to v27.0.2 ([#&#8203;2593](https://github.com/testcontainers/testcontainers-go/issues/2593)) [@&#8203;thaJeztah](https://github.com/thaJeztah) - chore(deps): bump github.com/hashicorp/go-retryablehttp from 0.7.2 to 0.7.7 in /modules/vault ([#&#8203;2605](https://github.com/testcontainers/testcontainers-go/issues/2605)) [@&#8203;dependabot](https://github.com/dependabot) - Add support for Weaviate v1.25 ([#&#8203;2604](https://github.com/testcontainers/testcontainers-go/issues/2604)) [@&#8203;antas-marcin](https://github.com/antas-marcin) - chore(deps): bump urllib3 from 2.2.1 to 2.2.2 ([#&#8203;2590](https://github.com/testcontainers/testcontainers-go/issues/2590)) [@&#8203;dependabot](https://github.com/dependabot) - docs: fix deprecation warning for material extensions emoji ([#&#8203;2592](https://github.com/testcontainers/testcontainers-go/issues/2592)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - gha: update golangci-lint to v1.59.1 ([#&#8203;2588](https://github.com/testcontainers/testcontainers-go/issues/2588)) [@&#8203;thaJeztah](https://github.com/thaJeztah) - chore(deps): bump github.com/docker/docker from v25.0.5 to v26.1.4 ([#&#8203;2584](https://github.com/testcontainers/testcontainers-go/issues/2584)) [@&#8203;thaJeztah](https://github.com/thaJeztah) - chore: pin vearch version ([#&#8203;2568](https://github.com/testcontainers/testcontainers-go/issues/2568)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore: run tests against latest Docker engine, nightly ([#&#8203;2566](https://github.com/testcontainers/testcontainers-go/issues/2566)) [@&#8203;mdelapenya](https://github.com/mdelapenya) - chore(deps): bump mkdocs-include-markdown-plugin from 6.0.4 to 6.0.7 ([#&#8203;2562](https://github.com/testcontainers/testcontainers-go/issues/2562)) [@&#8203;dependabot](https://github.com/dependabot) - chore(deps): bump requests from 2.31.0 to 2.32.0 ([#&#8203;2549](https://github.com/testcontainers/testcontainers-go/issues/2549)) [@&#8203;dependabot](https://github.com/dependabot) </details> --- ### Configuration 📅 **Schedule**: 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3NC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 13 additional dependencies were updated

Details:

Package Change
golang.org/x/sync v0.8.0 -> v0.10.0
github.com/Microsoft/go-winio v0.6.1 -> v0.6.2
github.com/Microsoft/hcsshim v0.11.4 -> v0.11.5
github.com/containerd/containerd v1.7.15 -> v1.7.18
github.com/cpuguy83/dockercfg v0.3.1 -> v0.3.2
github.com/distribution/reference v0.5.0 -> v0.6.0
github.com/docker/docker v25.0.5+incompatible -> v27.1.1+incompatible
github.com/klauspost/compress v1.16.0 -> v1.17.4
golang.org/x/crypto v0.27.0 -> v0.31.0
golang.org/x/sys v0.25.0 -> v0.28.0
golang.org/x/text v0.18.0 -> v0.21.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20230731190214-cbb8c96f2d6d -> v0.0.0-20240318140521-94a12d6c2237
google.golang.org/grpc v1.58.3 -> v1.64.1
### ℹ Artifact update notice ##### File name: go.mod In order to perform the update(s) described in the table above, Renovate ran the `go get` command, which resulted in the following additional change(s): - 13 additional dependencies were updated Details: | **Package** | **Change** | | :------------------------------------------ | :--------------------------------------------------------------------------- | | `golang.org/x/sync` | `v0.8.0` -> `v0.10.0` | | `github.com/Microsoft/go-winio` | `v0.6.1` -> `v0.6.2` | | `github.com/Microsoft/hcsshim` | `v0.11.4` -> `v0.11.5` | | `github.com/containerd/containerd` | `v1.7.15` -> `v1.7.18` | | `github.com/cpuguy83/dockercfg` | `v0.3.1` -> `v0.3.2` | | `github.com/distribution/reference` | `v0.5.0` -> `v0.6.0` | | `github.com/docker/docker` | `v25.0.5+incompatible` -> `v27.1.1+incompatible` | | `github.com/klauspost/compress` | `v1.16.0` -> `v1.17.4` | | `golang.org/x/crypto` | `v0.27.0` -> `v0.31.0` | | `golang.org/x/sys` | `v0.25.0` -> `v0.28.0` | | `golang.org/x/text` | `v0.18.0` -> `v0.21.0` | | `google.golang.org/genproto/googleapis/rpc` | `v0.0.0-20230731190214-cbb8c96f2d6d` -> `v0.0.0-20240318140521-94a12d6c2237` | | `google.golang.org/grpc` | `v1.58.3` -> `v1.64.1` |
forgejo-actions changed title from fix(deps): update module github.com/testcontainers/testcontainers-go to v0.32.0 to fix(deps): update module github.com/testcontainers/testcontainers-go to v0.33.0 2024-08-24 03:36:13 +00:00
forgejo-actions force-pushed renovate/testcontainers-go-monorepo from 57efbd0067 to 1a766c660a 2024-08-24 03:36:13 +00:00 Compare
forgejo-actions force-pushed renovate/testcontainers-go-monorepo from 1a766c660a to d5b758f217 2024-09-16 13:21:34 +00:00 Compare
forgejo-actions force-pushed renovate/testcontainers-go-monorepo from d5b758f217 to 952c8b630f 2024-10-13 03:35:37 +00:00 Compare
forgejo-actions force-pushed renovate/testcontainers-go-monorepo from 952c8b630f to 4aef180e04 2024-10-24 03:35:44 +00:00 Compare
forgejo-actions changed title from fix(deps): update module github.com/testcontainers/testcontainers-go to v0.33.0 to fix(deps): update module github.com/testcontainers/testcontainers-go to v0.34.0 2024-10-24 03:35:47 +00:00
forgejo-actions force-pushed renovate/testcontainers-go-monorepo from 4aef180e04 to 99a6cce00a 2025-02-28 03:40:37 +00:00 Compare
forgejo-actions changed title from fix(deps): update module github.com/testcontainers/testcontainers-go to v0.34.0 to fix(deps): update module github.com/testcontainers/testcontainers-go to v0.35.0 2025-02-28 03:40:41 +00:00
This pull request has changes conflicting with the target branch.
  • go.mod
  • go.sum
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/testcontainers-go-monorepo:renovate/testcontainers-go-monorepo
git switch renovate/testcontainers-go-monorepo

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/testcontainers-go-monorepo
git switch renovate/testcontainers-go-monorepo
git rebase main
git switch main
git merge --ff-only renovate/testcontainers-go-monorepo
git switch renovate/testcontainers-go-monorepo
git rebase main
git switch main
git merge --no-ff renovate/testcontainers-go-monorepo
git switch main
git merge --squash renovate/testcontainers-go-monorepo
git switch main
git merge --ff-only renovate/testcontainers-go-monorepo
git switch main
git merge renovate/testcontainers-go-monorepo
git push origin main
Sign in to join this conversation.
No description provided.