Skip to content

Commit de65f0c

Browse files
committed
(chore) bump go version and deps
1 parent ac6163b commit de65f0c

File tree

2 files changed

+136
-144
lines changed

2 files changed

+136
-144
lines changed

go.mod

Lines changed: 21 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,45 @@
11
module github.com/ncode/tagit
22

3-
go 1.23
3+
go 1.25
44

55
require (
66
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
7-
github.com/hashicorp/consul/api v1.27.0
8-
github.com/spf13/cobra v1.8.0
9-
github.com/spf13/viper v1.18.2
10-
github.com/stretchr/testify v1.8.4
7+
github.com/hashicorp/consul/api v1.32.1
8+
github.com/spf13/cobra v1.10.1
9+
github.com/spf13/pflag v1.0.10
10+
github.com/spf13/viper v1.20.1
11+
github.com/stretchr/testify v1.10.0
1112
)
1213

1314
require (
1415
github.com/armon/go-metrics v0.4.1 // indirect
1516
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
16-
github.com/fatih/color v1.16.0 // indirect
17-
github.com/fsnotify/fsnotify v1.7.0 // indirect
17+
github.com/fatih/color v1.18.0 // indirect
18+
github.com/fsnotify/fsnotify v1.9.0 // indirect
19+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
1820
github.com/hashicorp/errwrap v1.1.0 // indirect
1921
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
20-
github.com/hashicorp/go-hclog v1.6.2 // indirect
22+
github.com/hashicorp/go-hclog v1.6.3 // indirect
2123
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
24+
github.com/hashicorp/go-metrics v0.5.4 // indirect
2225
github.com/hashicorp/go-multierror v1.1.1 // indirect
2326
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
2427
github.com/hashicorp/golang-lru v1.0.2 // indirect
25-
github.com/hashicorp/hcl v1.0.0 // indirect
26-
github.com/hashicorp/serf v0.10.1 // indirect
28+
github.com/hashicorp/serf v0.10.2 // indirect
2729
github.com/inconshreveable/mousetrap v1.1.0 // indirect
28-
github.com/magiconair/properties v1.8.7 // indirect
29-
github.com/mattn/go-colorable v0.1.13 // indirect
30+
github.com/mattn/go-colorable v0.1.14 // indirect
3031
github.com/mattn/go-isatty v0.0.20 // indirect
3132
github.com/mitchellh/go-homedir v1.1.0 // indirect
3233
github.com/mitchellh/mapstructure v1.5.0 // indirect
33-
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
34+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
3435
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
35-
github.com/sagikazarmark/locafero v0.4.0 // indirect
36-
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
37-
github.com/sourcegraph/conc v0.3.0 // indirect
38-
github.com/spf13/afero v1.11.0 // indirect
39-
github.com/spf13/cast v1.6.0 // indirect
40-
github.com/spf13/pflag v1.0.5 // indirect
36+
github.com/sagikazarmark/locafero v0.10.0 // indirect
37+
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
38+
github.com/spf13/afero v1.14.0 // indirect
39+
github.com/spf13/cast v1.9.2 // indirect
4140
github.com/subosito/gotenv v1.6.0 // indirect
42-
go.uber.org/multierr v1.11.0 // indirect
43-
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
44-
golang.org/x/sys v0.17.0 // indirect
45-
golang.org/x/text v0.14.0 // indirect
46-
gopkg.in/ini.v1 v1.67.0 // indirect
41+
golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b // indirect
42+
golang.org/x/sys v0.35.0 // indirect
43+
golang.org/x/text v0.28.0 // indirect
4744
gopkg.in/yaml.v3 v3.0.1 // indirect
4845
)

0 commit comments

Comments
 (0)