Skip to content

Commit 3b698ad

Browse files
Update to the latest dependencies to handle security alerts (#23)
Fixes: CVE-2023-39325 CVE-2023-44487 GHSA-m425-mq94-257g
1 parent 236fb18 commit 3b698ad

File tree

2 files changed

+56
-481
lines changed

2 files changed

+56
-481
lines changed

go.mod

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,47 +3,47 @@ module github.com/metal-stack/pixie
33
go 1.21
44

55
require (
6-
github.com/metal-stack/metal-api v0.24.1
6+
github.com/metal-stack/metal-api v0.25.1
77
github.com/metal-stack/v v1.0.3
8-
github.com/pin/tftp/v3 v3.0.0
8+
github.com/pin/tftp/v3 v3.1.0
99
github.com/prometheus/client_golang v1.17.0
10-
github.com/spf13/cobra v1.7.0
11-
github.com/spf13/viper v1.17.0
10+
github.com/spf13/cobra v1.8.0
11+
github.com/spf13/viper v1.18.1
1212
github.com/stretchr/testify v1.8.4
1313
go.uber.org/zap v1.26.0
14-
golang.org/x/crypto v0.14.0
15-
golang.org/x/net v0.16.0
16-
google.golang.org/grpc v1.58.2
14+
golang.org/x/crypto v0.16.0
15+
golang.org/x/net v0.19.0
16+
google.golang.org/grpc v1.60.0
1717
)
1818

1919
require (
2020
github.com/beorn7/perks v1.0.1 // indirect
2121
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2222
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
23-
github.com/fsnotify/fsnotify v1.6.0 // indirect
23+
github.com/fsnotify/fsnotify v1.7.0 // indirect
2424
github.com/golang/protobuf v1.5.3 // indirect
2525
github.com/hashicorp/hcl v1.0.0 // indirect
2626
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2727
github.com/magiconair/properties v1.8.7 // indirect
28-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
28+
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
2929
github.com/mitchellh/mapstructure v1.5.0 // indirect
3030
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
3131
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
3232
github.com/prometheus/client_model v0.5.0 // indirect
33-
github.com/prometheus/common v0.44.0 // indirect
33+
github.com/prometheus/common v0.45.0 // indirect
3434
github.com/prometheus/procfs v0.12.0 // indirect
35-
github.com/sagikazarmark/locafero v0.3.0 // indirect
35+
github.com/sagikazarmark/locafero v0.4.0 // indirect
3636
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
3737
github.com/sourcegraph/conc v0.3.0 // indirect
38-
github.com/spf13/afero v1.10.0 // indirect
39-
github.com/spf13/cast v1.5.1 // indirect
38+
github.com/spf13/afero v1.11.0 // indirect
39+
github.com/spf13/cast v1.6.0 // indirect
4040
github.com/spf13/pflag v1.0.5 // indirect
4141
github.com/subosito/gotenv v1.6.0 // indirect
4242
go.uber.org/multierr v1.11.0 // indirect
43-
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
44-
golang.org/x/sys v0.13.0 // indirect
45-
golang.org/x/text v0.13.0 // indirect
46-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
43+
golang.org/x/exp v0.0.0-20231127185646-65229373498e // indirect
44+
golang.org/x/sys v0.15.0 // indirect
45+
golang.org/x/text v0.14.0 // indirect
46+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
4747
google.golang.org/protobuf v1.31.0 // indirect
4848
gopkg.in/ini.v1 v1.67.0 // indirect
4949
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)