Skip to content

Commit 1641e76

Browse files
committed
go.mod: Upgrade dependencies
1 parent bc3d497 commit 1641e76

File tree

2 files changed

+71
-68
lines changed

2 files changed

+71
-68
lines changed

go.mod

+23-22
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@ go 1.24
44

55
require (
66
github.com/BurntSushi/toml v1.4.0
7-
github.com/KimMachineGun/automemlimit v0.7.0
7+
github.com/KimMachineGun/automemlimit v0.7.1
88
github.com/Masterminds/sprig/v3 v3.3.0
9-
github.com/alecthomas/chroma/v2 v2.14.0
9+
github.com/alecthomas/chroma/v2 v2.15.0
1010
github.com/aryann/difflib v0.0.0-20210328193216-ff5ff6dc229b
11-
github.com/caddyserver/certmagic v0.21.8-0.20250220203412-a7894dd6992d
11+
github.com/caddyserver/certmagic v0.22.0
1212
github.com/caddyserver/zerossl v0.1.3
13-
github.com/cloudflare/circl v1.3.7
13+
github.com/cloudflare/circl v1.6.0
1414
github.com/dustin/go-humanize v1.0.1
15-
github.com/go-chi/chi/v5 v5.0.12
16-
github.com/google/cel-go v0.21.0
15+
github.com/go-chi/chi/v5 v5.2.1
16+
github.com/google/cel-go v0.24.1
1717
github.com/google/uuid v1.6.0
18-
github.com/klauspost/compress v1.17.11
19-
github.com/klauspost/cpuid/v2 v2.2.9
20-
github.com/mholt/acmez/v3 v3.0.1
18+
github.com/klauspost/compress v1.18.0
19+
github.com/klauspost/cpuid/v2 v2.2.10
20+
github.com/mholt/acmez/v3 v3.1.0
2121
github.com/prometheus/client_golang v1.19.1
2222
github.com/quic-go/quic-go v0.50.0
2323
github.com/smallstep/certificates v0.26.1
2424
github.com/smallstep/nosql v0.6.1
2525
github.com/smallstep/truststore v0.13.0
2626
github.com/spf13/cobra v1.9.1
2727
github.com/spf13/pflag v1.0.6
28-
github.com/stretchr/testify v1.9.0
28+
github.com/stretchr/testify v1.10.0
2929
github.com/tailscale/tscert v0.0.0-20240608151842-d3f834017e53
3030
github.com/yuin/goldmark v1.7.8
3131
github.com/yuin/goldmark-highlighting/v2 v2.0.0-20230729083705-37449abec8cc
@@ -37,17 +37,18 @@ require (
3737
go.uber.org/automaxprocs v1.6.0
3838
go.uber.org/zap v1.27.0
3939
go.uber.org/zap/exp v0.3.0
40-
golang.org/x/crypto v0.33.0
41-
golang.org/x/crypto/x509roots/fallback v0.0.0-20241104001025-71ed71b4faf9
42-
golang.org/x/net v0.33.0
43-
golang.org/x/sync v0.11.0
44-
golang.org/x/term v0.29.0
45-
golang.org/x/time v0.7.0
40+
golang.org/x/crypto v0.36.0
41+
golang.org/x/crypto/x509roots/fallback v0.0.0-20250305170421-49bf5b80c810
42+
golang.org/x/net v0.37.0
43+
golang.org/x/sync v0.12.0
44+
golang.org/x/term v0.30.0
45+
golang.org/x/time v0.11.0
4646
gopkg.in/natefinch/lumberjack.v2 v2.2.1
4747
gopkg.in/yaml.v3 v3.0.1
4848
)
4949

5050
require (
51+
cel.dev/expr v0.19.1 // indirect
5152
dario.cat/mergo v1.0.1 // indirect
5253
github.com/Microsoft/go-winio v0.6.0 // indirect
5354
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
@@ -95,7 +96,7 @@ require (
9596
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
9697
github.com/dgraph-io/ristretto v0.2.0 // indirect
9798
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
98-
github.com/dlclark/regexp2 v1.11.0 // indirect
99+
github.com/dlclark/regexp2 v1.11.4 // indirect
99100
github.com/felixge/httpsnoop v1.0.4 // indirect
100101
github.com/go-kit/kit v0.13.0 // indirect
101102
github.com/go-logfmt/logfmt v0.6.0 // indirect
@@ -120,7 +121,7 @@ require (
120121
github.com/mattn/go-colorable v0.1.13 // indirect
121122
github.com/mattn/go-isatty v0.0.20 // indirect
122123
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
123-
github.com/miekg/dns v1.1.62 // indirect
124+
github.com/miekg/dns v1.1.63 // indirect
124125
github.com/mitchellh/copystructure v1.2.0 // indirect
125126
github.com/mitchellh/go-ps v1.0.0 // indirect
126127
github.com/mitchellh/reflectwalk v1.0.2 // indirect
@@ -147,10 +148,10 @@ require (
147148
go.step.sm/crypto v0.45.0
148149
go.step.sm/linkedca v0.20.1 // indirect
149150
go.uber.org/multierr v1.11.0 // indirect
150-
golang.org/x/mod v0.18.0 // indirect
151-
golang.org/x/sys v0.30.0
152-
golang.org/x/text v0.22.0 // indirect
153-
golang.org/x/tools v0.22.0 // indirect
151+
golang.org/x/mod v0.24.0 // indirect
152+
golang.org/x/sys v0.31.0
153+
golang.org/x/text v0.23.0 // indirect
154+
golang.org/x/tools v0.31.0 // indirect
154155
google.golang.org/grpc v1.67.1 // indirect
155156
google.golang.org/protobuf v1.35.1 // indirect
156157
howett.net/plist v1.0.0 // indirect

0 commit comments

Comments
 (0)