Skip to content

Commit c8a6639

Browse files
committed
chore(deps): upgrade Go version and dependencies
- Bump Go version from 1.24.0 to 1.25 - Update golang.org/x packages (mod, text, crypto, net, sys, term, tools) - Upgrade charmbracelet packages (colorprofile, ansi, cellbuf, term) - Update alecthomas/chroma/v2, goldmark, and other indirect deps - Add new tools module with hashicorp/copywrite dependency
1 parent 5819095 commit c8a6639

File tree

4 files changed

+700
-22
lines changed

4 files changed

+700
-22
lines changed

go.mod

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/RoseSecurity/kuzco
22

3-
go 1.24.0
3+
go 1.25
44

55
toolchain go1.25.7
66

@@ -17,15 +17,15 @@ require (
1717
github.com/mattn/go-colorable v0.1.14
1818
github.com/spf13/cobra v1.10.2
1919
github.com/stretchr/testify v1.11.1
20-
golang.org/x/mod v0.32.0
21-
golang.org/x/text v0.33.0
20+
golang.org/x/mod v0.33.0
21+
golang.org/x/text v0.34.0
2222
)
2323

2424
require (
2525
github.com/AlecAivazis/survey/v2 v2.3.7 // indirect
2626
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect
27-
github.com/agext/levenshtein v1.2.1 // indirect
28-
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
27+
github.com/agext/levenshtein v1.2.3 // indirect
28+
github.com/alecthomas/chroma/v2 v2.23.1 // indirect
2929
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
3030
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
3131
github.com/arsham/rainbow v1.2.1 // indirect
@@ -34,19 +34,22 @@ require (
3434
github.com/aymerick/douceur v0.2.0 // indirect
3535
github.com/bmatcuk/doublestar/v4 v4.6.0 // indirect
3636
github.com/bradleyfalzon/ghinstallation/v2 v2.5.0 // indirect
37-
github.com/charmbracelet/colorprofile v0.3.1 // indirect
38-
github.com/charmbracelet/x/ansi v0.8.0 // indirect
39-
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
40-
github.com/charmbracelet/x/exp/slice v0.0.0-20250327172914-2fdc97757edf // indirect
41-
github.com/charmbracelet/x/term v0.2.1 // indirect
37+
github.com/charmbracelet/colorprofile v0.4.2 // indirect
38+
github.com/charmbracelet/x/ansi v0.11.6 // indirect
39+
github.com/charmbracelet/x/cellbuf v0.0.15 // indirect
40+
github.com/charmbracelet/x/exp/slice v0.0.0-20260223200540-d6a276319c45 // indirect
41+
github.com/charmbracelet/x/term v0.2.2 // indirect
4242
github.com/cli/go-gh v1.2.1 // indirect
4343
github.com/cli/safeexec v1.0.0 // indirect
4444
github.com/cli/shurcooL-graphql v0.0.2 // indirect
45+
github.com/clipperhouse/displaywidth v0.11.0 // indirect
46+
github.com/clipperhouse/stringish v0.1.1 // indirect
47+
github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
4548
github.com/cloudflare/circl v1.6.1 // indirect
4649
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect
47-
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
50+
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
4851
github.com/davecgh/go-spew v1.1.1 // indirect
49-
github.com/dlclark/regexp2 v1.11.0 // indirect
52+
github.com/dlclark/regexp2 v1.11.5 // indirect
5053
github.com/fsnotify/fsnotify v1.6.0 // indirect
5154
github.com/go-openapi/errors v0.20.2 // indirect
5255
github.com/go-openapi/strfmt v0.21.3 // indirect
@@ -66,9 +69,9 @@ require (
6669
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
6770
github.com/knadh/koanf v1.5.0 // indirect
6871
github.com/kr/pretty v0.3.1 // indirect
69-
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
72+
github.com/lucasb-eyer/go-colorful v1.3.0 // indirect
7073
github.com/mattn/go-isatty v0.0.20 // indirect
71-
github.com/mattn/go-runewidth v0.0.16 // indirect
74+
github.com/mattn/go-runewidth v0.0.20 // indirect
7275
github.com/mergestat/timediff v0.0.3 // indirect
7376
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
7477
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
@@ -89,19 +92,19 @@ require (
8992
github.com/thanhpk/randstr v1.0.4 // indirect
9093
github.com/thlib/go-timezone-local v0.0.0-20210907160436-ef149e42d28e // indirect
9194
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
92-
github.com/yuin/goldmark v1.7.8 // indirect
93-
github.com/yuin/goldmark-emoji v1.0.5 // indirect
94-
github.com/zclconf/go-cty v1.16.3 // indirect
95+
github.com/yuin/goldmark v1.7.16 // indirect
96+
github.com/yuin/goldmark-emoji v1.0.6 // indirect
97+
github.com/zclconf/go-cty v1.18.0 // indirect
9598
go.mongodb.org/mongo-driver v1.10.0 // indirect
9699
go.yaml.in/yaml/v3 v3.0.4 // indirect
97-
golang.org/x/crypto v0.46.0 // indirect
100+
golang.org/x/crypto v0.48.0 // indirect
98101
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
99-
golang.org/x/net v0.48.0 // indirect
102+
golang.org/x/net v0.50.0 // indirect
100103
golang.org/x/oauth2 v0.30.0 // indirect
101104
golang.org/x/sync v0.19.0 // indirect
102-
golang.org/x/sys v0.39.0 // indirect
103-
golang.org/x/term v0.38.0 // indirect
104-
golang.org/x/tools v0.40.0 // indirect
105+
golang.org/x/sys v0.41.0 // indirect
106+
golang.org/x/term v0.40.0 // indirect
107+
golang.org/x/tools v0.42.0 // indirect
105108
google.golang.org/appengine v1.6.7 // indirect
106109
google.golang.org/protobuf v1.28.0 // indirect
107110
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)