Skip to content

chore(deps): bump the all group across 2 directories with 7 updates#534

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/go_modules/all-dbd9a1fc82
Mar 9, 2026
Merged

chore(deps): bump the all group across 2 directories with 7 updates#534
github-actions[bot] merged 1 commit intomainfrom
dependabot/go_modules/all-dbd9a1fc82

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 9, 2026

Bumps the all group with 2 updates in the / directory: golang.org/x/sync and golang.org/x/time.
Bumps the all group with 5 updates in the /examples directory:

Package From To
charm.land/bubbles/v2 2.0.0-beta.1.0.20251106192719-c2b822795a69 2.0.0
charm.land/lipgloss/v2 2.0.0 2.0.1
github.com/charmbracelet/x/editor 0.1.0 0.2.0
github.com/pkg/sftp 1.13.7 1.13.10
github.com/spf13/cobra 1.8.1 1.10.2

Updates golang.org/x/sync from 0.19.0 to 0.20.0

Commits
  • ec11c4a errgroup: fix a typo in the documentation
  • 1a58307 all: modernize interface{} -> any
  • 3172ca5 all: upgrade go directive to at least 1.25.0 [generated]
  • See full diff in compare view

Updates golang.org/x/time from 0.9.0 to 0.15.0

Commits
  • 812b343 all: upgrade go directive to at least 1.25.0 [generated]
  • 2b4e439 rate: use time.Time.Equal instead of ==
  • c0b0320 all: upgrade go directive to at least 1.24.0 [generated]
  • 1616a7f rate: skip time.Now call in Sometimes.Do unless necessary
  • 0c50ed8 all: upgrade go directive to at least 1.23.0 [generated]
  • 66520f6 rate: simplify function advance only returns new Tokens to caller
  • 2c6c5a2 rate: prevent overflows when calculating durationFromTokens
  • See full diff in compare view

Updates charm.land/bubbles/v2 from 2.0.0-beta.1.0.20251106192719-c2b822795a69 to 2.0.0

Release notes

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

v2.0.0

bubbles-v2-block

Bubbles v2 is here! 🫧

We're thrilled to share Bubbles v2 with you! This release accompanies Bubble Tea v2 and Lip Gloss v2 and brings a ton of consistency, new features, and quality-of-life improvements across every component. Catch 'em all:

go get charm.land/bubbletea/v2
go get charm.land/bubbles/v2
go get charm.land/lipgloss/v2

You can also check the Upgrade Guide for more info.

There are a lot of changes in here, but we've found upgrading pretty easy, especially with a linter. Read on for the full breakdown!

[!NOTE] When in doubt, check the examples for reference — they've all been updated for v2.

🏠 New Home

Bubbles v2 now lives at charm.land:

import "charm.land/bubbles/v2"

All sub-packages follow the same pattern: charm.land/bubbles/v2/viewport, charm.land/bubbles/v2/list, etc.

🎨 Light and Dark Styles

Some Bubbles, like help, offer default styles for both light and dark backgrounds. Since Lip Gloss v2 removes AdaptiveColor, choosing light or dark is now a manual process. You've got a couple of options.

🎩 The Best Way

Have Bubble Tea query the background color for you. This properly queries the correct inputs and outputs, and happens in lockstep with your application:

func (m model) Init() tea.Cmd {
    return tea.RequestBackgroundColor
}
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {
case tea.BackgroundColorMsg:
m.help.Styles = help.DefaultStyles(msg.IsDark())
return m, nil
}
// ...
</tr></table>

... (truncated)

Commits

Updates charm.land/lipgloss/v2 from 2.0.0 to 2.0.1

Release notes

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

v2.0.1

A small release to properly set style underline colors, as well as handling partial reads while querying the terminal.

Changelog

Fixed

  • 30441468e81b8d5322c78e7a78cac1aaf6b1b57d: fix: add missing underlineColorKey case in getAsColor (#624) (@​flux627)

Docs

  • 61e734b4628b1f808f2a40dde55c8886432a110b: docs: Charm logo link in upgrade guide (@​aymanbagabas)

Other stuff


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

Commits

Updates github.com/charmbracelet/x/editor from 0.1.0 to 0.2.0

Commits
  • 245c578 chore(term): drop input
  • 61de596 feat(windows): add windows console read api
  • 13e74f1 feat: remove exp/term (#153)
  • e2dc8b5 chore(deps): bump github.com/creack/pty from 1.1.21 to 1.1.23 in /xpty (#154)
  • 09454c3 chore(deps): bump github.com/creack/pty in /exp/term (#155)
  • d72bfb0 fix(ansi): kitty: remove SetKittyKeyboard
  • 759c05a fix(ansi): kitty: godocs disabling mode
  • 64f64bd feat(ansi): xterm: modifyotherkeys
  • a29dab6 feat: add kitty keyboard set flags sequence
  • 7451802 feat: support FocusIn/FocusOut (#152)
  • Additional commits viewable in compare view

Updates github.com/pkg/sftp from 1.13.7 to 1.13.10

Release notes

Sourced from github.com/pkg/sftp's releases.

v1.13.10 - maintenance release

We’ve made a bunch of little fixes here and there, and I imagine the tests alone could benefit from a proper release to various systems automations.

What's Changed

New Contributors

Full Changelog: pkg/sftp@v1.13.9...v1.13.10

v1.13.9 - better Remove errors, short-circuit unsupported fsync, and ReadFull for readfrom

What's Changed

New Contributors

Full Changelog: pkg/sftp@v1.13.8...v1.13.9

v1.13.8 - readAt bug fix and drive enumeration for Windows

What's Changed

New Contributors

Full Changelog: pkg/sftp@v1.13.7...v1.13.8

Commits
  • 939b203 Merge pull request #639 from jas4711/test-username-regexp
  • ab738a1 Merge pull request #638 from jas4711/use-sample-file
  • 6b96da1 Merge pull request #640 from KleeKitz/patch-1
  • 0af9d9e Fix typos in InMemHandler comments
  • 935fe8e Improve regexp for valid usernames in ls self-test
  • 36e0a6f Don't use LICENSE as a self-test sample file
  • ad5b1e7 Update SECURITY.md
  • ff15937 Merge pull request #637 from drakkan/security
  • 1871076 add security policy
  • ac1008f Merge pull request #635 from Farokhcpu/updating-go-packages
  • Additional commits viewable in compare view

Updates github.com/spf13/cobra from 1.8.1 to 1.10.2

Release notes

Sourced from github.com/spf13/cobra's releases.

v1.10.2

🔧 Dependencies

  • chore: Migrate from gopkg.in/yaml.v3 to go.yaml.in/yaml/v3 by @​dims in spf13/cobra#2336 - the gopkg.in/yaml.v3 package has been deprecated for some time: this should significantly cleanup dependency/supply-chains for consumers of spf13/cobra

📈 CI/CD

🔥✍🏼 Docs

🍂 Refactors

🤗 New Contributors

Full Changelog: spf13/cobra@v1.10.1...v1.10.2

Thank you to our amazing contributors!!!!! 🐍 🚀

v1.10.1

🐛 Fix

v1.0.9 of pflags brought back ParseErrorsWhitelist and marked it as deprecated

Full Changelog: spf13/cobra@v1.10.0...v1.10.1

v1.10.0

What's Changed

🚨 Attention!

This version of pflag carried a breaking change: it renamed ParseErrorsWhitelist to ParseErrorsAllowlist which can break builds if both pflag and cobra are dependencies in your project.

  • If you use both pflag and cobra, upgrade pflagto 1.0.8 andcobrato1.10.0`
  • or use the newer, fixed version of pflag v1.0.9 which keeps the deprecated ParseErrorsWhitelist

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 2 updates in the / directory: [golang.org/x/sync](https://github.com/golang/sync) and [golang.org/x/time](https://github.com/golang/time).
Bumps the all group with 5 updates in the /examples directory:

| Package | From | To |
| --- | --- | --- |
| [charm.land/bubbles/v2](https://github.com/charmbracelet/bubbles) | `2.0.0-beta.1.0.20251106192719-c2b822795a69` | `2.0.0` |
| [charm.land/lipgloss/v2](https://github.com/charmbracelet/lipgloss) | `2.0.0` | `2.0.1` |
| [github.com/charmbracelet/x/editor](https://github.com/charmbracelet/x) | `0.1.0` | `0.2.0` |
| [github.com/pkg/sftp](https://github.com/pkg/sftp) | `1.13.7` | `1.13.10` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.1` | `1.10.2` |



Updates `golang.org/x/sync` from 0.19.0 to 0.20.0
- [Commits](golang/sync@v0.19.0...v0.20.0)

Updates `golang.org/x/time` from 0.9.0 to 0.15.0
- [Commits](golang/time@v0.9.0...v0.15.0)

Updates `charm.land/bubbles/v2` from 2.0.0-beta.1.0.20251106192719-c2b822795a69 to 2.0.0
- [Release notes](https://github.com/charmbracelet/bubbles/releases)
- [Commits](https://github.com/charmbracelet/bubbles/commits/v2.0.0)

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

Updates `github.com/charmbracelet/x/editor` from 0.1.0 to 0.2.0
- [Commits](charmbracelet/x@v0.1.0...ansi/v0.2.0)

Updates `github.com/pkg/sftp` from 1.13.7 to 1.13.10
- [Release notes](https://github.com/pkg/sftp/releases)
- [Commits](pkg/sftp@v1.13.7...v1.13.10)

Updates `github.com/spf13/cobra` from 1.8.1 to 1.10.2
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.8.1...v1.10.2)

---
updated-dependencies:
- dependency-name: golang.org/x/sync
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/time
  dependency-version: 0.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: charm.land/bubbles/v2
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: charm.land/lipgloss/v2
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/charmbracelet/x/editor
  dependency-version: 0.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/pkg/sftp
  dependency-version: 1.13.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/spf13/cobra
  dependency-version: 1.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner March 9, 2026 12:29
@dependabot dependabot bot requested review from meowgorithm and raphamorim and removed request for a team March 9, 2026 12:29
@github-actions github-actions bot merged commit cef117a into main Mar 9, 2026
9 checks passed
@github-actions github-actions bot deleted the dependabot/go_modules/all-dbd9a1fc82 branch March 9, 2026 12:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants