Skip to content

build(deps): bump the dependencies group across 1 directory with 9 updates #7

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

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 1, 2025

Bumps the dependencies group with 7 updates in the / directory:

Package From To
github.com/PuerkitoBio/goquery 1.10.2 1.10.3
github.com/charmbracelet/bubbles 0.20.0 0.21.0
github.com/charmbracelet/bubbletea 1.3.4 1.3.5
github.com/charmbracelet/glamour 0.9.1 0.10.0
github.com/go-echarts/go-echarts/v2 2.5.2 2.5.3
github.com/go-playground/validator/v10 10.20.0 10.26.0
github.com/shirou/gopsutil/v4 4.25.2 4.25.4

Updates github.com/PuerkitoBio/goquery from 1.10.2 to 1.10.3

Release notes

Sourced from github.com/PuerkitoBio/goquery's releases.

v1.10.3

Update dependencies and a small memory optimization.

Commits
  • 9c6a69c Prepare for v1.10.3
  • 80f14c7 Merge pull request #516 from PuerkitoBio/dependabot/go_modules/golang.org/x/n...
  • 58dcec1 Bump golang.org/x/net from 0.38.0 to 0.39.0
  • aadb1cd Merge pull request #515 from PuerkitoBio/dependabot/go_modules/golang.org/x/n...
  • 9cd3cf0 Bump golang.org/x/net from 0.37.0 to 0.38.0
  • fa93633 Merge pull request #514 from PuerkitoBio/dependabot/go_modules/golang.org/x/n...
  • 858507f Run go mod tidy
  • 5c48549 Bump golang.org/x/net from 0.35.0 to 0.37.0
  • c2d1a09 Merge pull request #512 from myxzlpltk/master
  • 3951e60 increase performance by migrating from bytes.Buffer to strings.Builder
  • See full diff in compare view

Updates github.com/charmbracelet/bubbles from 0.20.0 to 0.21.0

Release notes

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

v0.21.0

Viewport improvements

Finally, viewport finally has horizontal scrolling ✨![^v1] To enable it, use SetHorizontalStep (default in v2 will be 6).

You can also scroll manually with ScrollLeft and ScrollRight, and use SetXOffset to scroll to a specific position (or 0 to reset):

vp := viewport.New()
vp.SetHorizontalStep(10) // how many columns to scroll on each key press
vp.ScrollRight(30)       // pan 30 columns to the right!
vp.ScrollLeft(10)        // pan 10 columns to the left!
vp.SetXOffset(0)         // back to the left edge

To make the API more consistent, vertical scroll functions were also renamed, and the old ones were deprecated (and will be removed in v2):

// Scroll n lines up/down:
func (m Model) LineUp(int)     // deprecated
func (m Model) ScrollUp(int)   // new!
func (m Model) LineDown(int)   // deprecated
func (m Model) ScrollDown(int) // new!
// Scroll half page up/down:
func (m Model) HalfViewUp() []string   // deprecated
func (m Model) HalfPageUp() []string   // new!
func (m Model) HalfViewDown() []string // deprecated
func (m Model) HalfPageDown() []string // new!
// Scroll a full page up/down:
func (m Model) ViewUp(int) []string   // deprecated
func (m Model) PageUp(int) []string   // new!
func (m Model) ViewDown(int) []string // deprecated
func (m Model) PageDown(int) []string // new!

[!NOTE] In v2, these functions will not return lines []string anymore, as it is no longer needed due to HighPerformanceRendering being deprecated as well.

Other improvements

The list bubble got a couple of new functions: SetFilterText, SetFilterState, and GlobalIndex - which you can use to get the index of the item in the unfiltered, original item list.

... (truncated)

Commits
  • 8b55efb fix(textarea): placeholder with chinese chars (#767)
  • bd2a5b0 fix: golangci-lint 2 fixes (#769)
  • cce8481 ci: sync golangci-lint config (#770)
  • ea344ab feat(viewport): horizontal scroll with mouse wheel (#761)
  • 39668ec fix(viewport): normalize method names (#763)
  • f2434c3 Revert "fix(viewport): normalize method names"
  • c7f889e fix(viewport): normalize method names
  • 9e5365e docs: add example for ValidateFunc (#705)
  • c814ac7 chore(deps): bump github.com/charmbracelet/lipgloss from 1.0.0 to 1.1.0 (#751)
  • 3befccc chore(deps): bump github.com/muesli/termenv from 0.15.2 to 0.16.0 (#740)
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/bubbletea from 1.3.4 to 1.3.5

Release notes

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

v1.3.5

This release fixes an important bug on Windows where function keys (F1..F20) don't get recognized and sent to the program. It also fixes multiple concurrency bugs related to using external context and p.Wait() and p.Kill().

Also, huge thank you to @​desertwitch who went in and just crushed a handful of deadlocks.

Happy hacking!

Changelog

Bug fixes

  • 62ca063a256528e23e05b49750019039a3cd71fc: fix(key): windows: recognize function keys on Windows (#1405) (@​aymanbagabas)
  • 0f9cd5b5376b8456a46f1d414590e81511ce3f06: fix(panics): fix race condition and false nil error return (@​desertwitch)
  • a79ab3fd2f547843583ddf30d41b9fe39aee37cc: fix(tests): account for multiple p.Wait() (@​desertwitch)
  • 1b5fc275fc34411ea74b6b22c05642498f478929: fix: prevent deadlock on ctx cancel during msg processing (@​desertwitch)
  • aa7a240b9ad054d5d0dd400961f0dd843e26cf31: fix: release p.Wait() on p.Kill() to prevent external deadlocks (@​desertwitch)
  • 1923181af63c7304e0b5f17a71d68dccc8a1bc45: fix: report only external ctx cancel as ctx error (@​desertwitch)
  • c56f7768c53848fb844618598060e730fd99d6b2: fix: resolve race conditions caused by p.Kill() (@​desertwitch)

Documentation updates

  • 3797acbe453e9f4597c81b22f7238e90b8d5cdd0: docs(readme): fix header image mis-caching (@​meowgorithm)
  • 8508131fee51e579291b9d2c378c5c6babb266ea: docs(readme): header art adjustments (@​meowgorithm)
  • b3150e1e52e4d3d187b4dddde74cd54a29942ca3: docs(readme): update header art (@​meowgorithm)

Other work


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

Commits
  • 62ca063 fix(key): windows: recognize function keys on Windows (#1405)
  • 0b18d1f ci: sync dependabot config (#1403)
  • 12e598b chore(deps): bump github.com/charmbracelet/glamour in /examples (#1397)
  • 915f65d chore: merge pull request #1376 from desertwitch/stacked-patches
  • 5a360c9 ci: sync golangci-lint config (#1394)
  • 540d584 chore(deps): bump golang.org/x/net from 0.36.0 to 0.38.0 in /examples (#1392)
  • 5aca88c chore(deps): bump github.com/charmbracelet/bubbles in /examples (#1389)
  • 1a0062b ci: fix lint issues
  • 9fab4a1 chore: run go mod tidy on examples/
  • 5c6d02d chore(deps): bump golang.org/x/sys from 0.31.0 to 0.32.0 (#1382)
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/glamour from 0.9.1 to 0.10.0

Release notes

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

v0.10.0

Actually readable tables

Big tables that included links were always hard to read. Links can be very long, and tables often have limited space to render them. This means that links often took the space of many lines and weren't properly clickable because they were being truncated in practice.

Starting on this release, Glamour will render links and images at the footer of the table, with a reference number so you can easily find the link you're looking for. If you want the old behavior, it is still supported via the new WithInlineTableLinks option.

The New Way

table_with_footer_links_and_images

The Old Way

Wanna render tables with inline links? You still can:

r, err := glamour.NewTermRenderer(glamour.WithInlineTableLinks(true))
if err != nil { /*...*/ }
out, err := r.RenderBytes(in)
if err != nil { /.../ }
fmt.Fprintf(os.Stdout, "%s\n", out)

table_with_inline_links_and_images

Prettier GitHub links

We also introduced a change so that GitHub links inside tables that reference issues, discussions or PRs will be shown in its shortened form, similar to how GitHub itself present the links on issue descriptions: owner/repo#123.

table_with_footer_auto_links_short

Extra

Also, we introduced WithTableWrap, so you can disable table text wrapping if really want:

r, err := glamour.NewTermRenderer(glamour.WithTableWrap(false))
if err != nil { ... }
out, err := r.RenderBytes(in)
if err != nil { ... }
fmt.Fprintf(os.Stdout, "%s\n", out)

Changelog

New Features

... (truncated)

Commits
  • 05ee9b5 v0.10.0
  • c9af045 feat(tables): format github links inside tables in a more readable manner
  • f2eb484 feat: add autolink package with patterns for more readable github urls
  • 9d87373 feat(table): pad position on table link list
  • a11e9a0 feat(table): show position of link also inside the table
  • 42f47a2 feat(table): prefix all links with the position in the footer
  • 61cfc45 feat(table): add ability to render links at the bottom
  • 5437e4a fix: ensure that prop is always cleared
  • 60534f9 chore(deps): bump golang.org/x/term from 0.30.0 to 0.31.0 (#418)
  • 606f55a chore(deps): bump golang.org/x/text from 0.23.0 to 0.24.0 (#419)
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/lipgloss from 1.1.0 to 1.1.1-0.20250404203927-76690c660834

Commits

Updates github.com/go-echarts/go-echarts/v2 from 2.5.2 to 2.5.3

Release notes

Sourced from github.com/go-echarts/go-echarts/v2's releases.

v2.5.3

What's Changed

New Contributors

Full Changelog: go-echarts/go-echarts@v2.5.2...v2.5.3

Commits

Updates github.com/go-playground/validator/v10 from 10.20.0 to 10.26.0

Release notes

Sourced from github.com/go-playground/validator/v10's releases.

v10.26.0

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.25.0...v10.26.0

Release 10.25.0

What's Changed

New Contributors

... (truncated)

Commits

Updates github.com/shirou/gopsutil/v4 from 4.25.2 to 4.25.4

Release notes

Sourced from github.com/shirou/gopsutil/v4's releases.

v4.25.4

What's Changed

cpu

disk

host

Other Changes

New Contributors

Full Changelog: shirou/gopsutil@v4.25.3...v4.25.4

v4.25.3

Important Notice

Starting from this release, we have set the Go version in go.mod to 1.23. Moving forward, we plan to continuously update it to the second most recent Go release.

We understand that gopsutil runs on various platforms, and some applications using it may only support older Go versions. With this release, those applications might no longer be able to build. However, as discussed in #1804, we made this change because golang.org/x/sys, which gopsutil depends on, has adopted a policy of continuously updating its Go version.

That said, we intend to be conservative about syntax changes and avoid unnecessary modifications whenever possible.

What's Changed

disk

host

... (truncated)

Commits
  • 3ba33b4 Merge pull request #1843 from mmorel-35/golangci-lint/ineffassign
  • 6469062 chore: enable ineffassign linter
  • af2d6de Merge pull request #1825 from mmorel-35/golangci-lint/govet
  • 10be661 chore: enable govet linter
  • 3c34181 Merge pull request #1841 from shirou/feat/update_github_action_runners_images
  • c43a933 fix: update github actions runner images
  • f9f5620 Merge pull request #1840 from s0ders/refactor/host-info-error-msg
  • 0bbc484 refactor: using fmt.Errorf on some error returns.
  • 7d9af6f Merge pull request #1829 from mmorel-35/golangci-lint@v2
  • 61f624b Merge pull request #1831 from niemp100/win32_cpu_values
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.36.0 to 0.37.0

Commits
  • 959f8f3 go.mod: update golang.org/x dependencies
  • 769bcd6 ssh: use the configured rand in kex init
  • d0a798f cryptobyte: fix typo 'octects' into 'octets' for asn1.go
  • acbcbef acme: remove unnecessary []byte conversion
  • 376eb14 x509roots: support constrained roots
  • b369b72 crypto/internal/poly1305: implement function update in assembly on loong64
  • 6b853fb ssh/knownhosts: check more than one key
  • See full diff 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 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

…dates

Bumps the dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/PuerkitoBio/goquery](https://github.com/PuerkitoBio/goquery) | `1.10.2` | `1.10.3` |
| [github.com/charmbracelet/bubbles](https://github.com/charmbracelet/bubbles) | `0.20.0` | `0.21.0` |
| [github.com/charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea) | `1.3.4` | `1.3.5` |
| [github.com/charmbracelet/glamour](https://github.com/charmbracelet/glamour) | `0.9.1` | `0.10.0` |
| [github.com/go-echarts/go-echarts/v2](https://github.com/go-echarts/go-echarts) | `2.5.2` | `2.5.3` |
| [github.com/go-playground/validator/v10](https://github.com/go-playground/validator) | `10.20.0` | `10.26.0` |
| [github.com/shirou/gopsutil/v4](https://github.com/shirou/gopsutil) | `4.25.2` | `4.25.4` |



Updates `github.com/PuerkitoBio/goquery` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/PuerkitoBio/goquery/releases)
- [Commits](PuerkitoBio/goquery@v1.10.2...v1.10.3)

Updates `github.com/charmbracelet/bubbles` from 0.20.0 to 0.21.0
- [Release notes](https://github.com/charmbracelet/bubbles/releases)
- [Changelog](https://github.com/charmbracelet/bubbles/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/bubbles@v0.20.0...v0.21.0)

Updates `github.com/charmbracelet/bubbletea` from 1.3.4 to 1.3.5
- [Release notes](https://github.com/charmbracelet/bubbletea/releases)
- [Changelog](https://github.com/charmbracelet/bubbletea/blob/main/.goreleaser.yml)
- [Commits](charmbracelet/bubbletea@v1.3.4...v1.3.5)

Updates `github.com/charmbracelet/glamour` from 0.9.1 to 0.10.0
- [Release notes](https://github.com/charmbracelet/glamour/releases)
- [Changelog](https://github.com/charmbracelet/glamour/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/glamour@v0.9.1...v0.10.0)

Updates `github.com/charmbracelet/lipgloss` from 1.1.0 to 1.1.1-0.20250404203927-76690c660834
- [Release notes](https://github.com/charmbracelet/lipgloss/releases)
- [Changelog](https://github.com/charmbracelet/lipgloss/blob/master/.goreleaser.yml)
- [Commits](https://github.com/charmbracelet/lipgloss/commits)

Updates `github.com/go-echarts/go-echarts/v2` from 2.5.2 to 2.5.3
- [Release notes](https://github.com/go-echarts/go-echarts/releases)
- [Commits](go-echarts/go-echarts@v2.5.2...v2.5.3)

Updates `github.com/go-playground/validator/v10` from 10.20.0 to 10.26.0
- [Release notes](https://github.com/go-playground/validator/releases)
- [Commits](go-playground/validator@v10.20.0...v10.26.0)

Updates `github.com/shirou/gopsutil/v4` from 4.25.2 to 4.25.4
- [Release notes](https://github.com/shirou/gopsutil/releases)
- [Commits](shirou/gopsutil@v4.25.2...v4.25.4)

Updates `golang.org/x/crypto` from 0.36.0 to 0.37.0
- [Commits](golang/crypto@v0.36.0...v0.37.0)

---
updated-dependencies:
- dependency-name: github.com/PuerkitoBio/goquery
  dependency-version: 1.10.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/charmbracelet/bubbles
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/charmbracelet/bubbletea
  dependency-version: 1.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/charmbracelet/glamour
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/charmbracelet/lipgloss
  dependency-version: 1.1.1-0.20250404203927-76690c660834
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/go-echarts/go-echarts/v2
  dependency-version: 2.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/go-playground/validator/v10
  dependency-version: 10.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/shirou/gopsutil/v4
  dependency-version: 4.25.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: golang.org/x/crypto
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels May 1, 2025
@dependabot dependabot bot requested a review from thuongtruong109 as a code owner May 1, 2025 09:28
Copy link

vercel bot commented May 1, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
gouse ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 1, 2025 9:29am

Copy link
Contributor

deepsource-io bot commented May 1, 2025

Here's the code health analysis summary for commits 2f96aab..2827aa5. View details on DeepSource ↗.

Analysis Summary

AnalyzerStatusSummaryLink
DeepSource Go LogoGo✅ SuccessView Check ↗
DeepSource Shell LogoShell✅ SuccessView Check ↗

💡 If you’re a repository administrator, you can configure the quality gates from the settings.

@codecov-commenter
Copy link

codecov-commenter commented May 1, 2025

⚠️ Please install the 'codecov app svg image' to ensure uploads and comments are reliably processed by Codecov.

Codecov Report

All modified and coverable lines are covered by tests ✅

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Flag Coverage Δ
unittests 48.87% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant