Skip to content

Commit dcbadba

Browse files
committed
Update deps
1 parent cf80051 commit dcbadba

File tree

408 files changed

+11259
-6883
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

408 files changed

+11259
-6883
lines changed

go.work.sum

Lines changed: 434 additions & 9 deletions
Large diffs are not rendered by default.

test/integration/go.mod

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ require (
1010
github.com/nginx/agent/v2 v2.0.0-00010101000000-000000000000
1111
github.com/sirupsen/logrus v1.9.3
1212
github.com/stretchr/testify v1.9.0
13-
github.com/testcontainers/testcontainers-go v0.23.0
14-
github.com/testcontainers/testcontainers-go/modules/compose v0.23.0
13+
github.com/testcontainers/testcontainers-go v0.27.0
14+
github.com/testcontainers/testcontainers-go/modules/compose v0.27.0
1515
google.golang.org/grpc v1.62.2
1616
)
1717

@@ -39,19 +39,18 @@ require (
3939
github.com/buger/goterm v1.0.4 // indirect
4040
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
4141
github.com/cespare/xxhash/v2 v2.3.0 // indirect
42-
github.com/compose-spec/compose-go v1.18.3 // indirect
42+
github.com/compose-spec/compose-go v1.20.2 // indirect
4343
github.com/containerd/console v1.0.4 // indirect
4444
github.com/containerd/containerd v1.7.11 // indirect
4545
github.com/containerd/continuity v0.4.3 // indirect
4646
github.com/containerd/log v0.1.0 // indirect
4747
github.com/containerd/typeurl/v2 v2.1.1 // indirect
4848
github.com/cpuguy83/dockercfg v0.3.1 // indirect
4949
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
50-
github.com/distribution/distribution/v3 v3.0.0-20230830064551-b9b19409cf45 // indirect
5150
github.com/distribution/reference v0.5.0 // indirect
52-
github.com/docker/buildx v0.11.2 // indirect
51+
github.com/docker/buildx v0.12.0 // indirect
5352
github.com/docker/cli v24.0.7+incompatible // indirect
54-
github.com/docker/compose/v2 v2.20.3 // indirect
53+
github.com/docker/compose/v2 v2.23.3 // indirect
5554
github.com/docker/distribution v2.8.3+incompatible // indirect
5655
github.com/docker/docker v27.1.1+incompatible // indirect
5756
github.com/docker/docker-credential-helpers v0.8.1 // indirect
@@ -85,6 +84,7 @@ require (
8584
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
8685
github.com/grpc-ecosystem/grpc-gateway/v2 v2.17.1 // indirect
8786
github.com/hashicorp/errwrap v1.1.0 // indirect
87+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
8888
github.com/hashicorp/go-multierror v1.1.1 // indirect
8989
github.com/hashicorp/go-version v1.6.0 // indirect
9090
github.com/hashicorp/hcl v1.0.0 // indirect
@@ -110,7 +110,8 @@ require (
110110
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
111111
github.com/miekg/pkcs11 v1.1.1 // indirect
112112
github.com/mitchellh/mapstructure v1.5.0 // indirect
113-
github.com/moby/buildkit v0.12.5 // indirect
113+
github.com/moby/buildkit v0.13.0-beta1.0.20231023114302-d5c1d785b042 // indirect
114+
github.com/moby/docker-image-spec v1.3.1 // indirect
114115
github.com/moby/locker v1.0.1 // indirect
115116
github.com/moby/patternmatcher v0.6.0 // indirect
116117
github.com/moby/spdystream v0.2.0 // indirect
@@ -129,6 +130,7 @@ require (
129130
github.com/opencontainers/go-digest v1.0.0 // indirect
130131
github.com/opencontainers/image-spec v1.1.0-rc5 // indirect
131132
github.com/opencontainers/runc v1.2.0-rc.3 // indirect
133+
github.com/opencontainers/runtime-spec v1.2.0 // indirect
132134
github.com/opentracing/opentracing-go v1.2.0 // indirect
133135
github.com/orcaman/concurrent-map v1.0.0 // indirect
134136
github.com/pelletier/go-toml v1.9.5 // indirect
@@ -164,7 +166,6 @@ require (
164166
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea // indirect
165167
github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 // indirect
166168
github.com/vardius/message-bus v1.1.5 // indirect
167-
github.com/weppos/publicsuffix-go v0.30.1 // indirect
168169
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
169170
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
170171
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
@@ -212,11 +213,6 @@ require (
212213
)
213214

214215
replace (
215-
github.com/containerd/containerd => github.com/containerd/containerd v1.7.11
216-
github.com/cucumber/godog => github.com/laurazard/godog v0.0.0-20220922095256-4c4b17abdae7
217-
github.com/docker/docker => github.com/docker/docker v24.0.9+incompatible
218-
github.com/moby/buildkit => github.com/moby/buildkit v0.12.5
219216
github.com/nginx/agent/sdk/v2 => ./../../sdk
220217
github.com/nginx/agent/v2 => ./../../
221-
github.com/opencontainers/runc => github.com/opencontainers/runc v1.2.0-rc.1
222218
)

test/integration/go.sum

Lines changed: 30 additions & 68 deletions
Large diffs are not rendered by default.

test/integration/vendor/github.com/compose-spec/compose-go/cli/options.go

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/integration/vendor/github.com/compose-spec/compose-go/dotenv/parser.go

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/integration/vendor/github.com/compose-spec/compose-go/loader/full-example.yml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/integration/vendor/github.com/compose-spec/compose-go/loader/include.go

Lines changed: 25 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/integration/vendor/github.com/compose-spec/compose-go/loader/interpolate.go

Lines changed: 0 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)