Background
Renovate PR #3538 attempts to bump charmbracelet/bubbles from v0.21.1 → v2.1.0 in tools/disctl but fails because bubbles v2 moved its canonical module path from GitHub to a custom domain.
Problem
go mod tidy rejects the update:
module declares its path as: charm.land/bubbles/v2
but was required as: github.com/charmbracelet/bubbles/v2
Renovate cannot perform this migration automatically. PR #3538 should be closed.
Required changes
tools/disctl/go.mod — change require to charm.land/bubbles/v2
tools/disctl/cmd/releases.go — update import from github.com/charmbracelet/bubbles/table → charm.land/bubbles/v2/table
- API changes in
releases.go:
table.DefaultStyles() now takes an isDark bool parameter
table.WithHeight / table.Model.Height replaced with getter/setter methods — check v2 API
References
Background
Renovate PR #3538 attempts to bump
charmbracelet/bubblesfromv0.21.1→v2.1.0intools/disctlbut fails because bubbles v2 moved its canonical module path from GitHub to a custom domain.Problem
go mod tidyrejects the update:Renovate cannot perform this migration automatically. PR #3538 should be closed.
Required changes
tools/disctl/go.mod— change require tocharm.land/bubbles/v2tools/disctl/cmd/releases.go— update import fromgithub.com/charmbracelet/bubbles/table→charm.land/bubbles/v2/tablereleases.go:table.DefaultStyles()now takes anisDark boolparametertable.WithHeight/table.Model.Heightreplaced with getter/setter methods — check v2 APIReferences