Skip to content

Commit 88b2601

Browse files
Bump github.com/testcontainers/testcontainers-go from 0.41.0 to 0.42.0 (#85)
* Bump github.com/testcontainers/testcontainers-go from 0.41.0 to 0.42.0 Bumps [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) from 0.41.0 to 0.42.0. - [Release notes](https://github.com/testcontainers/testcontainers-go/releases) - [Commits](testcontainers/testcontainers-go@v0.41.0...v0.42.0) --- updated-dependencies: - dependency-name: github.com/testcontainers/testcontainers-go dependency-version: 0.42.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump github.com/testcontainers/testcontainers-go from 0.41.0 to 0.42.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: TangRufus <tangrufus@gmail.com>
1 parent 1ebca9c commit 88b2601

3 files changed

Lines changed: 16 additions & 180 deletions

File tree

e2e/container/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func bootServer(t *testing.T, ctx context.Context, out io.Writer) (string, int)
127127
// TODO: The containers are in the same network.
128128
// There should be a way for them to connect without hopping to the host.
129129
// Maybe using compose? Maybe using custom networks? Maybe using the container name as the hostname?
130-
return "http://" + net.JoinHostPort(testcontainers.HostInternal, outerPort.Port()), outerPort.Int()
130+
return "http://" + net.JoinHostPort(testcontainers.HostInternal, outerPort.Port()), int(outerPort.Num())
131131
}
132132

133133
func exec(t *testing.T, ctx context.Context, c testcontainers.Container, cmd []string, opts ...tcexec.ProcessOption) {

go.mod

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.26.2
55
require (
66
github.com/google/go-cmp v0.7.0
77
github.com/rogpeppe/go-internal v1.14.1
8-
github.com/testcontainers/testcontainers-go v0.41.0
8+
github.com/testcontainers/testcontainers-go v0.42.0
99
github.com/typisttech/comver v0.3.2
1010
golang.org/x/mod v0.35.0
1111
golang.org/x/sync v0.20.0
@@ -16,7 +16,6 @@ require (
1616
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
1717
github.com/Microsoft/go-winio v0.6.2 // indirect
1818
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
19-
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
2019
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2120
github.com/containerd/errdefs v1.0.0 // indirect
2221
github.com/containerd/errdefs/pkg v0.3.0 // indirect
@@ -25,7 +24,6 @@ require (
2524
github.com/cpuguy83/dockercfg v0.3.2 // indirect
2625
github.com/davecgh/go-spew v1.1.1 // indirect
2726
github.com/distribution/reference v0.6.0 // indirect
28-
github.com/docker/docker v28.5.2+incompatible // indirect
2927
github.com/docker/go-connections v0.6.0 // indirect
3028
github.com/docker/go-units v0.5.0 // indirect
3129
github.com/ebitengine/purego v0.10.0 // indirect
@@ -39,15 +37,15 @@ require (
3937
github.com/magiconair/properties v1.8.10 // indirect
4038
github.com/moby/docker-image-spec v1.3.1 // indirect
4139
github.com/moby/go-archive v0.2.0 // indirect
40+
github.com/moby/moby/api v1.54.1 // indirect
41+
github.com/moby/moby/client v0.4.0 // indirect
4242
github.com/moby/patternmatcher v0.6.1 // indirect
4343
github.com/moby/sys/sequential v0.6.0 // indirect
4444
github.com/moby/sys/user v0.4.0 // indirect
4545
github.com/moby/sys/userns v0.1.0 // indirect
4646
github.com/moby/term v0.5.2 // indirect
47-
github.com/morikuni/aec v1.1.0 // indirect
4847
github.com/opencontainers/go-digest v1.0.0 // indirect
4948
github.com/opencontainers/image-spec v1.1.1 // indirect
50-
github.com/pkg/errors v0.9.1 // indirect
5149
github.com/pmezard/go-difflib v1.0.0 // indirect
5250
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
5351
github.com/shirou/gopsutil/v4 v4.26.3 // indirect
@@ -59,13 +57,10 @@ require (
5957
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
6058
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 // indirect
6159
go.opentelemetry.io/otel v1.42.0 // indirect
62-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 // indirect
6360
go.opentelemetry.io/otel/metric v1.42.0 // indirect
6461
go.opentelemetry.io/otel/trace v1.42.0 // indirect
65-
go.opentelemetry.io/proto/otlp v0.11.0 // indirect
6662
golang.org/x/crypto v0.49.0 // indirect
6763
golang.org/x/sys v0.42.0 // indirect
6864
golang.org/x/tools v0.43.0 // indirect
69-
google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad // indirect
7065
gopkg.in/yaml.v3 v3.0.1 // indirect
7166
)

0 commit comments

Comments
 (0)