Skip to content

Commit 55dbbd1

Browse files
authored
build(deps): bump go.mod and docker-compose to v5.0.2 (ddev#8045)
1 parent ee6c752 commit 55dbbd1

File tree

595 files changed

+32398
-29981
lines changed

Some content is hidden

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

595 files changed

+32398
-29981
lines changed

cmd/ddev/cmd/addon-get.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/ddev/ddev/pkg/util"
1818
"github.com/otiai10/copy"
1919
"github.com/spf13/cobra"
20-
"go.yaml.in/yaml/v3"
20+
"go.yaml.in/yaml/v4"
2121
)
2222

2323
// AddonGetCmd is the "ddev add-on get" command

cmd/ddev/cmd/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
copy2 "github.com/otiai10/copy"
1919
asrt "github.com/stretchr/testify/assert"
2020
"github.com/stretchr/testify/require"
21-
"go.yaml.in/yaml/v3"
21+
"go.yaml.in/yaml/v4"
2222
)
2323

2424
// TestCmdConfigHooks tests that pre-config and post-config hooks run

go.mod

Lines changed: 41 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,38 @@ require (
55
github.com/MakeNowJust/heredoc/v2 v2.0.1
66
github.com/Masterminds/semver/v3 v3.4.0
77
github.com/Masterminds/sprig/v3 v3.3.0
8-
github.com/amplitude/analytics-go v1.2.0
8+
github.com/amplitude/analytics-go v1.3.0
99
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
1010
github.com/cheggaaa/pb/v3 v3.1.7
11-
github.com/compose-spec/compose-go/v2 v2.9.1
11+
github.com/compose-spec/compose-go/v2 v2.10.1
1212
github.com/containerd/errdefs v1.0.0
1313
github.com/denisbrodbeck/machineid v1.0.1
14-
github.com/docker/cli v29.0.0+incompatible
15-
github.com/go-viper/mapstructure/v2 v2.4.0
16-
github.com/goodhosts/hostsfile v0.1.6
17-
github.com/google/go-github/v74 v74.0.0
14+
github.com/docker/cli v29.1.5+incompatible
15+
github.com/go-viper/mapstructure/v2 v2.5.0
16+
github.com/goodhosts/hostsfile v0.1.7
17+
github.com/google/go-github/v81 v81.0.0
1818
github.com/google/uuid v1.6.0
1919
github.com/hashicorp/go-retryablehttp v0.7.8
20-
github.com/jedib0t/go-pretty/v6 v6.6.8
20+
github.com/jedib0t/go-pretty/v6 v6.7.8
2121
github.com/joho/godotenv v1.5.1
2222
github.com/manifoldco/promptui v0.9.0
23-
github.com/maruel/natural v1.1.1
23+
github.com/maruel/natural v1.3.0
2424
github.com/mattn/go-isatty v0.0.20
2525
github.com/moby/moby/api v1.52.0
26-
github.com/moby/moby/client v0.1.0
26+
github.com/moby/moby/client v0.2.1
2727
github.com/moby/term v0.5.2
2828
github.com/otiai10/copy v1.14.1
29-
github.com/sirupsen/logrus v1.9.3
30-
github.com/spf13/cobra v1.10.1
29+
github.com/sirupsen/logrus v1.9.4
30+
github.com/spf13/cobra v1.10.2
3131
github.com/spf13/pflag v1.0.10
3232
github.com/stretchr/testify v1.11.1
3333
github.com/ulikunitz/xz v0.5.15
3434
github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1
35-
go.yaml.in/yaml/v3 v3.0.4
36-
golang.org/x/mod v0.28.0
37-
golang.org/x/sys v0.36.0
38-
golang.org/x/term v0.35.0
39-
golang.org/x/text v0.29.0
35+
go.yaml.in/yaml/v4 v4.0.0-rc.3
36+
golang.org/x/mod v0.32.0
37+
golang.org/x/sys v0.40.0
38+
golang.org/x/term v0.39.0
39+
golang.org/x/text v0.33.0
4040
muzzammil.xyz/jsonc v1.0.0
4141
)
4242

@@ -46,14 +46,17 @@ require (
4646
github.com/Microsoft/go-winio v0.6.2 // indirect
4747
github.com/VividCortex/ewma v1.2.0 // indirect
4848
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
49+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4950
github.com/chzyer/readline v1.5.1 // indirect
51+
github.com/clipperhouse/stringish v0.1.1 // indirect
52+
github.com/clipperhouse/uax29/v2 v2.3.1 // indirect
5053
github.com/containerd/errdefs/pkg v0.3.0 // indirect
5154
github.com/containerd/log v0.1.0 // indirect
5255
github.com/davecgh/go-spew v1.1.1 // indirect
5356
github.com/dimchansky/utfbom v1.1.1 // indirect
5457
github.com/distribution/reference v0.6.0 // indirect
5558
github.com/docker/distribution v2.8.3+incompatible // indirect
56-
github.com/docker/docker-credential-helpers v0.9.4 // indirect
59+
github.com/docker/docker-credential-helpers v0.9.5 // indirect
5760
github.com/docker/go-connections v0.6.0 // indirect
5861
github.com/docker/go-metrics v0.0.1 // indirect
5962
github.com/docker/go-units v0.5.0 // indirect
@@ -62,49 +65,48 @@ require (
6265
github.com/fvbommel/sortorder v1.1.0 // indirect
6366
github.com/go-logr/logr v1.4.3 // indirect
6467
github.com/go-logr/stdr v1.2.2 // indirect
65-
github.com/google/go-querystring v1.1.0 // indirect
68+
github.com/google/go-querystring v1.2.0 // indirect
6669
github.com/gorilla/mux v1.8.1 // indirect
67-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect
70+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.4 // indirect
6871
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
6972
github.com/huandu/xstrings v1.5.0 // indirect
7073
github.com/inconshreveable/mousetrap v1.1.0 // indirect
7174
github.com/magefile/mage v1.15.0 // indirect
7275
github.com/mattn/go-colorable v0.1.14 // indirect
73-
github.com/mattn/go-runewidth v0.0.16 // indirect
76+
github.com/mattn/go-runewidth v0.0.19 // indirect
7477
github.com/mattn/go-shellwords v1.0.12 // indirect
7578
github.com/mitchellh/copystructure v1.2.0 // indirect
7679
github.com/mitchellh/reflectwalk v1.0.2 // indirect
7780
github.com/moby/docker-image-spec v1.3.1 // indirect
7881
github.com/moby/sys/atomicwriter v0.1.0 // indirect
7982
github.com/moby/sys/sequential v0.6.0 // indirect
80-
github.com/morikuni/aec v1.0.0 // indirect
83+
github.com/morikuni/aec v1.1.0 // indirect
8184
github.com/opencontainers/go-digest v1.0.0 // indirect
8285
github.com/opencontainers/image-spec v1.1.1 // indirect
8386
github.com/otiai10/mint v1.6.3 // indirect
8487
github.com/pmezard/go-difflib v1.0.0 // indirect
85-
github.com/rivo/uniseg v0.4.7 // indirect
8688
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
8789
github.com/shopspring/decimal v1.4.0 // indirect
8890
github.com/spf13/cast v1.10.0 // indirect
8991
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
9092
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
91-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 // indirect
92-
go.opentelemetry.io/otel v1.38.0 // indirect
93-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.38.0 // indirect
94-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0 // indirect
95-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.38.0 // indirect
96-
go.opentelemetry.io/otel/metric v1.38.0 // indirect
97-
go.opentelemetry.io/otel/sdk v1.38.0 // indirect
98-
go.opentelemetry.io/otel/sdk/metric v1.38.0 // indirect
99-
go.opentelemetry.io/otel/trace v1.38.0 // indirect
100-
go.opentelemetry.io/proto/otlp v1.8.0 // indirect
101-
golang.org/x/crypto v0.42.0 // indirect
102-
golang.org/x/net v0.44.0 // indirect
103-
golang.org/x/sync v0.17.0 // indirect
104-
google.golang.org/genproto/googleapis/api v0.0.0-20250908214217-97024824d090 // indirect
105-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250908214217-97024824d090 // indirect
106-
google.golang.org/grpc v1.75.1 // indirect
107-
google.golang.org/protobuf v1.36.9 // indirect
93+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.64.0 // indirect
94+
go.opentelemetry.io/otel v1.39.0 // indirect
95+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.39.0 // indirect
96+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 // indirect
97+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.39.0 // indirect
98+
go.opentelemetry.io/otel/metric v1.39.0 // indirect
99+
go.opentelemetry.io/otel/sdk v1.39.0 // indirect
100+
go.opentelemetry.io/otel/sdk/metric v1.39.0 // indirect
101+
go.opentelemetry.io/otel/trace v1.39.0 // indirect
102+
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
103+
golang.org/x/crypto v0.47.0 // indirect
104+
golang.org/x/net v0.49.0 // indirect
105+
golang.org/x/sync v0.19.0 // indirect
106+
google.golang.org/genproto/googleapis/api v0.0.0-20260120221211-b8f7ae30c516 // indirect
107+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260120221211-b8f7ae30c516 // indirect
108+
google.golang.org/grpc v1.78.0 // indirect
109+
google.golang.org/protobuf v1.36.11 // indirect
108110
gopkg.in/yaml.v3 v3.0.1 // indirect
109111
)
110112

0 commit comments

Comments
 (0)