Skip to content

Bump the go-dependencies group across 1 directory with 13 updates#140

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/go-dependencies-289a092108
Open

Bump the go-dependencies group across 1 directory with 13 updates#140
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/go-dependencies-289a092108

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown

Bumps the go-dependencies group with 12 updates in the / directory:

Package From To
github.com/pterm/pterm 0.12.80 0.12.83
github.com/BurntSushi/toml 1.5.0 1.6.0
github.com/OneOfOne/xxhash 1.2.2 1.2.8
github.com/lmittmann/tint 1.1.2 1.1.3
github.com/maruel/natural 1.1.1 1.3.0
github.com/mattn/go-isatty 0.0.20 0.0.22
github.com/nicksnyder/go-i18n/v2 2.6.0 2.6.1
github.com/olekukonko/tablewriter 0.0.5 1.1.4
github.com/sebdah/goldie/v2 2.5.5 2.8.0
github.com/stretchr/testify 1.10.0 1.11.1
github.com/urfave/cli/v3 3.4.1 3.9.0
golang.org/x/sync 0.20.0 0.21.0

Updates github.com/pterm/pterm from 0.12.80 to 0.12.83

Release notes

Sourced from github.com/pterm/pterm's releases.

v0.12.83

What's Changed

Fixes 🔧

New Contributors

Full Changelog: pterm/pterm@v0.12.82...v0.12.83

v0.12.82

What's Changed

Exciting New Features 🎉

Fixes 🔧

Other Changes

New Contributors

Full Changelog: pterm/pterm@v0.12.81...v0.12.82

v0.12.81

What's Changed

Exciting New Features 🎉

Fixes 🔧

... (truncated)

Commits
  • ed296ee chore: update golangci-lint action to v9 and specify version v2.10.1
  • 5fde88a fix: fixed tests
  • a057e0a chore: fixed linting errors
  • fe86f8a refactor: migrate golangci-lint config
  • 6176f91 chore: update deps
  • 92adf38 fix: reset IsActive before RawOutput early return in SpinnerPrinter.Stop() (#...
  • bcb9c07 fix(prefix): PrefixPrinter now uses updated defaultWriter (#752)
  • d5706ff fix(interactive_textinput): fixed gray text when using a default value (#747)
  • d2df629 refactor(print): enhance RemoveColorFromString to also strip OSC 8 hyperlinks...
  • 7717a1b feat(interactive_select): add filter input placeholder to multiselect and sel...
  • Additional commits viewable in compare view

Updates golang.org/x/text from 0.25.0 to 0.34.0

Commits
  • 817fba9 go.mod: update golang.org/x dependencies
  • 3264de9 all: clean up old Go hacks
  • 74af298 all: fix tags in remaining Unicode tables
  • 117e03b all: delete old Unicode tables
  • 9463ea4 all: update to Unicode 17
  • 7278b25 internal/export/idna: update for post-Unicode 10 idna changes
  • f964ad8 internal/export/idna: delete old code
  • 678d34e unicode/norm: preserve QC Maybe bit in packed forminfo
  • 536231a go.mod: update golang.org/x dependencies
  • 0dd57a6 go.mod: update golang.org/x dependencies
  • Additional commits viewable in compare view

Updates github.com/BurntSushi/toml from 1.5.0 to 1.6.0

Release notes

Sourced from github.com/BurntSushi/toml's releases.

v1.6.0

TOML 1.1 is now enabled by default. The TOML changelog has an overview of changes: https://github.com/toml-lang/toml/blob/main/CHANGELOG.md

Also two small fixes:

  • Encode large floats as exponent syntax so that round-tripping things like 5e+22 is correct.

  • Using duplicate array keys would not give an error:

    arr = [1]
    arr = [2]
    

    This will now correctly give a "Key 'arr' has already been defined" error.

Commits
  • 5253492 Enable TOML 1.1 by default (#457)
  • e954445 Reject duplicate arrays (#455)
  • 6b16cbd Update toml-test test cases from upstream (#456)
  • 011fa2b Ensure constant format strings in wf calls
  • 4b439bf Remove itemNil
  • a473c12 Add test for out of range float64
  • b535ff8 Add some boring tests for lex.go
  • 6011ef0 Remove unreachable condition in lexTableNameStart
  • c8ca9e6 Remove unreachable condition
  • 1121f81 Make tomlv read from stdin
  • Additional commits viewable in compare view

Updates github.com/OneOfOne/xxhash from 1.2.2 to 1.2.8

Release notes

Sourced from github.com/OneOfOne/xxhash's releases.

The pink stars are falling in lines

  • Implement encoding.Binary(Un)Marshaler interfaces (#32).
  • Fix a typo in the README.

Where's the hash?

  • Adding NewHash{32,64} that returns hash.Hash

Workarounds workarounds workarounds

Workaround Go 1.14's checkptr.

Fixes #27

go.mod clean up and added xxhsum windows binaries.

  • Set go version in all the go.mod files to 1.11.
  • Made xxhsum and cesper benchmarks their own modules to reduce go.mod/go.sum bloat.
  • Published win32 and win64 binaries for xxhsum, fixes #26.

s390x

  • Use the safe version for s390x.

MIPS fix

  • Adds a fix for MIPS.
Commits
  • 73388e8 typos in the readme
  • 845884a Merge pull request #32 from VirrageS/binary-marshal
  • 55accf7 Implement encoding.Binary(Un)Marshaler interfaces for XXHash32 and XXHash64
  • e4128de Merge pull request #31 from johnaoss/master
  • b126dfc Fixes playground README link
  • 85d5025 add NewHash{32,64}.
  • 8f0be54 add -trimpath to build script
  • a70bd9b workaround go 1.14's checkptr
  • c1e3185 build script
  • afb72b2 go.mod cleanup
  • Additional commits viewable in compare view

Updates github.com/lmittmann/tint from 1.1.2 to 1.1.3

Release notes

Sourced from github.com/lmittmann/tint's releases.

v1.1.3

What's Changed

New Contributors

Full Changelog: lmittmann/tint@v1.1.2...v1.1.3

Commits

Updates github.com/maruel/natural from 1.1.1 to 1.3.0

Release notes

Sourced from github.com/maruel/natural's releases.

Supports arbitrary long numbers (larger than uint64)

Fixes #5

Commits
  • 62bab1d GHA: bump codeql to use go1.25
  • c40acd0 Implement support for numbers larger than uint64 thanks to Claude
  • a57ff47 Rename source files because I confuse even myself
  • 10f373e Fix typo in example
  • 47ee8d5 GHA: update dependencies
  • a979987 Update examples, note that StringSlice is now obsolete.
  • bd994d5 Split two examples
  • 4da1177 Silence linter
  • 9d9d060 Add Compare function
  • See full diff in compare view

Updates github.com/mattn/go-isatty from 0.0.20 to 0.0.22

Commits
  • 9a68506 Fix isCygwinPipeName to accept Windows 7 trailing suffix (#90)
  • 4237fb1 Update Go test matrix to current versions (1.24-1.26)
  • 433c12b Update GitHub Actions to latest versions
  • 1cf5589 Add wasip1 and wasip2 to build constraints in isatty_others.go
  • 1237245 Update dependencies: go 1.15 -> 1.21, golang.org/x/sys v0.6.0 -> v0.28.0
  • ac9c88d Fix typo in comment: undocomented -> undocumented
  • 8b7124e Add availability check for NtQueryObject in init
  • 08d0313 Fix isCygwinPipeName to reject names with extra trailing tokens
  • See full diff in compare view

Updates github.com/nicksnyder/go-i18n/v2 from 2.6.0 to 2.6.1

Release notes

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

v2.6.1

What's Changed

New Contributors

Full Changelog: nicksnyder/go-i18n@v2.6.0...v2.6.1

Commits

Updates github.com/olekukonko/tablewriter from 0.0.5 to 1.1.4

Commits
  • a0dea8a no need to disable twice
  • a4fb40a Merge pull request #314 from sducamp/fix/rendition-debug-leak
  • 6bc4cb4 fix: prevent debug output leak from renderer during Options() reconfiguration
  • 54408fe update ll to v0.1.6
  • 5ea5f3c add mote tab test ans update go mod
  • 1455dd8 Merge pull request #311 from olekukonko/tabber
  • d7b0a55 improve tab and make test more predictable
  • 62117a2 add space default #312 for colorized renderer
  • 4958831 ll v0.1.5 update enables logging by default hence disable
  • 1c68e06 use space for padding as default #312
  • Additional commits viewable in compare view

Updates github.com/sebdah/goldie/v2 from 2.5.5 to 2.8.0

Release notes

Sourced from github.com/sebdah/goldie/v2's releases.

Refactored assertions to use the testing.TB interface

  • Refactored assertions to use the testing.TB interface

v2.7.1

What's Changed

Full Changelog: sebdah/goldie@v2.7.0...v2.7.1

v2.7.0

What's Changed

  • feat: updated AssertWithTemplate to generate fixtures with variables when using the -update flag by @​pd93 in sebdah/goldie#44

Full Changelog: sebdah/goldie@v2.6.0...v2.7.0

v2.6.0

What's Changed

New Contributors

Full Changelog: sebdah/goldie@v2.5.5...v2.6.0

Commits
  • 5baf619 Merge pull request #54 from sebdah/issue/39
  • 9d3b28e Add test name to assertion output
  • c0dbdf7 Merge pull request #53 from weave-io/improve-testing-extensibility
  • 34ae79f Fix PR comments
  • 188fad9 Change assertion calls to use testing.TB interface and expose Golden File dat...
  • 8104de4 Merge pull request #48 from sebdah/fixup/fix-broken-test
  • 15a7e34 Fix broken test
  • dbbb50a Merge pull request #47 from sebdah/feature/clean-up-code
  • d9892d7 Clean up code and fix grammar issues
  • 5f83565 Merge pull request #44 from pd93/improved-templating-support
  • Additional commits viewable in compare view

Updates github.com/stretchr/testify from 1.10.0 to 1.11.1

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.11.1

This release fixes #1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.

What's Changed

Full Changelog: stretchr/testify@v1.11.0...v1.11.1

v1.11.0

What's Changed

Functional Changes

v1.11.0 Includes a number of performance improvements.

Fixes

Documentation, Build & CI

... (truncated)

Commits
  • 2a57335 Merge pull request #1788 from brackendawson/1785-backport-1.11
  • af8c912 Backport #1786 to release/1.11
  • b7801fb Merge pull request #1778 from stretchr/dependabot/github_actions/actions/chec...
  • 69831f3 build(deps): bump actions/checkout from 4 to 5
  • a53be35 Improve captureTestingT helper
  • aafb604 mock: improve formatting of error message
  • 7218e03 improve error msg
  • 929a212 Merge pull request #1758 from stretchr/dolmen/suite-faster-method-filtering
  • bc7459e suite: faster filtering of methods (-testify.m)
  • 7d37b5c suite: refactor methodFilter
  • Additional commits viewable in compare view

Updates github.com/urfave/cli/v3 from 3.4.1 to 3.9.0

Release notes

Sourced from github.com/urfave/cli/v3's releases.

v3.9.0

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.8.0...v3.9.0

v3.8.0

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.7.0...v3.8.0

v3.7.0

... (truncated)

Commits
  • b5aa710 Merge pull request #2321 from wucm667/fix/bool-inverse-alias-help
  • 2f662c8 docs: update testdata/godoc-v3.x.txt for BoolWithInverseFlag alias support
  • b6aec8e docs: regenerate godoc-current.txt for BoolWithInverseFlag alias support
  • c3a86f7 fix: show BoolWithInverseFlag aliases in help text
  • f2cd020 Merge pull request #2319 from barry3406/fix/help-subcommand-flag-parsing
  • 5af9500 fix: parse flags for help subcommand (#2271)
  • b79d768 Merge pull request #2316 from morozov/fix-completion-double-dash
  • 2925d6f Merge pull request #2317 from barry3406/fix/completion-shebang
  • 65406c0 Merge pull request #2308 from gabelluardo/refactor-bash
  • eb4cfc3 fix: drop shebang from bash completion template
  • Additional commits viewable in compare view

Updates golang.org/x/sync from 0.20.0 to 0.21.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 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 go-dependencies group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/pterm/pterm](https://github.com/pterm/pterm) | `0.12.80` | `0.12.83` |
| [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) | `1.5.0` | `1.6.0` |
| [github.com/OneOfOne/xxhash](https://github.com/OneOfOne/xxhash) | `1.2.2` | `1.2.8` |
| [github.com/lmittmann/tint](https://github.com/lmittmann/tint) | `1.1.2` | `1.1.3` |
| [github.com/maruel/natural](https://github.com/maruel/natural) | `1.1.1` | `1.3.0` |
| [github.com/mattn/go-isatty](https://github.com/mattn/go-isatty) | `0.0.20` | `0.0.22` |
| [github.com/nicksnyder/go-i18n/v2](https://github.com/nicksnyder/go-i18n) | `2.6.0` | `2.6.1` |
| [github.com/olekukonko/tablewriter](https://github.com/olekukonko/tablewriter) | `0.0.5` | `1.1.4` |
| [github.com/sebdah/goldie/v2](https://github.com/sebdah/goldie) | `2.5.5` | `2.8.0` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.10.0` | `1.11.1` |
| [github.com/urfave/cli/v3](https://github.com/urfave/cli) | `3.4.1` | `3.9.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.20.0` | `0.21.0` |



Updates `github.com/pterm/pterm` from 0.12.80 to 0.12.83
- [Release notes](https://github.com/pterm/pterm/releases)
- [Commits](pterm/pterm@v0.12.80...v0.12.83)

Updates `golang.org/x/text` from 0.25.0 to 0.34.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.25.0...v0.34.0)

Updates `github.com/BurntSushi/toml` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v1.5.0...v1.6.0)

Updates `github.com/OneOfOne/xxhash` from 1.2.2 to 1.2.8
- [Release notes](https://github.com/OneOfOne/xxhash/releases)
- [Commits](OneOfOne/xxhash@v1.2.2...v1.2.8)

Updates `github.com/lmittmann/tint` from 1.1.2 to 1.1.3
- [Release notes](https://github.com/lmittmann/tint/releases)
- [Commits](lmittmann/tint@v1.1.2...v1.1.3)

Updates `github.com/maruel/natural` from 1.1.1 to 1.3.0
- [Release notes](https://github.com/maruel/natural/releases)
- [Commits](maruel/natural@v1.1.1...v1.3.0)

Updates `github.com/mattn/go-isatty` from 0.0.20 to 0.0.22
- [Commits](mattn/go-isatty@v0.0.20...v0.0.22)

Updates `github.com/nicksnyder/go-i18n/v2` from 2.6.0 to 2.6.1
- [Release notes](https://github.com/nicksnyder/go-i18n/releases)
- [Changelog](https://github.com/nicksnyder/go-i18n/blob/main/CHANGELOG.md)
- [Commits](nicksnyder/go-i18n@v2.6.0...v2.6.1)

Updates `github.com/olekukonko/tablewriter` from 0.0.5 to 1.1.4
- [Release notes](https://github.com/olekukonko/tablewriter/releases)
- [Commits](olekukonko/tablewriter@v0.0.5...v1.1.4)

Updates `github.com/sebdah/goldie/v2` from 2.5.5 to 2.8.0
- [Release notes](https://github.com/sebdah/goldie/releases)
- [Commits](sebdah/goldie@v2.5.5...v2.8)

Updates `github.com/stretchr/testify` from 1.10.0 to 1.11.1
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.10.0...v1.11.1)

Updates `github.com/urfave/cli/v3` from 3.4.1 to 3.9.0
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v3.4.1...v3.9.0)

Updates `golang.org/x/sync` from 0.20.0 to 0.21.0
- [Commits](golang/sync@v0.20.0...v0.21.0)

---
updated-dependencies:
- dependency-name: github.com/pterm/pterm
  dependency-version: 0.12.83
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: golang.org/x/text
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/BurntSushi/toml
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/OneOfOne/xxhash
  dependency-version: 1.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/lmittmann/tint
  dependency-version: 1.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/maruel/natural
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/mattn/go-isatty
  dependency-version: 0.0.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/nicksnyder/go-i18n/v2
  dependency-version: 2.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/olekukonko/tablewriter
  dependency-version: 1.1.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: go-dependencies
- dependency-name: github.com/sebdah/goldie/v2
  dependency-version: 2.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/urfave/cli/v3
  dependency-version: 3.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: golang.org/x/sync
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-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 Jun 8, 2026
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.

0 participants