Skip to content

Commit 4488211

Browse files
committed
Update dependencies
Update all dependencies to the most recent version. This also fixes two low impact vulnerabilities in golang.org/x/net/html, which result in calls to Parse executing unexpectedly slow [1]. [1] go.dev/issue/75682
1 parent 4d9a5c5 commit 4488211

File tree

2 files changed

+82
-22
lines changed

2 files changed

+82
-22
lines changed

go.mod

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
module github.com/makeworld-the-better-one/amfora
22

3-
go 1.24
3+
go 1.24.0
44

55
require (
6-
code.rocketnine.space/tslocum/cview v1.5.6-0.20210530175404-7e8817f20bdc
6+
code.rocketnine.space/tslocum/cview v1.5.9
77
github.com/alecthomas/chroma v0.10.0
88
github.com/atotto/clipboard v0.1.4
99
github.com/dustin/go-humanize v1.0.1
10-
github.com/gdamore/tcell/v2 v2.6.0
10+
github.com/gdamore/tcell/v2 v2.9.0
1111
github.com/makeworld-the-better-one/go-gemini v0.13.1
1212
github.com/makeworld-the-better-one/go-gemini-socks5 v1.0.0
1313
github.com/makeworld-the-better-one/rr v1.0.0
1414
github.com/mitchellh/go-homedir v1.1.0
15-
github.com/mmcdole/gofeed v1.2.1
16-
github.com/muesli/termenv v0.15.2
15+
github.com/mmcdole/gofeed v1.3.0
16+
github.com/muesli/termenv v0.16.0
1717
github.com/rkoesters/xdg v0.0.1
18-
github.com/schollz/progressbar/v3 v3.13.1
19-
github.com/spf13/viper v1.16.0
20-
github.com/stretchr/testify v1.8.4
21-
golang.org/x/text v0.23.0
18+
github.com/schollz/progressbar/v3 v3.18.0
19+
github.com/spf13/viper v1.21.0
20+
github.com/stretchr/testify v1.11.1
21+
golang.org/x/text v0.30.0
2222
)
2323

2424
require (
@@ -28,30 +28,34 @@ require (
2828
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
2929
github.com/davecgh/go-spew v1.1.1 // indirect
3030
github.com/dlclark/regexp2 v1.4.0 // indirect
31-
github.com/fsnotify/fsnotify v1.6.0 // indirect
32-
github.com/gdamore/encoding v1.0.0 // indirect
31+
github.com/fsnotify/fsnotify v1.9.0 // indirect
32+
github.com/gdamore/encoding v1.0.1 // indirect
33+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
3334
github.com/hashicorp/hcl v1.0.0 // indirect
3435
github.com/json-iterator/go v1.1.12 // indirect
3536
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
3637
github.com/magiconair/properties v1.8.7 // indirect
37-
github.com/mattn/go-isatty v0.0.18 // indirect
38-
github.com/mattn/go-runewidth v0.0.14 // indirect
38+
github.com/mattn/go-isatty v0.0.20 // indirect
39+
github.com/mattn/go-runewidth v0.0.16 // indirect
3940
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
4041
github.com/mitchellh/mapstructure v1.5.0 // indirect
41-
github.com/mmcdole/goxpp v1.1.0 // indirect
42+
github.com/mmcdole/goxpp v1.1.1-0.20240225020742-a0c311522b23 // indirect
4243
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4344
github.com/modern-go/reflect2 v1.0.2 // indirect
44-
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
45+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
4546
github.com/pmezard/go-difflib v1.0.0 // indirect
46-
github.com/rivo/uniseg v0.4.3 // indirect
47-
github.com/spf13/afero v1.9.5 // indirect
48-
github.com/spf13/cast v1.5.1 // indirect
47+
github.com/rivo/uniseg v0.4.7 // indirect
48+
github.com/sagikazarmark/locafero v0.11.0 // indirect
49+
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
50+
github.com/spf13/afero v1.15.0 // indirect
51+
github.com/spf13/cast v1.10.0 // indirect
4952
github.com/spf13/jwalterweatherman v1.1.0 // indirect
50-
github.com/spf13/pflag v1.0.5 // indirect
51-
github.com/subosito/gotenv v1.4.2 // indirect
53+
github.com/spf13/pflag v1.0.10 // indirect
54+
github.com/subosito/gotenv v1.6.0 // indirect
55+
go.yaml.in/yaml/v3 v3.0.4 // indirect
5256
golang.org/x/net v0.38.0 // indirect
53-
golang.org/x/sys v0.31.0 // indirect
54-
golang.org/x/term v0.30.0 // indirect
57+
golang.org/x/sys v0.35.0 // indirect
58+
golang.org/x/term v0.34.0 // indirect
5559
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
5660
gopkg.in/ini.v1 v1.67.0 // indirect
5761
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)