fix(deps): update module charm.land/bubbletea/v2 to v2.0.6 (main) - #21616
Merged
Conversation
Contributor
Author
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
renovate-sh-app
Bot
force-pushed
the
deps-update/main-charm.landbubbleteav2
branch
2 times, most recently
from
April 20, 2026 13:07
9861d86 to
aab48fe
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed:
NewKeyboardEnhancementsignores three newly added flag bits- NewKeyboardEnhancements now decodes ReportAlternateKeys, ReportAllKeysAsEscapeCodes, and ReportAssociatedText from the corresponding kitty flag bits so flag round-trips are preserved.
Or push these changes by commenting:
@cursor push e23ccc64d4
Preview (e23ccc64d4)
diff --git a/vendor/github.com/charmbracelet/ultraviolet/uv.go b/vendor/github.com/charmbracelet/ultraviolet/uv.go
--- a/vendor/github.com/charmbracelet/ultraviolet/uv.go
+++ b/vendor/github.com/charmbracelet/ultraviolet/uv.go
@@ -185,8 +185,11 @@
}
return &KeyboardEnhancements{
- DisambiguateEscapeCodes: flags&ansi.KittyDisambiguateEscapeCodes != 0,
- ReportEventTypes: flags&ansi.KittyReportEventTypes != 0,
+ DisambiguateEscapeCodes: flags&ansi.KittyDisambiguateEscapeCodes != 0,
+ ReportEventTypes: flags&ansi.KittyReportEventTypes != 0,
+ ReportAlternateKeys: flags&ansi.KittyReportAlternateKeys != 0,
+ ReportAllKeysAsEscapeCodes: flags&ansi.KittyReportAllKeysAsEscapeCodes != 0,
+ ReportAssociatedText: flags&ansi.KittyReportAssociatedKeys != 0,
}
}You can send follow-ups to the cloud agent here.
Reviewed by Cursor Bugbot for commit aab48fefa3e8cba0ec7959c495f2b41c837dbb6e. Configure here.
renovate-sh-app
Bot
force-pushed
the
deps-update/main-charm.landbubbleteav2
branch
3 times, most recently
from
April 21, 2026 07:08
a5c8bba to
86c70c3
Compare
Segflow
approved these changes
Apr 21, 2026
| datasource | package | from | to | | ---------- | ----------------------- | ------ | ------ | | go | charm.land/bubbletea/v2 | v2.0.5 | v2.0.6 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
renovate-sh-app
Bot
force-pushed
the
deps-update/main-charm.landbubbleteav2
branch
from
April 21, 2026 10:05
86c70c3 to
f776e60
Compare
This was referenced Apr 27, 2026
This was referenced May 20, 2026
This was referenced Jun 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


This PR contains the following updates:
v2.0.5→v2.0.6Release Notes
charmbracelet/bubbletea (charm.land/bubbletea/v2)
v2.0.6Compare Source
Changelog
Thoughts? Questions? We love hearing from you. Feel free to reach out on X, Discord, Slack, The Fediverse, Bluesky.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
Need help?
You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section.
Note
Medium Risk
Primarily a dependency bump, but it updates vendored
ultravioletwith signature/behavior changes (many methods no longer return errors, new mouse/keyboard options), which could subtly affect terminal I/O behavior or require downstream code adjustments.Overview
Updates
charm.land/bubbletea/v2fromv2.0.5tov2.0.6, which also bumps the indirectgithub.com/charmbracelet/ultravioletversion and updatesgo.sum/vendor/modules.txt.The vendored
ultravioletupdate includes terminal API changes (manyTerminalScreenoperations likeRender,Resize, alt-screen/cursor setters, etc. no longer return errors), adds new capabilities likeTerminal.GetSize/GetWinsize, configurableOptions.Logger, and expanded mouse/keyboard support (mouse encoding + additional Kitty keyboard flags), along with small renderer correctness/perf fixes and documentation/lint config updates.Reviewed by Cursor Bugbot for commit f776e60. Bugbot is set up for automated code reviews on this repo. Configure here.