Skip to content

chore(deps): bump the gomod-minor-and-patch group across 1 directory with 19 updates#2038

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/gomod-minor-and-patch-5ee527e24a
Open

chore(deps): bump the gomod-minor-and-patch group across 1 directory with 19 updates#2038
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/gomod-minor-and-patch-5ee527e24a

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 13, 2026

Bumps the gomod-minor-and-patch group with 16 updates in the / directory:

Package From To
github.com/bmatcuk/doublestar/v4 4.9.1 4.10.0
github.com/charmbracelet/bubbletea 1.3.5 1.3.10
github.com/go-git/go-billy/v5 5.6.2 5.9.0
github.com/go-git/go-git/v5 5.16.4 5.19.0
github.com/gofrs/flock 0.12.1 0.13.0
github.com/hashicorp/go-version 1.7.0 1.9.0
github.com/samber/lo 1.52.0 1.53.0
github.com/speakeasy-api/openapi 1.20.0 1.23.0
github.com/speakeasy-api/speakeasy-agent-mode-content 0.2.0 0.2.5
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.1 1.28.0
goa.design/goa/v3 3.24.1 3.26.0
oras.land/oras-go/v2 2.5.0 2.6.0

Updates github.com/bmatcuk/doublestar/v4 from 4.9.1 to 4.10.0

Release notes

Sourced from github.com/bmatcuk/doublestar/v4's releases.

Added WithNoHidden option

Added support for a WithNoHidden option to ignore hidden files in patterns that might unintentionally match them. For example, a .config directory would not be matched by * or recursed into by **, but would be matched by .* or recursed by .config/**.

Thanks to @​lukasngl for the initial PR and idea!

What's Changed

New Contributors

Full Changelog: bmatcuk/doublestar@v4.9.2...v4.10.0

Fixed Handling of Paths With Meta Chars Using Alts

@​toga4 submitted a PR that fixed a small bug with the way paths were handled when the pattern used {alts}: if some part of the on-disk path that came before the {alt} included meta characters (say, a directory name that included the character ?), these meta characters were not escaped when they were passed back through the globbing routines. This caused doublestar to interpret them as actual meta characters, rather than a fixed-string path as it should have. Nice find, @​toga4 !

What's Changed

New Contributors

Full Changelog: bmatcuk/doublestar@v4.9.1...v4.9.2

Commits
  • a9ad9e0 allow starting test manually
  • 9987c0c update docs
  • d3b2184 windows support for WithNoHidden; better tests
  • 5d6a6cd Merge branch 'lukasngl-feat/no-hidden'
  • e8319d2 run tests when a branch/tag is created
  • 614b331 run tests when a branch/tag is created
  • df2e03f feat: add WithNoHidden option to skip hidden files
  • 3dc8306 Merge branch 'toga4-fix-brace-exp-with-meta'
  • 4db19e2 fix tests
  • 4ef2b00 fix: escape meta characters in paths during brace expansion
  • 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/go-git/go-billy/v5 from 5.6.2 to 5.9.0

Release notes

Sourced from github.com/go-git/go-billy/v5's releases.

v5.9.0

What's Changed

Full Changelog: go-git/go-billy@v5.8.0...v5.9.0

v5.8.0

What's Changed

Full Changelog: go-git/go-billy@v5.7.0...v5.8.0

v5.7.0

What's Changed

Full Changelog: go-git/go-billy@v5.6.2...v5.7.0

Commits
  • 237e529 Merge pull request #206 from pjbgf/v5-improvements
  • 04edb39 build: Add go-git integration test
  • d8efefd osfs: preserve empty ChrootOS base
  • 07f2a0b Merge pull request #205 from pjbgf/v5-improvements
  • 25207c8 build: Bump Go versions in workflows
  • 2fda229 osfs: ChrootOS eval baseDir on creation
  • 427b27f Merge pull request #203 from pjbgf/v5-improvements
  • 7d5a23e chroot: Reject symlink loops
  • 2c2287a util: avoid following symlinks in RemoveAll fallback
  • cbd88e9 Fix mount path handling
  • Additional commits viewable in compare view

Updates github.com/go-git/go-git/v5 from 5.16.4 to 5.19.0

Release notes

Sourced from github.com/go-git/go-git/v5's releases.

v5.19.0

What's Changed

Full Changelog: go-git/go-git@v5.18.0...v5.19.0

v5.18.0

What's Changed

Full Changelog: go-git/go-git@v5.17.2...v5.18.0

v5.17.2

What's Changed

⚠️ This release fixes a bug (go-git/go-git#1942) that blocked some users from upgrading to v5.17.1. Thanks @​pskrbasu for reporting it. 🙇

Full Changelog: go-git/go-git@v5.17.1...v5.17.2

v5.17.1

What's Changed

Full Changelog: go-git/go-git@v5.17.0...v5.17.1

v5.17.0

What's Changed

Full Changelog: go-git/go-git@v5.16.5...v5.17.0

v5.16.5

What's Changed

... (truncated)

Commits
  • bc930f4 Merge pull request #2065 from go-git/commit-v5
  • d315264 plumbing: object, Reset object before decode
  • 6e1d348 plumbing: object, Align Tree handling with upstream
  • e134ba3 tests: Skip double checks in Git v2.11
  • 1971422 tests: Add git conformance tests for signing verification
  • a387aa8 plumbing: object, Add ErrMalformedTag
  • f415670 plumbing: object, Decode Tag headers via a state machine
  • 5b0cd38 plumbing: object, Reject multi-signature commits at Verify
  • fe8ed62 plumbing: object, Align Tag.EncodeWithoutSignature with Commit
  • 98e337d plumbing: object, Add support for Tag.SignatureSHA256
  • Additional commits viewable in compare view

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-version from 1.7.0 to 1.9.0

Release notes

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

v1.9.0

What's Changed

Enhancements

Internal

New Contributors

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

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.9.0 (Mar 30, 2026)

ENHANCEMENTS:

Support parsing versions with custom prefixes via opt-in option in hashicorp/go-version#79

INTERNAL:

1.8.0 (Nov 28, 2025)

ENHANCEMENTS:

INTERNAL:

Commits
  • b80b1e6 Update CHANGELOG for version 1.9.0 (#187)
  • e93736f Bump the github-actions-backward-compatible group across 1 directory with 2 u...
  • c009de0 Bump actions/upload-artifact from 6.0.0 to 7.0.0 in the github-actions-breaki...
  • 0474357 Update GitHub Actions to trigger on pull requests and update go version (#185)
  • b4ab5fc Support parsing versions with custom prefixes via opt-in option (#79)
  • 25c683b Merge pull request #182 from hashicorp/dependabot/github_actions/github-actio...
  • 4f2bcd8 Bump the github-actions-backward-compatible group with 3 updates
  • acb8b18 Merge pull request #180 from hashicorp/dependabot/github_actions/github-actio...
  • 0394c4f Merge pull request #179 from hashicorp/dependabot/github_actions/github-actio...
  • b2fbaa7 Bump the github-actions-backward-compatible group across 1 directory with 2 u...
  • Additional commits viewable in compare view

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

Release notes

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

v1.53.0

Announcing the latest release of lo with lots of good gifts! 🎁

🌊 First, a big thanks to @​d-enk for making lots of performance improvements in the recent weeks.

🧪 Second, this release introduces a new simd experimental package. If you run on an amd64 architecture and a recent CPU, you can perform very fast operations thanks to SIMD CPU instructions. -> Documentation: https://lo.samber.dev/docs/experimental/simd

💥 Third, this version adds *Err variants of many lo helpers (like MapErr, FlatMapErr, ReduceErr, etc.) whose callbacks can return an error and short-circuit execution when one occurs.

[!NOTE] The simd sub-package is considered not stable. We might break the initial API based on developers' feedback in the coming months.


Features & improvements

Deprecation

Performance improvements

... (truncated)

Commits

Updates github.com/speakeasy-api/openapi from 1.20.0 to 1.23.0

Release notes

Sourced from github.com/speakeasy-api/openapi's releases.

v1.23.0

What's Changed

Full Changelog: speakeasy-api/openapi@v1.22.0...v1.23.0

OpenAPI CLI v1.23.0

This release includes binaries for Linux, macOS, and Windows on both x86_64 and ARM64 architectures.

Installation

Download the appropriate binary for your platform from the assets below, extract it, and add it to your PATH.

Changes

Changelog

Features

  • e089c6006b4e6e342887a4384fa6d39a998eba5e feat(oq): rename edge fields, fix security scheme type, add duplicates stage (#189)

Bug fixes

  • 34df23fa74613ddc421d24a6b9f5f437e8fb3394 fix(deps): bump the go-minor-patch group across 2 directories with 2 updates (#187)
  • f5ae225c4a5487fb8a8ad340448e73d831153617 fix: improve interactive lint fixer controls and exit behavior (#196)
  • 7a9aee7c092c2f0b58d79c9a2669010671ceb24d fix: prevent panic on invalid paths entries during index build (#197)

Others

  • b9e62ce2b6cfb626cf2351e192296991b0ce123c chore(deps): bump jsonschema/oas3/tests/testsuite from 06481b1 to e819f32 (#195)
  • c1f4dc1e9193eab32e5bec4d0ef1bf1471385bbd chore(snip): clarify help text to describe both remove and filter modes (#192)
  • b03d5970ac7b3022a586c4f8ab097702f569f564 ci(deps): bump the github-actions group across 1 directory with 2 updates (#194)

Full Changelog: speakeasy-api/openapi@v1.22.0...v1.23.0

Released by GoReleaser.

v1.22.0

OpenAPI CLI v1.22.0

This release includes binaries for Linux, macOS, and Windows on both x86_64 and ARM64 architectures.

Installation

... (truncated)

Commits
  • 32d0beb chore: update submodule dependencies to latest main (#190)
  • 7a9aee7 fix: prevent panic on invalid paths entries during index build (#197)
  • f5ae225 fix: improve interactive lint fixer controls and exit behavior (#196)
  • b03d597 ci(deps): bump the github-actions group across 1 directory with 2 updates (#194)
  • 34df23f fix(deps): bump the go-minor-patch group across 2 directories with 2 updates ...
  • b9e62ce chore(deps): bump jsonschema/oas3/tests/testsuite from 06481b1 to e819f32...
  • c1f4dc1 chore(snip): clarify help text to describe both remove and filter modes (#192)
  • e089c60 feat(oq): rename edge fields, fix security scheme type, add duplicates stage ...
  • ff71365 chore: update submodule dependencies to latest main (#188)
  • 511fc1a feat(oq): redesign query language syntax and traversal model (#184)
  • Additional commits viewable in compare view

Updates github.com/speakeasy-api/speakeasy-agent-mode-content from 0.2.0 to 0.2.5

Release notes

Sourced from github.com/speakeasy-api/speakeasy-agent-mode-content's releases.

v0.2.5

Changelog

  • 3c78c8b63ab207bb74ec5d70886fc094bf265ebc Add CLI (cli-go) as a supported Speakeasy generation target
  • 20c5982315f6e4504b7cafa3bf2b2bea9cbf2390 Merge pull request #7 from speakeasy-api/claude/slack-add-cli-support-nYqw8
  • 5eb46c2abb962d0bb1446788d6f4d31bec53c169 chore(release): v0.2.5 [skip ci]
  • 701ef3999ec7064cf29287c7e9e1e846adc6d4e0 fix: correct inaccuracies in CLI generation docs
  • 263f17dc4e0d7669c1d07154c03bfa373a55eec3 fix: remove "Go" prefix from CLI target references
  • 6dda0b76fe6d114472c42d6f65139ee8d954c17e refactor: focus CLI docs on user-facing features, remove internals

v0.2.4

Changelog

  • 320afb9f2757841e1a67ab110e4aa99bf6377b87 chore(release): v0.2.4 [skip ci]

v0.2.3

Changelog

  • b49f6fdb9977cd3443ddedb790edf68fb335168b Merge pull request #4 from speakeasy-api/chore/terraform-testing
  • aea6f70e83f1aa13ae4cd7704e870b95efc85077 Merge pull request #6 from speakeasy-api/claude/slack-update-agent-context-docs-UKFjW
  • 22324569fcf2e98ba579f2efa80171fc8961329c chore(release): v0.2.3 [skip ci]
  • 21def9686355f2aaec5ad775d002b9d34e30f5ab chore: document a gotcha in terraform testing

v0.2.2

Changelog

  • dac52a2ba501519c9cc4d578b830ba0dc81a9988 Add complete x-speakeasy-mcp extension reference with behavior hints (#5)
  • 057b345c812c2ab657022b29d1367fec6362ade1 chore(release): v0.2.2 [skip ci]

v0.2.1

Changelog

  • 4ffe48f664e1cdfdb3378845c92862a326084628 chore(release): v0.2.1 [skip ci]
  • ac590d97b644f02bfd29aad335fa105bee9fb50f chore: iterate based on feedback building terraform providers
Changelog

Sourced from github.com/speakeasy-api/speakeasy-agent-mode-content's changelog.

0.2.5 (2026-03-12)

Bug Fixes

  • correct inaccuracies in CLI generation docs (701ef39)
  • remove "Go" prefix from CLI target references (263f17d)

0.2.4 (2026-03-11)

0.2.3 (2026-03-11)

0.2.2 (2026-02-06)

0.2.1 (2026-02-05)

Co...

Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels May 13, 2026
…with 19 updates

Bumps the gomod-minor-and-patch group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/bmatcuk/doublestar/v4](https://github.com/bmatcuk/doublestar) | `4.9.1` | `4.10.0` |
| [github.com/charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea) | `1.3.5` | `1.3.10` |
| [github.com/go-git/go-billy/v5](https://github.com/go-git/go-billy) | `5.6.2` | `5.9.0` |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.16.4` | `5.19.0` |
| [github.com/gofrs/flock](https://github.com/gofrs/flock) | `0.12.1` | `0.13.0` |
| [github.com/hashicorp/go-version](https://github.com/hashicorp/go-version) | `1.7.0` | `1.9.0` |
| [github.com/samber/lo](https://github.com/samber/lo) | `1.52.0` | `1.53.0` |
| [github.com/speakeasy-api/openapi](https://github.com/speakeasy-api/openapi) | `1.20.0` | `1.23.0` |
| [github.com/speakeasy-api/speakeasy-agent-mode-content](https://github.com/speakeasy-api/speakeasy-agent-mode-content) | `0.2.0` | `0.2.5` |
| [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.1` | `1.28.0` |
| goa.design/goa/v3 | `3.24.1` | `3.26.0` |
| [oras.land/oras-go/v2](https://github.com/oras-project/oras-go) | `2.5.0` | `2.6.0` |



Updates `github.com/bmatcuk/doublestar/v4` from 4.9.1 to 4.10.0
- [Release notes](https://github.com/bmatcuk/doublestar/releases)
- [Commits](bmatcuk/doublestar@v4.9.1...v4.10.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/go-git/go-billy/v5` from 5.6.2 to 5.9.0
- [Release notes](https://github.com/go-git/go-billy/releases)
- [Commits](go-git/go-billy@v5.6.2...v5.9.0)

Updates `github.com/go-git/go-git/v5` from 5.16.4 to 5.19.0
- [Release notes](https://github.com/go-git/go-git/releases)
- [Changelog](https://github.com/go-git/go-git/blob/main/HISTORY.md)
- [Commits](go-git/go-git@v5.16.4...v5.19.0)

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-version` from 1.7.0 to 1.9.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.9.0)

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

Updates `github.com/speakeasy-api/openapi` from 1.20.0 to 1.23.0
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.20.0...v1.23.0)

Updates `github.com/speakeasy-api/speakeasy-agent-mode-content` from 0.2.0 to 0.2.5
- [Release notes](https://github.com/speakeasy-api/speakeasy-agent-mode-content/releases)
- [Changelog](https://github.com/speakeasy-api/speakeasy-agent-mode-content/blob/main/CHANGELOG.md)
- [Commits](https://github.com/speakeasy-api/speakeasy-agent-mode-content/compare/v0.2.0...v0.2.5)

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.1 to 1.28.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.27.1...v1.28.0)

Updates `goa.design/goa/v3` from 3.24.1 to 3.26.0

Updates `golang.org/x/oauth2` from 0.33.0 to 0.34.0
- [Commits](golang/oauth2@v0.33.0...v0.34.0)

Updates `golang.org/x/term` from 0.39.0 to 0.42.0
- [Commits](golang/term@v0.39.0...v0.42.0)

Updates `golang.org/x/text` from 0.34.0 to 0.36.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.34.0...v0.36.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/bmatcuk/doublestar/v4
  dependency-version: 4.10.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/go-git/go-billy/v5
  dependency-version: 5.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/go-git/go-git/v5
  dependency-version: 5.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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-version
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/samber/lo
  dependency-version: 1.53.0
  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.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/speakeasy-agent-mode-content
  dependency-version: 0.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: goa.design/goa/v3
  dependency-version: 3.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: golang.org/x/oauth2
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: golang.org/x/term
  dependency-version: 0.42.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.36.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-5ee527e24a branch from ec623ec to b4ca395 Compare May 14, 2026 13:55
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