Skip to content

chore(deps): bump the gomod-minor-and-patch group with 22 updates#1806

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/gomod-minor-and-patch-3bdbdc055a
Closed

chore(deps): bump the gomod-minor-and-patch group with 22 updates#1806
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/gomod-minor-and-patch-3bdbdc055a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jan 19, 2026

Copy link
Copy Markdown
Contributor

Bumps the gomod-minor-and-patch group with 22 updates:

Package From To
github.com/KimMachineGun/automemlimit 0.7.1 0.7.5
github.com/charmbracelet/bubbles 0.20.0 0.21.0
github.com/charmbracelet/bubbletea 1.3.5 1.3.10
github.com/charmbracelet/glamour 0.7.0 0.10.0
github.com/charmbracelet/huh 0.5.1 0.8.0
github.com/charmbracelet/lipgloss 1.1.0 1.1.1-0.20250404203927-76690c660834
github.com/gofrs/flock 0.12.1 0.13.0
github.com/hashicorp/go-retryablehttp 0.7.7 0.7.8
github.com/hashicorp/go-version 1.7.0 1.8.0
github.com/pb33f/openapi-changes 0.0.63 0.0.93
github.com/samber/lo 1.47.0 1.52.0
github.com/sethvargo/go-githubactions 1.1.0 1.3.2
github.com/speakeasy-api/openapi 1.13.1 1.15.0
github.com/speakeasy-api/sdk-gen-config 1.44.0 1.46.0
github.com/speakeasy-api/versioning-reports 0.6.1 0.7.0
github.com/spf13/cobra 1.10.1 1.10.2
github.com/spf13/pflag 1.0.9 1.0.10
github.com/spf13/viper 1.19.0 1.21.0
go.uber.org/zap 1.27.0 1.27.1
golang.org/x/term 0.37.0 0.38.0
golang.org/x/text 0.32.0 0.33.0
oras.land/oras-go/v2 2.5.0 2.6.0

Updates github.com/KimMachineGun/automemlimit from 0.7.1 to 0.7.5

Release notes

Sourced from github.com/KimMachineGun/automemlimit's releases.

v0.7.5

What's Changed

Full Changelog: KimMachineGun/automemlimit@v0.7.4...v0.7.5

v0.7.4

What's Changed

New Contributors

Full Changelog: KimMachineGun/automemlimit@v0.7.3...v0.7.4

v0.7.3

What's Changed

Full Changelog: KimMachineGun/automemlimit@v0.7.2...v0.7.3

v0.7.2

What's Changed

Full Changelog: KimMachineGun/automemlimit@v0.7.1...v0.7.2

Commits
  • 6d12049 fix(memlimit): respect parent cgroup limits in v2 (#31)
  • e8d0135 fix(memlimit): use memory.stat instead of memory.stats (#30)
  • b2c01e8 fix(memlimit): move goroutine execution inside refresh function
  • a9a712b ci: bump ubuntu version
  • a659ed1 fix(memlimit): fix mountinfo validation logic when super options have spaces
  • b5e3683 chore(examples/gosigar): remove gosigar example
  • 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.5 to 1.3.10

Release notes

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

v1.3.10

Changelog

Bug fixes

  • 9edf69c677c7353eca5fae6d3ea3986af39717b7: fix: handle setWindowTitleMsg and windowSizeMsg in eventLoop (@​aymanbagabas)

Thoughts? Questions? We love hearing from you. Feel free to reach out on X, Discord, Slack, The Fediverse, Bluesky.

v1.3.9

Changelog

New Features

  • 314b50c7b452fd737d28582ae9d27c04ea725001: feat: properly call nested sequenceMsg and batchMsg (@​wolfmagnate)

Bug fixes

  • 9e0e8f0df1c55044ed04bd17f4b460e01e94dc9c: fix: recover from nested panics in Sequence and Batch commands (@​aymanbagabas)

Other work

  • 6e1282a76358cb680de9d4de7520f9f99c9e2903: add example for the nested Sequence and Batch (@​wolfmagnate)
  • 0290af4a499ee6a3e22822cebe1e74fdeac313be: simplify case for BatchMsg (@​wolfmagnate)

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

v1.3.8

Changelog

Bug fixes

  • 21eecd586367fd0cd78da6842c48f9c4b1185b6f: fix: send batch commands to cmds channel instead of executing them in event loop (#1473) (@​aymanbagabas)

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

v1.3.7

Changelog

Bug fixes

  • 28ab4f41b29fef14d900c46a4873a45891a9ee9b: fix(renderer): properly reset cursor position to start of line (#1472) (@​aymanbagabas)
  • c76509a9d4974207cd66255707d14f4f938f7f52: fix: compact sequences like batches (#958) (@​jdhenke)
  • f5da8d068af74764b271a197de54e2bc2bfedb38: fix: handle nested SequenceMsg in event loop and use sync.WaitGroup f… (#1463) (@​aymanbagabas)
  • 80ea844a7650c84e13958de14cdd4f63ac1775aa: fix: lint issues in key_windows.go and tty_windows.go (@​aymanbagabas)

Documentation updates

  • c3136ed49037a096fe05c6cb16f0a14a38e20c58: docs(license): update copyright date range (@​meowgorithm)
  • 919805f8f0d134af7e3569b0054c13b561976dfa: docs(readme): update footer art (@​meowgorithm)
  • f01583bb899e125c7a26d3b870eff585ec0f4816: docs: show the correct branch in the build badge (@​aymanbagabas)

Other work

... (truncated)

Commits
  • 9edf69c fix: handle setWindowTitleMsg and windowSizeMsg in eventLoop
  • 31c0299 chore(deps): bump github.com/lucasb-eyer/go-colorful (#1496)
  • ffa0502 Merge pull request #848 from wolfmagnate/fix-nested-cmd-order
  • 9e0e8f0 fix: recover from nested panics in Sequence and Batch commands
  • 0966c3a Merge branch 'main' into fix-nested-cmd-order
  • 21eecd5 fix: send batch commands to cmds channel instead of executing them in event l...
  • 9aae1f0 chore(examples): go mod tidy
  • 41f3995 chore(deps): bump golang.org/x/sys in the all group (#1492)
  • 3da2d28 chore(deps): bump actions/setup-go from 5 to 6 in the all group (#1491)
  • 28ab4f4 fix(renderer): properly reset cursor position to start of line (#1472)
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/glamour from 0.7.0 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/huh from 0.5.1 to 0.8.0

Release notes

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

v0.8.0

Fields aren’t just for farmers

Hi! This big feature in this release is that you can now create and maintain your own Field types as Field.RunAccessible is now public. Check out the Field interface and go crazy.

We also fixed a handful of bugs in the release. Special thanks to @​pashpashpash for nudging us to cut a release.

Changelog

New!

Fixed

Other Stuff

New Contributors

Full Changelog: charmbracelet/huh@v0.7.0...v0.8.0

v0.7.0

Less bugs, more feats

This is a quality-of-life release which fixes a handful of behavioral and rendering issues, and adds a few of useful features.

go get github.com/charmbracelet/huh@latest

Accessible mode: now more accessible

We made several updates to accessible mode, and it should now work better with screen readers.

It will also now respect WithInput and WithOutput.

... (truncated)

Commits
  • a01a1e3 ci: sync dependabot config (#705)
  • 889bfce chore(deps): bump github.com/charmbracelet/bubbletea (#703)
  • f197546 fix: add missing id when initializing a field select (#692)
  • ac0ddb0 chore(deps): bump github.com/charmbracelet/bubbletea (#702)
  • 4bd115b chore(deps): bump github.com/charmbracelet/bubbletea (#695)
  • 4fa23e7 chore(deps): bump github.com/charmbracelet/bubbletea (#694)
  • 904537b chore(deps): bump actions/setup-go from 5 to 6 in the all group (#696)
  • fa7f8a2 ci: sync dependabot config (#689)
  • c41a69b chore(deps): bump actions/checkout from 4 to 5 (#688)
  • 95b882d docs(filepicker): correct comment for DirAllowed function (#681)
  • 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/gofrs/flock from 0.12.1 to 0.13.0

Release notes

Sourced from github.com/gofrs/flock's releases.

v0.13.0

What's Changed

Minimum Go version 1.24

Full Changelog: gofrs/flock@v0.12.1...v0.13.0

Commits
  • bfec60b chore(deps): bump golang.org/x/sys from 0.36.0 to 0.37.0 in the gomod group (...
  • 7094284 chore: update linter
  • 8111aec feat: add Stat method (#127)
  • 6f0f0ed chore(deps): bump the github-actions group with 4 updates (#126)
  • fe44231 chore(deps): bump golang.org/x/sys from 0.35.0 to 0.36.0 in the gomod group (...
  • f74f0fb chore(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1 in the go...
  • c1f6d16 chore(deps): bump golang.org/x/sys from 0.34.0 to 0.35.0 in the gomod group (...
  • c542c57 chore(deps): bump github/codeql-action from 3.29.2 to 3.29.5 in the github-ac...
  • 425570b chore(deps): bump golang.org/x/sys from 0.33.0 to 0.34.0 in the gomod group (...
  • 12753ea chore(deps): bump github/codeql-action from 3.28.18 to 3.29.2 in the github-a...
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-retryablehttp from 0.7.7 to 0.7.8

Commits
  • e1f5485 Add a new RateLimitLinearJitterBackoff policy
  • b0cac1e Merge pull request #262 from hashicorp/dependabot-intge
  • 66c110b few new parameters added to dependabot.yml
  • 25b39e6 IND-3836 additions of new parameters to dependabot.yml
  • eeac125 add comment for bodyType param in client.Post
  • 390c1d8 Merge pull request #254 from hashicorp/compliance/add-headers
  • f4d7325 [COMPLIANCE] Add Copyright and License Headers
  • a881d6c Merge pull request #251 from hashicorp/build-test
  • 9c1b40b go-version matrix updated
  • e3867e3 resolved comments
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-version from 1.7.0 to 1.8.0

Release notes

Sourced from github.com/hashicorp/go-version's releases.

v1.8.0

What's Changed

New Contributors

Full Changelog: hashicorp/go-version@v1.7.0...v1.8.0

Changelog

Sourced from github.com/hashicorp/go-version's changelog.

1.8.0 (Nov 28, 2025)

ENHANCEMENTS:

INTERNAL:

Commits
  • 505335e Merge pull request #175 from florianl/drop-init
  • 6dd734b drop init()
  • 0824a89 Merge pull request #172 from hashicorp/compliance/update-headers
  • 9325934 [COMPLIANCE] Update Copyright and License Headers
  • 5b82b98 Bump the github-actions-breaking group across 1 directory with 2 updates (#171)
  • 6c6cd77 Bump actions/checkout from 4.2.2 to 5.0.0 in the github-actions-breaking grou...
  • 0e50733 Bump actions/cache from 4.2.3 to 4.2.4 in the github-actions-backward-compati...
  • 4e24ef1 Bytes implementation (#161)
  • 437649a Add benchmark test for version.String() (#159)
  • b6c4db5 Merge pull request #158 from hashicorp/compliance-template
  • Additional commits viewable in compare view

Updates github.com/pb33f/openapi-changes from 0.0.63 to 0.0.93

Release notes

Sourced from github.com/pb33f/openapi-changes's releases.

v0.0.93

Changelog

  • 88c786edc47b430dfedb15878cf7853692ee8eae Fixed the conflict with the use-cdn and config flags.

v0.0.92

Changelog

  • c6648f4560662134bf6012067b8ba0e683e22acf bumping docker version

v0.0.91

Changelog

  • 53f9efab8b22efae6c7687275496fa21d2b90232 Added config feature for breaking changes.
  • bf2968c8a47e00a677e75d72d7b53b756596dd49 fixed replace mistake

v0.0.90

Changelog

  • 776fee1b7fb069aef89d702bb328cf145730dd9d init

v0.0.89

Changelog

  • b7e7bc24027d1aec7185520d63674c315bb279e2 feat(html-report): add commit hash, date, and author to timeline items matching report summary format and styling

v0.0.88

Changelog

  • 0c8432fcff90fd2a9a2688978530b3e75c4998c0 fixed docker image

v0.0.87

Changelog

  • 0793bada534bc76b26868ec3cd7129e798dda555 updating tests after upgrade
  • 3a1a509abec0ea3639153cced35a365d7f3788c1 upgrade to libopenapi 0.28

v0.0.86

Changelog

  • da63594af44c783f598d4fae96c112a2c99d72de upgrade libopenapi!

v0.0.85

Changelog

  • c1c80fb02c78cc1496de61d125df3e781fffa803 bump deps

v0.0.84

Changelog

  • 140cf38ff1a4ac5550a584176d67bf10deb310e1 feat: add markdown-report
  • 752dbb2ad7b82b01867bb3fc0464089cb8e54b5c feat: add markdown-report
  • ab3d68b09a926e9815ce074fe953d13cc37aef55 fix test
  • 903f549f67a926536946246f2f91c0c05a94d09d fix test

v0.0.83

Changelog

  • 8406c2e75d3fdb41a05a0f9646fb3cb668a681a9 fixed issue #223

v0.0.82

... (truncated)

Commits
  • fd9afb4 Fixed the conflict with the use-cdn and config flags.
  • c6648f4 bumping docker version
  • bf2968c fixed replace mistake
  • 53f9efa Added config feature for breaking changes.
  • 776fee1 init
  • b7e7bc2 feat(html-report): add commit hash, date, and author to timeline items
  • 0c8432f fixed docker image
  • 0793bad updating tests after upgrade
  • 3a1a509 upgrade to libopenapi 0.28
  • da63594 upgrade libopenapi!
  • Additional commits viewable in compare view

Updates github.com/samber/lo from 1.47.0 to 1.52.0

Release notes

Sourced from github.com/samber/lo's releases.

v1.52.0

Thrilled to announce the latest release of samber/lo!

This version brings major improvements:

  • A new it/ sub-package for everything related to the iter package added in Go 1.23. Big up to @​NathanBaulch for its help on this
  • A new documentation -> lo.samber.dev
  • Lots of micro fixes and performance improvements
  • Better code quality with many more linters

✨ A good introduction to streams in Go !

What's Changed

Tests

Style

... (truncated)

Commits
  • a25c42d bump v1.52.0
  • 15ac624 docs: adding go playground examples to it/ package (#708)
  • c7e9459 docs: lots of various doc improvements (#706)
  • fa2d724 doc: add it/mutable/parallel sub-package to llms.txt (#707)
  • aa3a48d fix(doc): add missing "contributing" entry in the menu
  • 5def06d fix(doc): various hot fixes
  • f9a57ef chore(deps-dev): bump typescript from 5.6.3 to 5.9.3 in /docs (#704)
  • 8b8aa28 fix(doc): make "iter" package visible in doc sidebar
  • 39e418f doc: adding a "contributing" page
  • 1b3cb42 fix(doc): improve algolia search
  • Additional commits viewable in compare view

Updates github.com/sethvargo/go-githubactions from 1.1.0 to 1.3.2

Release notes

Sourced from github.com/sethvargo/go-githubactions's releases.

v1.3.2

What's Changed

New Contributors

Full Changelog: sethvargo/go-githubactions@v1.3.1...v1.3.2

v1.3.1

What's Changed

New Contributors

Full Changelog: sethvargo/go-githubactions@v1.3.0...v1.3.1

v1.3.0

What's Changed

New Contributors

Full Changelog: sethvargo/go-githubactions@v1.2.0...v1.3.0

v1.2.0

This release updates the minimum Go version to 1.21.

What's Changed

New Contributors

Full Changelog: sethvargo/go-githubactions@v1.1.0...v1.2.0

Commits
  • c21eb19 Use static errors for OIDC Token fetcher (#64)
  • a6c950a Add GITHUB_TRIGGERING_ACTOR to GH context (#60)
  • 09fc534 actions: added GITHUB_ACTOR_ID to Context (#58)
  • ...

    Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jan 19, 2026
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/gomod-minor-and-patch-3bdbdc055a branch 3 times, most recently from a6f8250 to e28ae81 Compare January 22, 2026 01:26
Bumps the gomod-minor-and-patch group with 22 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) | `0.7.1` | `0.7.5` |
| [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.5` | `1.3.10` |
| [github.com/charmbracelet/glamour](https://github.com/charmbracelet/glamour) | `0.7.0` | `0.10.0` |
| [github.com/charmbracelet/huh](https://github.com/charmbracelet/huh) | `0.5.1` | `0.8.0` |
| [github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss) | `1.1.0` | `1.1.1-0.20250404203927-76690c660834` |
| [github.com/gofrs/flock](https://github.com/gofrs/flock) | `0.12.1` | `0.13.0` |
| [github.com/hashicorp/go-retryablehttp](https://github.com/hashicorp/go-retryablehttp) | `0.7.7` | `0.7.8` |
| [github.com/hashicorp/go-version](https://github.com/hashicorp/go-version) | `1.7.0` | `1.8.0` |
| [github.com/pb33f/openapi-changes](https://github.com/pb33f/openapi-changes) | `0.0.63` | `0.0.93` |
| [github.com/samber/lo](https://github.com/samber/lo) | `1.47.0` | `1.52.0` |
| [github.com/sethvargo/go-githubactions](https://github.com/sethvargo/go-githubactions) | `1.1.0` | `1.3.2` |
| [github.com/speakeasy-api/openapi](https://github.com/speakeasy-api/openapi) | `1.13.1` | `1.15.0` |
| [github.com/speakeasy-api/sdk-gen-config](https://github.com/speakeasy-api/sdk-gen-config) | `1.44.0` | `1.46.0` |
| [github.com/speakeasy-api/versioning-reports](https://github.com/speakeasy-api/versioning-reports) | `0.6.1` | `0.7.0` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |
| [github.com/spf13/pflag](https://github.com/spf13/pflag) | `1.0.9` | `1.0.10` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.19.0` | `1.21.0` |
| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.0` | `1.27.1` |
| [golang.org/x/term](https://github.com/golang/term) | `0.37.0` | `0.38.0` |
| [golang.org/x/text](https://github.com/golang/text) | `0.32.0` | `0.33.0` |
| [oras.land/oras-go/v2](https://github.com/oras-project/oras-go) | `2.5.0` | `2.6.0` |


Updates `github.com/KimMachineGun/automemlimit` from 0.7.1 to 0.7.5
- [Release notes](https://github.com/KimMachineGun/automemlimit/releases)
- [Commits](KimMachineGun/automemlimit@v0.7.1...v0.7.5)

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

Updates `github.com/charmbracelet/bubbletea` from 1.3.5 to 1.3.10
- [Release notes](https://github.com/charmbracelet/bubbletea/releases)
- [Commits](charmbracelet/bubbletea@v1.3.5...v1.3.10)

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

Updates `github.com/charmbracelet/huh` from 0.5.1 to 0.8.0
- [Release notes](https://github.com/charmbracelet/huh/releases)
- [Commits](charmbracelet/huh@v0.5.1...v0.8.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)
- [Commits](https://github.com/charmbracelet/lipgloss/commits)

Updates `github.com/gofrs/flock` from 0.12.1 to 0.13.0
- [Release notes](https://github.com/gofrs/flock/releases)
- [Commits](gofrs/flock@v0.12.1...v0.13.0)

Updates `github.com/hashicorp/go-retryablehttp` from 0.7.7 to 0.7.8
- [Changelog](https://github.com/hashicorp/go-retryablehttp/blob/main/CHANGELOG.md)
- [Commits](hashicorp/go-retryablehttp@v0.7.7...v0.7.8)

Updates `github.com/hashicorp/go-version` from 1.7.0 to 1.8.0
- [Release notes](https://github.com/hashicorp/go-version/releases)
- [Changelog](https://github.com/hashicorp/go-version/blob/main/CHANGELOG.md)
- [Commits](hashicorp/go-version@v1.7.0...v1.8.0)

Updates `github.com/pb33f/openapi-changes` from 0.0.63 to 0.0.93
- [Release notes](https://github.com/pb33f/openapi-changes/releases)
- [Commits](pb33f/openapi-changes@v0.0.63...v0.0.93)

Updates `github.com/samber/lo` from 1.47.0 to 1.52.0
- [Release notes](https://github.com/samber/lo/releases)
- [Commits](samber/lo@v1.47.0...v1.52.0)

Updates `github.com/sethvargo/go-githubactions` from 1.1.0 to 1.3.2
- [Release notes](https://github.com/sethvargo/go-githubactions/releases)
- [Commits](sethvargo/go-githubactions@v1.1.0...v1.3.2)

Updates `github.com/speakeasy-api/openapi` from 1.13.1 to 1.15.0
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.13.1...v1.15.0)

Updates `github.com/speakeasy-api/sdk-gen-config` from 1.44.0 to 1.46.0
- [Release notes](https://github.com/speakeasy-api/sdk-gen-config/releases)
- [Commits](speakeasy-api/sdk-gen-config@v1.44.0...v1.46.0)

Updates `github.com/speakeasy-api/versioning-reports` from 0.6.1 to 0.7.0
- [Commits](speakeasy-api/versioning-reports@v0.6.1...v0.7.0)

Updates `github.com/spf13/cobra` from 1.10.1 to 1.10.2
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.10.1...v1.10.2)

Updates `github.com/spf13/pflag` from 1.0.9 to 1.0.10
- [Release notes](https://github.com/spf13/pflag/releases)
- [Commits](spf13/pflag@v1.0.9...v1.0.10)

Updates `github.com/spf13/viper` from 1.19.0 to 1.21.0
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.19.0...v1.21.0)

Updates `go.uber.org/zap` from 1.27.0 to 1.27.1
- [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.27.0...v1.27.1)

Updates `golang.org/x/term` from 0.37.0 to 0.38.0
- [Commits](golang/term@v0.37.0...v0.38.0)

Updates `golang.org/x/text` from 0.32.0 to 0.33.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.32.0...v0.33.0)

Updates `oras.land/oras-go/v2` from 2.5.0 to 2.6.0
- [Release notes](https://github.com/oras-project/oras-go/releases)
- [Commits](oras-project/oras-go@v2.5.0...v2.6.0)

---
updated-dependencies:
- dependency-name: github.com/KimMachineGun/automemlimit
  dependency-version: 0.7.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/charmbracelet/bubbles
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/charmbracelet/bubbletea
  dependency-version: 1.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/charmbracelet/glamour
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/charmbracelet/huh
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- 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: gomod-minor-and-patch
- dependency-name: github.com/gofrs/flock
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/hashicorp/go-retryablehttp
  dependency-version: 0.7.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/hashicorp/go-version
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/pb33f/openapi-changes
  dependency-version: 0.0.93
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/samber/lo
  dependency-version: 1.52.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/sethvargo/go-githubactions
  dependency-version: 1.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/openapi
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/sdk-gen-config
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/versioning-reports
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/spf13/cobra
  dependency-version: 1.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/spf13/pflag
  dependency-version: 1.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/spf13/viper
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: go.uber.org/zap
  dependency-version: 1.27.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: golang.org/x/term
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: golang.org/x/text
  dependency-version: 0.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: oras.land/oras-go/v2
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/gomod-minor-and-patch-3bdbdc055a branch from e28ae81 to ccc8c32 Compare January 22, 2026 15:05
@dependabot @github

dependabot Bot commented on behalf of github Jan 22, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jan 22, 2026
@dependabot
dependabot Bot deleted the dependabot/go_modules/gomod-minor-and-patch-3bdbdc055a branch January 22, 2026 18:02
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