Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: bump the version-update group across 1 directory with 6 updates #189

Merged
merged 1 commit into from
Sep 5, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Bumps the version-update group with 3 updates in the / directory: github.com/charmbracelet/glamour, github.com/charmbracelet/bubbles and github.com/evertras/bubble-table.

Updates github.com/charmbracelet/glamour from 0.7.0 to 0.8.0

Release notes

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

v0.8.0

Fixing (almost) everything

With a ton of rendering fixes, she's sparkling ✨

It has that new car smell...

So many fixes…one man

@​caarlos0 fixed a whopping 15 issues with PR #317 🥇

  • Fix URL links not rendering inside bold text #312
  • Fix autolink element rendering #290
  • Add support for backslash escapes #106
  • Fix cases when backslash should not be shown #274
  • Fix escape character rendering #311
  • Fix newlines in definition lists #239
  • Fix nested blockquotes rendering #313
  • Fix block quote accidentally combining lines #237
  • Fix document-level indent causing unintended wrapping after quoted lines #68

Better tables

Tables now provide stable rendering of elements within the table including alignment, text styles, all that jazz. It now uses the lipgloss table, making it much more consistent across the board.

  • Render tables with Lip Gloss #262
  • Refactor to replace TableWriter with Lip Gloss table #254
  • Fix inline code within table #315
  • Fix links in tables #316
  • Provide consistent alignment of table elements #60
  • Support alignment in tables #117

New! Tokyo Night

The markdown renderer’s equivalent of a mani-pedi 💅

Tokyo Night is now a built-in style for Glamour. This means you'll be able to use it in the next release of Glow.

glow -s "tokyo-night"
# OR
export GLAMOUR_STYLE="tokyo-night"

Check out the custom style example to learn how to support custom styles in your own Glamour apps.

... (truncated)

Commits

Updates github.com/charmbracelet/lipgloss from 0.11.0 to 0.12.1

Release notes

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

v0.12.1

Border width calcs: back to normal

This release fixes a regression with regard to border calculations introduced in Lip Gloss v0.11.1.


Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

v0.12.0

Lists, Check ✓

This release adds a new sub-package for rendering trees and lists.

import "github.com/charmbracelet/lipgloss/list"

Define a new list.

l := list.New("A", "B", "C")

Print the list.

fmt.Println(l)
// • A
// • B
// • C

Lists have the ability to nest.

l := list.New(
  "A", list.New("Artichoke"),
  "B", list.New("Baking Flour", "Bananas", "Barley", "Bean Sprouts"),
  "C", list.New("Cashew Apple", "Cashews", "Coconut Milk", "Curry Paste", "Currywurst"),
  "D", list.New("Dill", "Dragonfruit", "Dried Shrimp"),
  "E", list.New("Eggs"),
  "F", list.New("Fish Cake", "Furikake"),
  "J", list.New("Jicama"),
  "K", list.New("Kohlrabi"),
  "L", list.New("Leeks", "Lentils", "Licorice Root"),
</tr></table> 

... (truncated)

Commits

Updates 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

Updates github.com/evertras/bubble-table from 0.16.1 to 0.17.0

Release notes

Sourced from github.com/evertras/bubble-table's releases.

v0.17.0

What's Changed

Note: Due to the underlying bubble dependency requiring generics, from 0.17 onwards this will also require Go to be 1.18 or higher.

New Contributors

Full Changelog: Evertras/bubble-table@v0.16.1...v0.17.0

Commits

Updates github.com/mattn/go-runewidth from 0.0.15 to 0.0.16

Commits

Updates golang.org/x/sync from 0.7.0 to 0.8.0

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 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 <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 version-update group with 3 updates in the / directory: [github.com/charmbracelet/glamour](https://github.com/charmbracelet/glamour), [github.com/charmbracelet/bubbles](https://github.com/charmbracelet/bubbles) and [github.com/evertras/bubble-table](https://github.com/evertras/bubble-table).


Updates `github.com/charmbracelet/glamour` from 0.7.0 to 0.8.0
- [Release notes](https://github.com/charmbracelet/glamour/releases)
- [Commits](charmbracelet/glamour@v0.7.0...v0.8.0)

Updates `github.com/charmbracelet/lipgloss` from 0.11.0 to 0.12.1
- [Release notes](https://github.com/charmbracelet/lipgloss/releases)
- [Changelog](https://github.com/charmbracelet/lipgloss/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/lipgloss@v0.11.0...v0.12.1)

Updates `github.com/charmbracelet/bubbles` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/charmbracelet/bubbles/releases)
- [Changelog](https://github.com/charmbracelet/bubbles/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/bubbles@v0.18.0...v0.19.0)

Updates `github.com/evertras/bubble-table` from 0.16.1 to 0.17.0
- [Release notes](https://github.com/evertras/bubble-table/releases)
- [Commits](Evertras/bubble-table@v0.16.1...v0.17.0)

Updates `github.com/mattn/go-runewidth` from 0.0.15 to 0.0.16
- [Commits](mattn/go-runewidth@v0.0.15...v0.0.16)

Updates `golang.org/x/sync` from 0.7.0 to 0.8.0
- [Commits](golang/sync@v0.7.0...v0.8.0)

---
updated-dependencies:
- dependency-name: github.com/charmbracelet/glamour
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-update
- dependency-name: github.com/charmbracelet/lipgloss
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-update
- dependency-name: github.com/charmbracelet/bubbles
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-update
- dependency-name: github.com/evertras/bubble-table
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-update
- dependency-name: github.com/mattn/go-runewidth
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-update
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-update
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the go Pull requests that update Go code label Sep 1, 2024
@dependabot dependabot bot requested a review from prgres September 1, 2024 08:04
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 1, 2024

The following labels could not be found: backend, dependencies, dependabot.

@prgres prgres merged commit 6615707 into main Sep 5, 2024
3 checks passed
@prgres prgres deleted the dependabot/go_modules/version-update-73d9594c86 branch September 5, 2024 09:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant