zMoooooritz / nachrichten

Stay informed without leaving your command line
MIT License
16 stars 0 forks source link

Bump github.com/charmbracelet/bubbles from 0.18.0 to 0.19.0 #94

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps github.com/charmbracelet/bubbles from 0.18.0 to 0.19.0.

Release notes

Sourced from github.com/charmbracelet/bubbles's releases.

v0.19.0

Bugs? Squashed (along with a few nice lil’ features).

Community-Driven Development?! Yep, the majority of the changes in this release were done by the community. Thank you all for your contributions that made this release possible.

Progress: custom chars

You can now customize the filled and empty characters of the progress bar.

p := progress.New(progress.WithFillCharacters('>', '.'))

progress bar example

Table improvements

Help is on the way

Table now includes a short and full help view so it's easier than ever to tell your users how to interact with the table.

// Render a table with its help.
t := table.New()
view := t.View() + "\n" + t.HelpView()

Accessing columns

You can also now get the table's columns (this already existed for rows).

package table

// Columns returns the current columns.
func (m Model) Columns() []Column

List: page navigation is fixed!

Previously, list.NextPage() and list.PrevPage() didn't work because the methods did not have pointer receivers. We've fixed this…by making them pointer receivers!

⚠️ Note that this is a minor API change and you might need to update your app to pass a pointer receiver to your model rather than a copy. Details in #458.

package progress

// NextPage moves to the next page, if available.
func (m *Model) NextPage()
</tr></table>

... (truncated)

Commits
  • f25096d chore(lint): disable 'predeclared' linter
  • 235075a feat: add HelpView to table as a convenience
  • c1d9f7d feat(table): remove StyleFunc + add tests for table alignment (#586)
  • 549d076 chore: fix lint
  • 92d44ed feat(deps): bump github.com/charmbracelet/bubbletea (#587)
  • 5428d6d feat(key): accept any stringer interface to match keys (#584)
  • ff5fb57 ci: no announce
  • b8a38ff ci: use goreleaser for releases (#526)
  • 57c9331 feat(deps): bump github.com/mattn/go-runewidth from 0.0.15 to 0.0.16 (#565)
  • 6063cfb feat(deps): bump github.com/charmbracelet/lipgloss from 0.11.0 to 0.12.1 (#552)
  • Additional commits viewable in compare view


Dependabot compatibility score

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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will 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 version` will 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 dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 1 month ago

The following labels could not be found: dependencies.

dependabot[bot] commented 1 month ago

Looks like github.com/charmbracelet/bubbles is up-to-date now, so this is no longer needed.