Skip to content

Commit 816013a

Browse files
committed
DNM: Hack testcontainers to point to oleiman fork w/ WIP change
Signed-off-by: Oren Leiman <oren.leiman@redpanda.com>
1 parent 9e3fda4 commit 816013a

File tree

2 files changed

+81
-83
lines changed

2 files changed

+81
-83
lines changed

src/transform-sdk/tests/go.mod

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,36 @@ go 1.21.5
55
require (
66
github.com/hamba/avro v1.8.0
77
github.com/stretchr/testify v1.9.0
8-
github.com/testcontainers/testcontainers-go v0.29.1
8+
github.com/testcontainers/testcontainers-go v0.32.0
99
github.com/testcontainers/testcontainers-go/modules/redpanda v0.29.1
1010
github.com/twmb/franz-go v1.16.1
1111
github.com/twmb/franz-go/pkg/kadm v1.11.0
1212
)
1313

14+
require (
15+
github.com/containerd/platforms v0.2.1 // indirect
16+
github.com/kr/text v0.2.0 // indirect
17+
github.com/moby/docker-image-spec v1.3.1 // indirect
18+
)
19+
1420
require (
1521
dario.cat/mergo v1.0.0 // indirect
1622
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
17-
github.com/Microsoft/go-winio v0.6.1 // indirect
18-
github.com/Microsoft/hcsshim v0.11.4 // indirect
23+
github.com/Microsoft/go-winio v0.6.2 // indirect
1924
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
20-
github.com/containerd/containerd v1.7.12 // indirect
25+
github.com/containerd/containerd v1.7.18 // indirect
2126
github.com/containerd/log v0.1.0 // indirect
2227
github.com/cpuguy83/dockercfg v0.3.1 // indirect
2328
github.com/davecgh/go-spew v1.1.1 // indirect
24-
github.com/distribution/reference v0.5.0 // indirect
25-
github.com/docker/docker v25.0.3+incompatible // indirect
29+
github.com/distribution/reference v0.6.0 // indirect
30+
github.com/docker/docker v27.0.3+incompatible // indirect
2631
github.com/docker/go-connections v0.5.0 // indirect
2732
github.com/docker/go-units v0.5.0 // indirect
28-
github.com/felixge/httpsnoop v1.0.3 // indirect
29-
github.com/go-logr/logr v1.2.4 // indirect
33+
github.com/felixge/httpsnoop v1.0.4 // indirect
34+
github.com/go-logr/logr v1.4.1 // indirect
3035
github.com/go-logr/stdr v1.2.2 // indirect
3136
github.com/go-ole/go-ole v1.2.6 // indirect
3237
github.com/gogo/protobuf v1.3.2 // indirect
33-
github.com/golang/protobuf v1.5.3 // indirect
3438
github.com/google/uuid v1.6.0 // indirect
3539
github.com/json-iterator/go v1.1.12 // indirect
3640
github.com/klauspost/compress v1.17.4 // indirect
@@ -57,17 +61,16 @@ require (
5761
github.com/twmb/franz-go/pkg/kmsg v1.7.0 // indirect
5862
github.com/twmb/franz-go/pkg/sr v0.0.0-20240307025822-351e7fae879c
5963
github.com/yusufpapurcu/wmi v1.2.3 // indirect
60-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 // indirect
61-
go.opentelemetry.io/otel v1.19.0 // indirect
62-
go.opentelemetry.io/otel/metric v1.19.0 // indirect
63-
go.opentelemetry.io/otel/trace v1.19.0 // indirect
64-
golang.org/x/crypto v0.17.0 // indirect
65-
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea // indirect
64+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
65+
go.opentelemetry.io/otel v1.24.0 // indirect
66+
go.opentelemetry.io/otel/metric v1.24.0 // indirect
67+
go.opentelemetry.io/otel/trace v1.24.0 // indirect
68+
golang.org/x/crypto v0.24.0 // indirect
6669
golang.org/x/mod v0.16.0 // indirect
67-
golang.org/x/sys v0.16.0 // indirect
68-
golang.org/x/tools v0.13.0 // indirect
69-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect
70-
google.golang.org/grpc v1.58.3 // indirect
71-
google.golang.org/protobuf v1.31.0 // indirect
70+
golang.org/x/sys v0.21.0 // indirect
7271
gopkg.in/yaml.v3 v3.0.1 // indirect
7372
)
73+
74+
replace github.com/testcontainers/testcontainers-go => github.com/oleiman/testcontainers-go v0.0.0-20240723175732-86985f06fabb
75+
76+
replace github.com/testcontainers/testcontainers-go/modules/redpanda => github.com/oleiman/testcontainers-go/modules/redpanda v0.0.0-20240723175732-86985f06fabb

0 commit comments

Comments
 (0)