Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 18, 2025

Bumps the minor-and-patch group with 11 updates:

Package From To
github.com/BurntSushi/toml 1.3.2 1.5.0
github.com/fatih/color 1.16.0 1.18.0
github.com/schollz/progressbar/v3 3.14.1 3.18.0
github.com/spf13/cobra 1.8.0 1.9.1
go.uber.org/zap 1.26.0 1.27.0
github.com/mattn/go-colorable 0.1.13 0.1.14
github.com/rivo/uniseg 0.4.4 0.4.7
github.com/spf13/pflag 1.0.5 1.0.6
go.uber.org/multierr 1.10.0 1.11.0
golang.org/x/sys 0.15.0 0.29.0
golang.org/x/term 0.15.0 0.28.0

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

Release notes

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

v1.5.0

Mostly some small bugfixes, with a few small new features:

  • Add Position.Col, to mark the column an error occurred (#410)

  • Print more detailed errors in the tomlv CLI.

  • Ensure ParseError.Message is always set (#411)

  • Allow custom string types as map keys (#414)

  • Mark meta keys as decoded when using Unmarshaler interface (#426)

  • Fix encoding when nested inline table ends with map (#438)

  • Fix encoding of several layers of embedded structs (#430)

  • Fix ErrorWithPosition panic when there is no newline in the TOML document (#433)

v1.4.0

This version requires Go 1.18

  • Add toml.Marshal() (#405)

  • Require 2-digit hour (#320)

  • Wrap UnmarshalTOML() and UnmarshalText() return values in ParseError for position information (#398)

  • Fix inline tables with dotted keys inside inline arrays (e.g. k=[{a.b=1}]) (#400)

Commits
  • d97def5 Update toml-test
  • d10101f Correct encoding of comma when nested inline table ends with map
  • 75a4f17 Correct encoding of several layers of embedded structs
  • 702f5a6 Minor staticcheck fixes
  • 6f7689d Mark meta keys as decoded when using Unmarshaler interface (#426)
  • 8323983 Remove exception for fuzzer
  • 4664468 Fix ErrorWithPosition panic when less than two lines
  • 211c915 Fix typos in comments, tests, error message (#432)
  • c141a29 Test with Go 1.24 in CI
  • 2918ee7 Fix metadata: do not reuse result of append (#418)
  • Additional commits viewable in compare view

Updates github.com/fatih/color from 1.16.0 to 1.18.0

Release notes

Sourced from github.com/fatih/color's releases.

v1.18.0

What's Changed

New Contributors

Full Changelog: fatih/color@v1.17.0...v1.18.0

v1.17.0

What's Changed

New Contributors

Full Changelog: fatih/color@v1.16.0...v1.17.0

Commits
  • 1c8d870 Update README.md
  • 546c2d0 Merge pull request #225 from fatih/add-rgb-api
  • 1ff0f97 Apply suggestions from code review
  • 5723903 Add RGB API support
  • f203fbc Merge pull request #237 from fatih/dependabot/go_modules/golang.org/x/sys-0.25.0
  • 60aa7fb Bump golang.org/x/sys from 0.24.0 to 0.25.0
  • 741c2f4 Merge pull request #236 from fatih/dependabot/go_modules/golang.org/x/sys-0.24.0
  • 0d24b42 Bump golang.org/x/sys from 0.18.0 to 0.24.0
  • cb154c0 Merge pull request #235 from deining/fix-typo
  • 9b9653e Bump GitHub workflow actions
  • Additional commits viewable in compare view

Updates github.com/schollz/progressbar/v3 from 3.14.1 to 3.18.0

Release notes

Sourced from github.com/schollz/progressbar/v3's releases.

v3.18.0

What's Changed

New Contributors

Full Changelog: schollz/progressbar@v3.17.1...v3.18.0

v3.17.1

What's Changed

New Contributors

Full Changelog: schollz/progressbar@v3.17.0...v3.17.1

v3.17.0

What's Changed

New Contributors

Full Changelog: schollz/progressbar@v3.16.1...v3.17.0

v3.16.1

What's Changed

Full Changelog: schollz/progressbar@v3.16.0...v3.16.1

v3.16.0

What's Changed

Full Changelog: schollz/progressbar@v3.15.0...v3.16.0

v3.15.0

What's Changed

... (truncated)

Commits

Updates github.com/spf13/cobra from 1.8.0 to 1.9.1

Release notes

Sourced from github.com/spf13/cobra's releases.

v1.9.1

🐛 Fixes

Full Changelog: spf13/cobra@v1.9.0...v1.9.1

v1.9.0

✨ Features

🐛 Fixes

🤖 Completions

🧪 Testing

✍🏼 Documentation

🔧 Dependency upgrades

... (truncated)

Commits

Updates go.uber.org/zap from 1.26.0 to 1.27.0

Release notes

Sourced from go.uber.org/zap's releases.

v1.27.0

Enhancements:

  • #1378[]: Add WithLazy method for SugaredLogger.
  • #1399[]: zaptest: Add NewTestingWriter for customizing TestingWriter with more flexibility than NewLogger.
  • #1406[]: Add Log, Logw, Logln methods for SugaredLogger.
  • #1416[]: Add WithPanicHook option for testing panic logs.

Thanks to @​defval, @​dimmo, @​arxeiss, and @​MKrupauskas for their contributions to this release.

#1378: uber-go/zap#1378 #1399: uber-go/zap#1399 #1406: uber-go/zap#1406 #1416: uber-go/zap#1416

Changelog

Sourced from go.uber.org/zap's changelog.

1.27.0 (20 Feb 2024)

Enhancements:

  • #1378[]: Add WithLazy method for SugaredLogger.
  • #1399[]: zaptest: Add NewTestingWriter for customizing TestingWriter with more flexibility than NewLogger.
  • #1406[]: Add Log, Logw, Logln methods for SugaredLogger.
  • #1416[]: Add WithPanicHook option for testing panic logs.

Thanks to @​defval, @​dimmo, @​arxeiss, and @​MKrupauskas for their contributions to this release.

#1378: uber-go/zap#1378 #1399: uber-go/zap#1399 #1406: uber-go/zap#1406 #1416: uber-go/zap#1416

Commits

Updates github.com/mattn/go-colorable from 0.1.13 to 0.1.14

Commits
  • 1f71342 update deps
  • 4503567 Merge pull request #73 from whereswaldon/patch-1
  • 40e70a5 [Windows] harden system DLL loading
  • 603fb50 Merge pull request #71 from hymkor/fork-20241118
  • 664d917 Fix: ESC[E and ESC[F with no arguments did not move the cursor on the legacy ...
  • 2b733b5 Merge pull request #69 from dolmen-go/merge-appengine-into-others
  • 9473000 Merge pull request #68 from dolmen-go/do-not-expose-Windows-Writer
  • 3cc8472 Merge pull request #67 from dolmen-go/ci-go1.20
  • d9a68d5 Merge colorable_appengine.go into colorable_others.go
  • 8e4a944 Windows: do not export Writer
  • Additional commits viewable in compare view

Updates github.com/rivo/uniseg from 0.4.4 to 0.4.7

Commits
  • 03509a9 Fixed wrong width calculation for variation selectors combined with regular c...
  • 601bbb3 Clarified some performance statements.
  • f302f7f Clarifications and improvements in the package documentation.
  • 0b9a924 Improved performance by using switch statements instead of maps for state tra...
  • e258aa1 Switched from transition map to switch statement to improve performance.
  • b74d4dc Some performance improvements by fast-tracking property search on ASCII chara...
  • 97691fc Merge pull request #47 from junegunn/eastasian-ambiguous
  • 1f39ebc Add comment
  • 272e3f0 Allow configuring the width of East Asian ambiguous width characters
  • 3628fa1 Merge pull request #42 from meowgorithm/unicode-v15.0.0
  • Additional commits viewable in compare view

Updates github.com/spf13/pflag from 1.0.5 to 1.0.6

Release notes

Sourced from github.com/spf13/pflag's releases.

v1.0.6

What's Changed

New Contributors

Full Changelog: spf13/pflag@v1.0.5...v1.0.6

Commits

Updates go.uber.org/multierr from 1.10.0 to 1.11.0

Release notes

Sourced from go.uber.org/multierr's releases.

v1.11.0

  • Errors now supports any error that implements multiple-error interface.
  • Add Every function to allow checking if all errors in the chain satisfies errors.Is against the target error.
Changelog

Sourced from go.uber.org/multierr's changelog.

v1.11.0 (2023-03-28)

  • Errors now supports any error that implements multiple-error interface.
  • Add Every function to allow checking if all errors in the chain satisfies errors.Is against the target error.
Commits

Updates golang.org/x/sys from 0.15.0 to 0.29.0

Commits
  • d4ac05d windows: update NewLazyDLL, LoadDLL docs to point to NewLazySystemDLL
  • 680bd24 windows: remove unused errString type
  • a7f19e9 unix: add Dup3 on dragonfly
  • fe16172 unix: define IfMsghdr2, IfData64, and RtMsghdr2 on darwin
  • 0a57dbc unix: update to kernel Linux 6.12
  • 3cf1e67 unix: don't fail TestPpoll on EINTR
  • d2cea70 windows: add functions to get named pipe process IDs
  • a13946c windows: regenerate zsyscall_windows.go
  • e0753d4 Revert "windows/mkwinsyscall: use syscall.SyscallN instead of syscall.Syscall...
  • c29efe3 windows: add iphlpapi functions for change notifications
  • Additional commits viewable in compare view

Updates golang.org/x/term from 0.15.0 to 0.28.0

Commits
  • 40b02d6 go.mod: update golang.org/x dependencies
  • 442846a go.mod: update golang.org/x dependencies
  • b725e36 go.mod: update golang.org/x dependencies
  • 54df7da README: don't recommend go get
  • 9d5441a go.mod: update golang.org/x dependencies
  • 2f7b0dd go.mod: update golang.org/x dependencies
  • f867b76 x/term: set missing VIRTUAL_TERMINAL_INPUT flag on Windows
  • d598954 go.mod: update golang.org/x dependencies
  • d4346f0 LICENSE: update per Google Legal
  • c976cb1 go.mod: update golang.org/x dependencies
  • Additional commits viewable 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

Bumps the minor-and-patch group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) | `1.3.2` | `1.5.0` |
| [github.com/fatih/color](https://github.com/fatih/color) | `1.16.0` | `1.18.0` |
| [github.com/schollz/progressbar/v3](https://github.com/schollz/progressbar) | `3.14.1` | `3.18.0` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.0` | `1.9.1` |
| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.26.0` | `1.27.0` |
| [github.com/mattn/go-colorable](https://github.com/mattn/go-colorable) | `0.1.13` | `0.1.14` |
| [github.com/rivo/uniseg](https://github.com/rivo/uniseg) | `0.4.4` | `0.4.7` |
| [github.com/spf13/pflag](https://github.com/spf13/pflag) | `1.0.5` | `1.0.6` |
| [go.uber.org/multierr](https://github.com/uber-go/multierr) | `1.10.0` | `1.11.0` |
| [golang.org/x/sys](https://github.com/golang/sys) | `0.15.0` | `0.29.0` |
| [golang.org/x/term](https://github.com/golang/term) | `0.15.0` | `0.28.0` |


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

Updates `github.com/fatih/color` from 1.16.0 to 1.18.0
- [Release notes](https://github.com/fatih/color/releases)
- [Commits](fatih/color@v1.16.0...v1.18.0)

Updates `github.com/schollz/progressbar/v3` from 3.14.1 to 3.18.0
- [Release notes](https://github.com/schollz/progressbar/releases)
- [Commits](schollz/progressbar@v3.14.1...v3.18.0)

Updates `github.com/spf13/cobra` from 1.8.0 to 1.9.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.8.0...v1.9.1)

Updates `go.uber.org/zap` from 1.26.0 to 1.27.0
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](uber-go/zap@v1.26.0...v1.27.0)

Updates `github.com/mattn/go-colorable` from 0.1.13 to 0.1.14
- [Commits](mattn/go-colorable@v0.1.13...v0.1.14)

Updates `github.com/rivo/uniseg` from 0.4.4 to 0.4.7
- [Release notes](https://github.com/rivo/uniseg/releases)
- [Commits](rivo/uniseg@v0.4.4...v0.4.7)

Updates `github.com/spf13/pflag` from 1.0.5 to 1.0.6
- [Release notes](https://github.com/spf13/pflag/releases)
- [Commits](spf13/pflag@v1.0.5...v1.0.6)

Updates `go.uber.org/multierr` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/uber-go/multierr/releases)
- [Changelog](https://github.com/uber-go/multierr/blob/master/CHANGELOG.md)
- [Commits](uber-go/multierr@v1.10.0...v1.11.0)

Updates `golang.org/x/sys` from 0.15.0 to 0.29.0
- [Commits](golang/sys@v0.15.0...v0.29.0)

Updates `golang.org/x/term` from 0.15.0 to 0.28.0
- [Commits](golang/term@v0.15.0...v0.28.0)

---
updated-dependencies:
- dependency-name: github.com/BurntSushi/toml
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/fatih/color
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/schollz/progressbar/v3
  dependency-version: 3.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/spf13/cobra
  dependency-version: 1.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: go.uber.org/zap
  dependency-version: 1.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/mattn/go-colorable
  dependency-version: 0.1.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/rivo/uniseg
  dependency-version: 0.4.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/spf13/pflag
  dependency-version: 1.0.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: go.uber.org/multierr
  dependency-version: 1.11.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: golang.org/x/sys
  dependency-version: 0.29.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: golang.org/x/term
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 18, 2025

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@coderabbitai
Copy link

coderabbitai bot commented Aug 18, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link

This pull request has been automatically marked as stale because it has not had recent activity.
Please rebase against the latest main branch and address any feedback to keep it active.

@github-actions github-actions bot added the stale label Sep 19, 2025
@dacrab dacrab merged commit 419c6c4 into main Sep 22, 2025
6 checks passed
@dependabot dependabot bot deleted the dependabot/go_modules/minor-and-patch-70102f4c22 branch September 22, 2025 15:20
@github-actions github-actions bot added the locked label Nov 2, 2025
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 2, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants