amazon-ec2-instance-selector
amazon-ec2-instance-selector copied to clipboard
Bump github.com/charmbracelet/lipgloss from 1.0.0 to 1.1.0
Bumps github.com/charmbracelet/lipgloss from 1.0.0 to 1.1.0.
Release notes
Sourced from github.com/charmbracelet/lipgloss's releases.
v1.1.0
Tables, Improved
In this release, the inimitable
@andreyneringand@bashbunnimajorly overhauled on the table sizing and content wrapping algorithms. Tables will now be much smarter on deciding the ideal width of each column, and contents now wraps by default inside cells.// Table content wraps by default. t := table.New(). Headers(someHeaders...). Rows(someRows...). Width(80)fmt.Println(t)
// Actually, let's not wrap the content. t := table.New(). Headers(someHeaders...). Rows(someRows...). Width(80). Wrap(false)fmt.Println(t)
New Border Styles
Also, we added two new border styles that you can use to generate tables in Markdown and ASCII styles.
Markdown Tables
To render tables correctly for Markdown you'll want to use
lipgloss.MarkdownBorderand disable the top and bottom borders.t := table.New(). Headers(someHeaders...). Rows(someRows). Border(lipgloss.MarkdownBorder()). BorderTop(false). BorderBottom(false)fmt.Println(t)
... (truncated)
Commits
f0e4547chore: fix lintfb0d757chore(taskfile): deletelint:allandlint:softtasks1209cf0ci: sync golangci-lint config (#490)c454a0afeat(tables): add markdown and ascii border style for tables (#480)341996dchore: updatecharmbracelet/x/cellbuf1f1209efeat(table): use cellbuf to preserve styles for wrapped content2aa2eb0test(table): test wrapping cell styles9500f10fix(table): ensure we're passing the right row index tostyleFunc7b191c5fix(test): make table wrapping tests use golden files9cfb7ddtest(table): check truncation logic for overflow and nowrap- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)