Skip to content

Commit 07f1e7e

Browse files
fix(deps): update external go packages
1 parent eeee8f9 commit 07f1e7e

File tree

2 files changed

+176
-118
lines changed

2 files changed

+176
-118
lines changed

Diff for: go.mod

+55-34
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,84 @@
11
module github.com/lunarway/shuttle
22

3-
go 1.21
3+
go 1.23.0
44

5-
toolchain go1.22.4
5+
toolchain go1.24.1
66

77
require (
8-
github.com/Masterminds/sprig/v3 v3.2.3
8+
github.com/Masterminds/sprig/v3 v3.3.0
99
github.com/cli/safeexec v1.0.1
10-
github.com/go-cmd/cmd v1.4.2
10+
github.com/go-cmd/cmd v1.4.3
1111
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
12-
github.com/mitchellh/copystructure v1.1.1 // indirect
12+
github.com/mitchellh/copystructure v1.2.0 // indirect
1313
github.com/pkg/errors v0.9.1
14-
github.com/spf13/cobra v1.8.0
15-
github.com/stretchr/testify v1.9.0
16-
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8
14+
github.com/spf13/cobra v1.9.1
15+
github.com/stretchr/testify v1.10.0
16+
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394
1717
gopkg.in/yaml.v3 v3.0.1 // indirect
1818
)
1919

2020
require (
21-
dagger.io/dagger v0.11.6
21+
dagger.io/dagger v0.16.3
2222
github.com/AlecAivazis/survey/v2 v2.3.7
2323
github.com/google/uuid v1.6.0
2424
github.com/iancoleman/strcase v0.3.0
25-
github.com/matishsiao/goInfo v0.0.0-20210923090445-da2e3fa8d45f
26-
github.com/otiai10/copy v1.14.0
27-
golang.org/x/mod v0.18.0
28-
golang.org/x/sync v0.7.0
25+
github.com/matishsiao/goInfo v0.0.0-20241216093258-66a9250504d6
26+
github.com/otiai10/copy v1.14.1
27+
golang.org/x/mod v0.24.0
28+
golang.org/x/sync v0.12.0
2929
gopkg.in/yaml.v2 v2.4.0
3030
)
3131

3232
require (
33-
github.com/99designs/gqlgen v0.17.44 // indirect
34-
github.com/Khan/genqlient v0.7.0 // indirect
33+
dario.cat/mergo v1.0.1 // indirect
34+
github.com/99designs/gqlgen v0.17.66 // indirect
35+
github.com/Khan/genqlient v0.8.0 // indirect
3536
github.com/Masterminds/goutils v1.1.1 // indirect
36-
github.com/Masterminds/semver/v3 v3.2.0 // indirect
37-
github.com/adrg/xdg v0.4.0 // indirect
37+
github.com/Masterminds/semver/v3 v3.3.0 // indirect
38+
github.com/adrg/xdg v0.5.3 // indirect
39+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
3840
github.com/davecgh/go-spew v1.1.1 // indirect
39-
github.com/go-logr/logr v1.4.1 // indirect
41+
github.com/go-logr/logr v1.4.2 // indirect
4042
github.com/go-logr/stdr v1.2.2 // indirect
41-
github.com/huandu/xstrings v1.3.3 // indirect
42-
github.com/imdario/mergo v0.3.11 // indirect
43+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 // indirect
44+
github.com/huandu/xstrings v1.5.0 // indirect
4345
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4446
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
45-
github.com/mattn/go-colorable v0.1.13 // indirect
47+
github.com/mattn/go-colorable v0.1.14 // indirect
4648
github.com/mattn/go-isatty v0.0.20 // indirect
4749
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
4850
github.com/mitchellh/go-homedir v1.1.0 // indirect
49-
github.com/mitchellh/reflectwalk v1.0.1 // indirect
51+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
52+
github.com/otiai10/mint v1.6.3 // indirect
5053
github.com/pmezard/go-difflib v1.0.0 // indirect
51-
github.com/shopspring/decimal v1.2.0 // indirect
52-
github.com/sosodev/duration v1.2.0 // indirect
53-
github.com/spf13/cast v1.4.1 // indirect
54-
github.com/spf13/pflag v1.0.5 // indirect
55-
github.com/vektah/gqlparser/v2 v2.5.11 // indirect
56-
go.opentelemetry.io/otel v1.26.0 // indirect
57-
go.opentelemetry.io/otel/metric v1.26.0 // indirect
58-
go.opentelemetry.io/otel/trace v1.26.0 // indirect
59-
golang.org/x/crypto v0.9.0 // indirect
60-
golang.org/x/sys v0.21.0 // indirect
61-
golang.org/x/term v0.8.0 // indirect
62-
golang.org/x/text v0.14.0 // indirect
54+
github.com/shopspring/decimal v1.4.0 // indirect
55+
github.com/sosodev/duration v1.3.1 // indirect
56+
github.com/spf13/cast v1.7.0 // indirect
57+
github.com/spf13/pflag v1.0.6 // indirect
58+
github.com/vektah/gqlparser/v2 v2.5.23 // indirect
59+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
60+
go.opentelemetry.io/otel v1.34.0 // indirect
61+
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.8.0 // indirect
62+
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.8.0 // indirect
63+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.32.0 // indirect
64+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.32.0 // indirect
65+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.32.0 // indirect
66+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.32.0 // indirect
67+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.32.0 // indirect
68+
go.opentelemetry.io/otel/log v0.8.0 // indirect
69+
go.opentelemetry.io/otel/metric v1.34.0 // indirect
70+
go.opentelemetry.io/otel/sdk v1.34.0 // indirect
71+
go.opentelemetry.io/otel/sdk/log v0.8.0 // indirect
72+
go.opentelemetry.io/otel/sdk/metric v1.34.0 // indirect
73+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
74+
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
75+
golang.org/x/crypto v0.36.0 // indirect
76+
golang.org/x/net v0.37.0 // indirect
77+
golang.org/x/sys v0.31.0 // indirect
78+
golang.org/x/term v0.30.0 // indirect
79+
golang.org/x/text v0.23.0 // indirect
80+
google.golang.org/genproto/googleapis/api v0.0.0-20250106144421-5f5ef82da422 // indirect
81+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect
82+
google.golang.org/grpc v1.71.0 // indirect
83+
google.golang.org/protobuf v1.36.5 // indirect
6384
)

0 commit comments

Comments
 (0)