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

fix(deps): update go deps #518

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

fix(deps): update go deps #518

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 10, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
github.com/charmbracelet/huh/spinner require digest 031e39c -> 96c10c8 age adoption passing confidence
github.com/charmbracelet/lipgloss require minor v1.0.0 -> v1.1.0 age adoption passing confidence
github.com/go-task/task/v3 require minor v3.41.0 -> v3.42.1 age adoption passing confidence
go (source) toolchain minor 1.23.6 -> 1.24.1 age adoption passing confidence
golang.org/x/sync require minor v0.11.0 -> v0.12.0 age adoption passing confidence
golang.org/x/time require minor v0.10.0 -> v0.11.0 age adoption passing confidence

Release Notes

charmbracelet/lipgloss (github.com/charmbracelet/lipgloss)

v1.1.0

Compare Source

Tables, Improved

In this release, the inimitable @​andreynering and @​bashbunni majorly 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.MarkdownBorder and disable the top and bottom borders.

t := table.New().
    Headers(someHeaders...).
    Rows(someRows).
    Border(lipgloss.MarkdownBorder()).
    BorderTop(false).
    BorderBottom(false)

fmt.Println(t)
ASCII Tables

To render an ASCII-style table use lipgloss.ASCIIBorder.

t := table.New().
    Headers(someHeaders...).
    Rows(someRows).
    Border(lipgloss.ASCIIBorder())

fmt.Println(t)

Thanks everyone

Special thanks to @​aymanbagabas, @​bashbunni, @​andreynering, and @​caarlos0 for or all the work on this release!


Changelog

New Features
Bug fixes
Other work

The Charm logo

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

go-task/task (github.com/go-task/task/v3)

v3.42.1

Compare Source

  • Fixed a bug where some special variables caused a type error when used global
    variables (#​2106, #​2107 by @​pd93).

v3.42.0

Compare Source

Package API

Unlike our CLI tool,
Task's package API is not currently stable.
In an effort to ease the pain of breaking changes for our users, we will be
providing changelogs for our package API going forwards. The hope is that these
changes will provide a better long-term experience for our users and allow to
stabilize the API in the future. #​121 now tracks this piece of work.

golang/go (go)

v1.24.1

v1.24.0

v1.23.7


Configuration

📅 Schedule: Branch creation - "before 6am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link
Contributor Author

renovate bot commented Feb 10, 2025

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 17 additional dependencies were updated

Details:

Package Change
github.com/ProtonMail/go-crypto v1.1.3 -> v1.1.5
github.com/alecthomas/chroma/v2 v2.14.0 -> v2.15.0
github.com/charmbracelet/bubbletea v1.2.5-0.20241205214244-9306010a31ee -> v1.3.4
github.com/cloudflare/circl v1.3.7 -> v1.6.0
github.com/cyphar/filepath-securejoin v0.3.6 -> v0.4.1
github.com/dlclark/regexp2 v1.11.0 -> v1.11.4
github.com/go-git/go-billy/v5 v5.6.1 -> v5.6.2
github.com/go-git/go-git/v5 v5.13.1 -> v5.14.0
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da -> v0.0.0-20241129210726-2c02b8208cf8
github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a -> v0.16.0
github.com/pjbgf/sha1cd v0.3.0 -> v0.3.2
github.com/skeema/knownhosts v1.3.0 -> v1.3.1
github.com/spf13/pflag v1.0.5 -> v1.0.6
golang.org/x/crypto v0.33.0 -> v0.35.0
golang.org/x/sys v0.30.0 -> v0.31.0
golang.org/x/term v0.29.0 -> v0.30.0
mvdan.cc/sh/v3 v3.10.0 -> v3.11.0

Copy link

ilo-nanpa bot commented Feb 10, 2025

it seems like you haven't added any nanpa changeset files to this PR.

if this pull request includes changes to code, make sure to add a changeset, by writing a file to .nanpa/<unique-name>.kdl:

minor type="added" "Introduce frobnication algorithm"

refer to the manpage for more information.

@renovate renovate bot changed the title fix(deps): update github.com/charmbracelet/huh/spinner digest to 2eba4f3 fix(deps): update github.com/charmbracelet/huh/spinner digest to 9ef0c49 Feb 11, 2025
@renovate renovate bot force-pushed the renovate/go-deps branch from fa6369b to be8a9ee Compare February 11, 2025 01:52
@renovate renovate bot changed the title fix(deps): update github.com/charmbracelet/huh/spinner digest to 9ef0c49 fix(deps): update go deps Feb 11, 2025
@renovate renovate bot force-pushed the renovate/go-deps branch 4 times, most recently from b87f1d7 to b11c102 Compare February 13, 2025 15:46
@renovate renovate bot force-pushed the renovate/go-deps branch 4 times, most recently from 22077a1 to f97c29d Compare March 5, 2025 15:09
@davidzhao
Copy link
Member

there's a Go version update. static check needs to be updated as well before merge

@renovate renovate bot force-pushed the renovate/go-deps branch 9 times, most recently from 0a4ddd9 to 203a4f5 Compare March 13, 2025 18:57
@renovate renovate bot force-pushed the renovate/go-deps branch 6 times, most recently from 64632c4 to 52a6975 Compare March 17, 2025 21:56
Generated by renovateBot
@renovate renovate bot force-pushed the renovate/go-deps branch from 52a6975 to 5507478 Compare March 18, 2025 17:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant