Skip to content

Commit 37ec248

Browse files
authored
fix(v3): regenerate go.sum after refresh v1.0.0 bump (#5526) (#5532)
Commit #5526 bumped github.com/atterpac/refresh to v1.0.0 in v3/go.mod but left v3/go.sum with only the v0.8.6 checksums. Any build that runs with -mod=readonly (e.g. `task install` -> `go install ./cmd/wails3`, the "Build Wails3 CLI" CI step) therefore fails with: internal/commands/watcher.go:6:2: missing go.sum entry for module providing package github.com/atterpac/refresh/engine This breaks the template-build matrix on every open PR. The Go test jobs masked it because `task test:examples` runs `go mod tidy` first. `go mod tidy` regenerates the missing refresh v1.0.0 checksums and propagates the indirect bump of lmittmann/tint v1.0.3 -> v1.1.3 that refresh v1.0.0's go.mod requires (a refresh-only patch would next fail on a missing tint checksum).
1 parent aa31c67 commit 37ec248

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

v3/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ require (
5757
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
5858
github.com/google/uuid v1.6.0 // indirect
5959
github.com/konoui/go-qsort v0.1.0 // indirect
60-
github.com/lmittmann/tint v1.0.3 // indirect
60+
github.com/lmittmann/tint v1.1.3 // indirect
6161
github.com/mattn/go-localereader v0.0.1 // indirect
6262
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
6363
github.com/ncruces/go-strftime v1.0.0 // indirect

v3/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkY
6161
github.com/atomicgo/cursor v0.0.1/go.mod h1:cBON2QmmrysudxNBFthvMtN32r3jxVRIvzkUiF/RuIk=
6262
github.com/atotto/clipboard v0.1.4 h1:EH0zSVneZPSuFR11BlR9YppQTVDbh5+16AmcJi4g1z4=
6363
github.com/atotto/clipboard v0.1.4/go.mod h1:ZY9tmq7sm5xIbd9bOK4onWV4S6X0u6GY7Vn0Yu86PYI=
64-
github.com/atterpac/refresh v0.8.6 h1:Q5miKV2qs9jW+USw8WZ/54Zz8/RSh/bOz5U6JvvDZmM=
65-
github.com/atterpac/refresh v0.8.6/go.mod h1:fJpWySLdpbANS8Ej5OvfZVZIVvi/9bmnhTjKS5EjQes=
64+
github.com/atterpac/refresh v1.0.0 h1:IK/rh3w5cD7nb6GuqzfScIdNuAz/E0sZz10k1pioIFE=
65+
github.com/atterpac/refresh v1.0.0/go.mod h1:+vQ8OHgGmZ7wwoZfxxkT6Nr/gKA8j78Rbt+qcLLDEoc=
6666
github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k=
6767
github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8=
6868
github.com/aymanbagabas/go-udiff v0.3.1 h1:LV+qyBQ2pqe0u42ZsUEtPiCaUoqgA9gYRDs3vj1nolY=
@@ -256,8 +256,8 @@ github.com/leaanthony/winicon v1.0.0 h1:ZNt5U5dY71oEoKZ97UVwJRT4e+5xo5o/ieKuHuk8
256256
github.com/leaanthony/winicon v1.0.0/go.mod h1:en5xhijl92aphrJdmRPlh4NI1L6wq3gEm0LpXAPghjU=
257257
github.com/lithammer/fuzzysearch v1.1.8 h1:/HIuJnjHuXS8bKaiTMeeDlW2/AyIWk2brx1V8LFgLN4=
258258
github.com/lithammer/fuzzysearch v1.1.8/go.mod h1:IdqeyBClc3FFqSzYq/MXESsS4S0FsZ5ajtkr5xPLts4=
259-
github.com/lmittmann/tint v1.0.3 h1:W5PHeA2D8bBJVvabNfQD/XW9HPLZK1XoPZH0cq8NouQ=
260-
github.com/lmittmann/tint v1.0.3/go.mod h1:HIS3gSy7qNwGCj+5oRjAutErFBl4BzdQP6cJZ0NfMwE=
259+
github.com/lmittmann/tint v1.1.3 h1:Hv4EaHWXQr+GTFnOU4VKf8UvAtZgn0VuKT+G0wFlO3I=
260+
github.com/lmittmann/tint v1.1.3/go.mod h1:HIS3gSy7qNwGCj+5oRjAutErFBl4BzdQP6cJZ0NfMwE=
261261
github.com/lucasb-eyer/go-colorful v1.3.0 h1:2/yBRLdWBZKrf7gB40FoiKfAWYQ0lqNcbuQwVHXptag=
262262
github.com/lucasb-eyer/go-colorful v1.3.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
263263
github.com/matryer/is v1.4.1 h1:55ehd8zaGABKLXQUe2awZ99BD/PTc2ls+KV/dXphgEQ=

0 commit comments

Comments
 (0)