-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update module charm.land/wish/v2 to v2.0.4 #37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,23 @@ | ||
| module github.com/ben-ranford/stave/adapters/ssh | ||
|
|
||
| go 1.26.0 | ||
| go 1.26.8 | ||
|
|
||
| require ( | ||
| charm.land/ssh v0.4.3 | ||
| charm.land/wish/v2 v2.0.3 | ||
| charm.land/wish/v2 v2.0.4 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When maintainers consult Useful? React with 👍 / 👎. |
||
| github.com/ben-ranford/stave v0.0.0 | ||
| golang.org/x/crypto v0.57.0 | ||
| ) | ||
|
|
||
| require ( | ||
| charm.land/bubbletea/v2 v2.0.8 // indirect | ||
| charm.land/lipgloss/v2 v2.0.5 // indirect | ||
| charm.land/log/v2 v2.0.0 // indirect | ||
| charm.land/bubbletea/v2 v2.0.9 // indirect | ||
| charm.land/lipgloss/v2 v2.0.6 // indirect | ||
| charm.land/log/v2 v2.0.1 // indirect | ||
| github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect | ||
| github.com/charmbracelet/colorprofile v0.4.3 // indirect | ||
| github.com/charmbracelet/keygen v0.5.4 // indirect | ||
| github.com/charmbracelet/ultraviolet v0.0.0-20260703014108-f5a850f9c2b7 // indirect | ||
| github.com/charmbracelet/x/ansi v0.11.7 // indirect | ||
| github.com/charmbracelet/ultraviolet v0.0.0-20260906173415-0277a179edd9 // indirect | ||
| github.com/charmbracelet/x/ansi v0.11.8 // indirect | ||
| github.com/charmbracelet/x/conpty v0.2.0 // indirect | ||
| github.com/charmbracelet/x/term v0.2.2 // indirect | ||
| github.com/charmbracelet/x/termios v0.1.1 // indirect | ||
|
|
@@ -27,14 +27,14 @@ require ( | |
| github.com/clipperhouse/uax29/v2 v2.7.0 // indirect | ||
| github.com/creack/pty v1.1.24 // indirect | ||
| github.com/go-logfmt/logfmt v0.6.1 // indirect | ||
| github.com/lucasb-eyer/go-colorful v1.4.0 // indirect | ||
| github.com/mattn/go-runewidth v0.0.23 // indirect | ||
| github.com/lucasb-eyer/go-colorful v1.4.1 // indirect | ||
| github.com/mattn/go-runewidth v0.0.30 // indirect | ||
| github.com/muesli/cancelreader v0.2.2 // indirect | ||
| github.com/pires/go-proxyproto v0.12.0 // indirect | ||
| github.com/pires/go-proxyproto v0.15.0 // indirect | ||
| github.com/rivo/uniseg v0.4.7 // indirect | ||
| github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
| golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f // indirect | ||
| golang.org/x/sync v0.22.0 // indirect | ||
| github.com/xo/terminfo v1.0.0 // indirect | ||
| golang.org/x/exp v0.0.0-20260908205506-85c1c2202aba // indirect | ||
| golang.org/x/sync v0.23.0 // indirect | ||
| golang.org/x/sys v0.48.0 // indirect | ||
| ) | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With Wish v2.0.4 the module graph now raises this adapter's Go requirement to 1.26.8, but the version-pin section in
adapters/ssh/README.mdstill identifies Wish's toolchain declaration asgo 1.25.12. Maintainers following that audit information can select an insufficient toolchain, particularly withGOTOOLCHAIN=local, so update the documented declaration alongside this directive.Useful? React with 👍 / 👎.