Skip to content

Commit 7f39116

Browse files
committed
build: bump all deps
1 parent bb875d9 commit 7f39116

File tree

3 files changed

+69
-88
lines changed

3 files changed

+69
-88
lines changed

Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,12 @@ graph: ## Graph generates a call graph that focuses on the specified package
145145
go-callvis -file "callvis" -focus "$(PKG_IMPORT_PATH)" ./cmd/fastly/
146146
@rm callvis.gv
147147

148+
.PHONY: deps-app-update
149+
deps-app-update: ## Update all application dependencies
150+
$(GO_BIN) get -u -d -t ./...
151+
$(GO_BIN) mod tidy
152+
if [ -d "vendor" ]; then $(GO_BIN) mod vendor; fi
153+
148154
.PHONY: help
149155
help:
150156
@printf "Targets\n"

go.mod

+21-23
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ go 1.21
44

55
require (
66
github.com/Masterminds/semver/v3 v3.2.1
7-
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
7+
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 // indirect
88
github.com/bep/debounce v1.2.1
99
github.com/blang/semver v3.5.1+incompatible
10-
github.com/dustinkirkland/golang-petname v0.0.0-20191129215211-8e5a1ed0cff0
10+
github.com/dustinkirkland/golang-petname v0.0.0-20231002161417-6a283f1aaaf2
1111
github.com/fastly/kingpin v2.1.12-0.20191105091915-95d230a53780+incompatible
1212
github.com/fatih/color v1.16.0
1313
github.com/frankban/quicktest v1.13.1 // indirect
@@ -17,7 +17,7 @@ require (
1717
github.com/mholt/archiver/v3 v3.5.1
1818
github.com/mitchellh/go-wordwrap v1.0.1
1919
github.com/mitchellh/mapstructure v1.5.0
20-
github.com/nicksnyder/go-i18n v1.10.1 // indirect
20+
github.com/nicksnyder/go-i18n v1.10.3 // indirect
2121
github.com/pelletier/go-toml v1.9.5
2222
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
2323
github.com/segmentio/textio v1.2.0
@@ -27,56 +27,54 @@ require (
2727
)
2828

2929
require (
30-
github.com/fastly/go-fastly/v9 v9.2.0
31-
github.com/hashicorp/cap v0.5.0
30+
github.com/fastly/go-fastly/v9 v9.2.1
31+
github.com/hashicorp/cap v0.6.0
3232
github.com/kennygrant/sanitize v1.2.4
3333
github.com/mholt/archiver v3.1.1+incompatible
3434
github.com/otiai10/copy v1.14.0
3535
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
3636
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
3737
github.com/theckman/yacspin v0.13.12
3838
golang.org/x/crypto v0.22.0
39-
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
39+
golang.org/x/exp v0.0.0-20240409090435-93d18d7e34b8
4040
golang.org/x/mod v0.17.0
4141
)
4242

4343
require (
44+
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
4445
github.com/kr/pretty v0.3.1 // indirect
4546
github.com/rogpeppe/go-internal v1.11.0 // indirect
46-
github.com/stretchr/testify v1.8.4 // indirect
47+
github.com/stretchr/testify v1.9.0 // indirect
4748
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
4849
)
4950

5051
require (
51-
github.com/andybalholm/brotli v1.0.5 // indirect
52-
github.com/coreos/go-oidc/v3 v3.5.0 // indirect
52+
github.com/andybalholm/brotli v1.1.0 // indirect
53+
github.com/coreos/go-oidc/v3 v3.10.0 // indirect
5354
github.com/davecgh/go-spew v1.1.1 // indirect
5455
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
5556
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
56-
github.com/golang/protobuf v1.5.2 // indirect
5757
github.com/golang/snappy v0.0.4 // indirect
5858
github.com/google/go-querystring v1.1.0 // indirect
5959
github.com/google/jsonapi v1.0.0 // indirect
6060
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
61-
github.com/hashicorp/go-hclog v1.4.0 // indirect
61+
github.com/hashicorp/go-hclog v1.6.3 // indirect
6262
github.com/hashicorp/go-uuid v1.0.3 // indirect
63-
github.com/klauspost/compress v1.16.6 // indirect
64-
github.com/klauspost/pgzip v1.2.5 // indirect
63+
github.com/klauspost/compress v1.17.8 // indirect
64+
github.com/klauspost/pgzip v1.2.6 // indirect
6565
github.com/mattn/go-colorable v0.1.13 // indirect
6666
github.com/mattn/go-runewidth v0.0.15 // indirect
67-
github.com/nwaples/rardecode v1.1.2 // indirect
68-
github.com/peterhellberg/link v1.1.0 // indirect
69-
github.com/pierrec/lz4/v4 v4.1.18 // indirect
67+
github.com/nwaples/rardecode v1.1.3 // indirect
68+
github.com/peterhellberg/link v1.2.0 // indirect
69+
github.com/pierrec/lz4/v4 v4.1.21 // indirect
7070
github.com/pmezard/go-difflib v1.0.0 // indirect
71-
github.com/rivo/uniseg v0.4.2 // indirect
72-
github.com/ulikunitz/xz v0.5.11 // indirect
71+
github.com/rivo/uniseg v0.4.7 // indirect
72+
github.com/ulikunitz/xz v0.5.12 // indirect
7373
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
74-
golang.org/x/net v0.21.0 // indirect
75-
golang.org/x/oauth2 v0.5.0 // indirect
76-
golang.org/x/sync v0.4.0 // indirect
74+
golang.org/x/net v0.24.0 // indirect
75+
golang.org/x/oauth2 v0.19.0 // indirect
76+
golang.org/x/sync v0.7.0 // indirect
7777
golang.org/x/text v0.14.0
78-
google.golang.org/appengine v1.6.7 // indirect
79-
google.golang.org/protobuf v1.33.0 // indirect
8078
gopkg.in/yaml.v2 v2.4.0 // indirect
8179
gopkg.in/yaml.v3 v3.0.1 // indirect
8280
)

0 commit comments

Comments
 (0)