Skip to content

build(deps): bump the go-modules group across 1 directory with 2 updates - #10

Merged
thomas-mangin merged 1 commit into
mainfrom
dependabot/go_modules/go-modules-8f15168067
Aug 5, 2026
Merged

build(deps): bump the go-modules group across 1 directory with 2 updates#10
thomas-mangin merged 1 commit into
mainfrom
dependabot/go_modules/go-modules-8f15168067

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the go-modules group with 2 updates in the / directory: charm.land/wish/v2 and google.golang.org/grpc.

Updates charm.land/wish/v2 from 2.0.1 to 2.0.3

Release notes

Sourced from charm.land/wish/v2's releases.

v2.0.3

Panic containment

This release makes it no longer possible for a panic in your handler chain to take down the entire process.

The recover middleware was only guarding the middlewares you passed to it, and then called the next handler outside that protection, so a panic from anything downstream slipped through. The goroutine that forwards window size changes to a Bubble Tea program also had no recovery, and since the recover only catches panics on its own goroutine, the middleware could never have seen that one anyway.

Both are fixed. Panics get logged by your configured logger, and a panic in the resize watcher now quits the program so the session ends cleanly instead of leaving a broken resize handler.

This pairs with charm.land/ssh v0.4.2, which contains panics per connection down in the SSH layer.

Changelog

Fixed

  • 234f1859a76278e1209a0883b74e5905f103b455: fix: contain panics in the terminal resize watcher (@​taciturnaxolotl)
  • 14b2efd0fa0a0d0691aaba436bd29382a491b036: fix: recover from panics in the whole handler chain (@​taciturnaxolotl)

Other stuff


Thoughts? Questions? We love hearing from you. Feel free to reach out on X, Discord, Slack, The Fediverse, Bluesky.

v2.0.2

Bubbletea exec fix

This is a quick patch release with a bunch of small fixes.

Bubble Tea programs running under Wish's bubbletea.Middleware would not properly release the alternate screen when executing child processes via tea.Exec which caused child process output to appear "stacked" below the TUI instead of replacing it.

Awesome fix from @​puneet-chandna!

Changelog

Fixed

  • 6d395e56ed3d6d7bb6fca8a20264f717c2f685fc: fix(cmd): respect SetStdin/SetStdout/SetStderr for tea.Exec compatibility (#522) (@​puneet-chandna)

Docs

  • 7c4ea1bb0c669766b0debf0249851b93a82be089: docs: add more "built in" apps (#356) (@​nmccamish)
  • 88fc44c55801e97adba4989178b13da472ffbbf2: docs: fix README grammar (#536) (@​Rohan5commit)
  • 8b65ba4d623156dc7f288ddfbdce8820ee4784dc: docs: fix typo in root entry comment (#540) (@​Rohan5commit)

Other stuff

  • afd3308fe5281ba1657d22a9bb996ac40c6f4355: ci: sync dependabot config (#517) (@​charmcli)
  • 36d059934eb574d375682dac05185d89025d89b3: ci: sync golangci-lint config (#519) (@​github-actions[bot])
  • 8a42f8224e9a728b444b64aa61e1322c9b435586: fix(examples/multichat): fix textarea.Update call for value receiver of textarea.Model (#568) (@​darororo)
  • 873fd3471f5cb1c5f4b852514c81265c53975703: options: fix WithBanner / WithBannerHandler godoc to say 'returns' (#553) (@​c-tonneslan)
  • 38d0ae31de70ab7b09433a4ef37d60d02cfdcd24: refactor: replace interface{} with any (Go 1.18+) (#558) (@​MD-Mushfiqur123)
  • 781fc16194f65ccabaf36f09b7e4872099568de4: v2.0.2 (@​taciturnaxolotl)

... (truncated)

Commits
  • 76f2bdd v2.0.3
  • 1dc2e41 chore(deps): bump charm.land/ssh to v0.4.2
  • 234f185 fix: contain panics in the terminal resize watcher
  • 14b2efd fix: recover from panics in the whole handler chain
  • 781fc16 v2.0.2
  • 6d395e5 fix(cmd): respect SetStdin/SetStdout/SetStderr for tea.Exec compatibility (#522)
  • fa528aa chore: fix lint issues
  • 7c4ea1b docs: add more "built in" apps (#356)
  • 36d0599 ci: sync golangci-lint config (#519)
  • 873fd34 options: fix WithBanner / WithBannerHandler godoc to say 'returns' (#553)
  • Additional commits viewable in compare view

Updates google.golang.org/grpc from 1.82.1 to 1.83.0

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.83.0

Security

  • server: Stop reading from connections when flooded by HTTP/2 frames to mitigate resource exhaustion. The default value for this limit is 100 frames, excluding DATA and HEADERS, and may be changed by setting environment variable GRPC_GO_EXPERIMENTAL_CONTROL_BUFFER_THROTTLE_LIMIT.
  • xds/rbac: Support Metadata and RequestedServerName permissions matcher fields. If present in a DENY rule, previously these would be ignored and fail-open.
  • xds/rbac: Fix panic when parsing unsupported fields in NotRule/NotId permissions.
  • xds/rbac: Support the deprecated source_ip principal identifier by treating it as equivalent to direct_remote_ip.
  • xds: Fix panic when parsing route header matchers configured with empty exact_match, prefix_match, or suffix_match strings. (#9223)

New Features

  • xds/googlec2p: Enable DirectPath over Interconnect support for on-premises clients via the force-xds target URI query parameter. (#9133)
  • xds: Enable xDS configuration to control which fields get propagated from ORCA backend metric reports to LRS load reports. (#9145)
  • authz: Add OnPolicyUpdate callback to FileWatcherOptions to notify when an authz policy is loaded or updated. (#9142)
  • xds: Add support for the GCP Authentication HTTP Filter, which automatically fetches and attaches GCP Service Account Identity JWT tokens to outgoing RPCs.
    • This feature can be enabled by setting environment variable GRPC_EXPERIMENTAL_XDS_GCP_AUTHENTICATION_FILTER=true. (#9119)
  • xds: Add support for xDS-based HTTP CONNECT proxies.
    • This feature can be enabled by setting environment variable GRPC_EXPERIMENTAL_XDS_HTTP_CONNECT=true. (#9151)
  • xds: Add support for contains_match in route header matchers. (#9223)

Bug Fixes

  • credentials/alts: Fix panic when processing malformed frames by validating that the message frame length exceeds the message type field size. (#9197)
  • grpc: Fix compilation on Plan 9 targets (GOOS=plan9), broken since v1.81.0. (#9255)
Commits
  • 4c226da Change version to 1.83.0 (#9228)
  • c198988 Cherrypick 9223 into v1.83.x (#9279)
  • 8ce3ebf Cherrypick PR 9255 into v1.83.x (#9263)
  • e393849 Cherry-pick recent changes from master (#9240)
  • 2a112a8 authz: add onPolicyUpdate callback to authz file watcher (#9142)
  • 1a80fca vet: adds a check to disallow usage of regex.Compile in xDS code (#9216)
  • 26ffdb3 [tls] Add safety check in custom cert verification that peer cert chain is no...
  • 5013974 internal/grpcsync: add ScheduleAndWait to CallbackSerializer (#9162)
  • bd58bc0 internal/transport: increase test timeout locally in TestAccountCheckWindowSi...
  • 484f150 httpfilter/extproc: add check to ensure that response trailer mode must be SE...
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Aug 3, 2026
Bumps the go-modules group with 2 updates in the / directory: [charm.land/wish/v2](https://github.com/charmbracelet/wish) and [google.golang.org/grpc](https://github.com/grpc/grpc-go).


Updates `charm.land/wish/v2` from 2.0.1 to 2.0.3
- [Release notes](https://github.com/charmbracelet/wish/releases)
- [Commits](charmbracelet/wish@v2.0.1...v2.0.3)

Updates `google.golang.org/grpc` from 1.82.1 to 1.83.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.82.1...v1.83.0)

---
updated-dependencies:
- dependency-name: charm.land/wish/v2
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: google.golang.org/grpc
  dependency-version: 1.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the go-modules group with 2 updates build(deps): bump the go-modules group across 1 directory with 2 updates Aug 5, 2026
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/go-modules-8f15168067 branch from a345ecd to 6d7933c Compare August 5, 2026 08:54
@thomas-mangin
thomas-mangin merged commit 2d3c8e7 into main Aug 5, 2026
3 of 6 checks passed
@dependabot
dependabot Bot deleted the dependabot/go_modules/go-modules-8f15168067 branch August 5, 2026 21:23
thomas-mangin added a commit that referenced this pull request Aug 5, 2026
Thomas accepts the vendored github.com/gokrazy/updater as upstream ships
it. The local fork is retired, so everything that existed only to
maintain that fork goes with it.

Dependabot PR #10 (merge 2d3c8e7) re-vendored and reverted three of
the four local edits: the two io.LimitReader response caps, the five
http.NoBody request bodies, and slices.Contains in Supports(). Thomas
restored the upstream file, which is now the intended state rather than
a regression.

Removed: the re-apply script, the unmerged upstream patch, and the
marker test that failed when a re-vendor forgot the re-apply. Updated:
the pin table in ai/rules/platform-linux.md, and the govulncheck
workflow comment that named the marker test as the merge-gating
supply-chain guard. No always-run supply-chain guard gates merges now.

The appliance updater reads device responses with no size cap.

plan/learned/1195, 1233, 1254 and 1255 still name the deleted files.
Those are history and stay as written.
plan/spec-ipsec-opaque-selector-port-mask.md cites the fork as the
precedent for its route 1. It is a skeleton with no code, and Thomas
chose to leave it.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant