Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump the gomod-minor-and-patch group across 1 directory with 17 updates #1343

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 19, 2025

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

Package From To
github.com/charmbracelet/bubbletea 1.1.1 1.3.4
github.com/charmbracelet/glamour 0.7.0 0.9.1
github.com/charmbracelet/huh 0.5.1 0.6.0
github.com/getkin/kin-openapi 0.128.0 0.131.0
github.com/go-git/go-git/v5 5.12.0 5.14.0
github.com/inkeep/ai-api-go 0.3.1 0.9.8
github.com/pb33f/openapi-changes 0.0.61 0.0.76
github.com/samber/lo 1.47.0 1.49.1
github.com/sethvargo/go-githubactions 1.1.0 1.3.0
github.com/speakeasy-api/sdk-gen-config 1.30.11 1.30.12
github.com/speakeasy-api/speakeasy-client-sdk-go/v3 3.25.1 3.26.0
github.com/spf13/viper 1.19.0 1.20.0

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

Release notes

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

v1.3.4

This release fixes an issue on Windows where the mouse is always enabled even if it wasn't requested. Now, using mouse options such as tea.WithAllMouseMotion() and commands such as tea.EnableMouseAllMotion and tea.DisableMouse turns the mouse on/off as expected.

Changelog

New Features

  • e817654e03769c14bdc09f9032724dfc53aa936f: feat(ci): move from goveralls to codecov (#1332) (@​aymanbagabas)

Bug fixes

  • bf1216dfaf642b73b639262ab91a7e7c86095d34: fix: windows: enable mouse mode on demand (#1340) (@​aymanbagabas)

Other work

  • 00e3ef47acdd1b39b3aa3c8260910f5fd57867bb: ci: sync dependabot config (#1328) (@​charmcli)
  • 4a30f3fd2a2c3ff8d13572d9aceb3007a9940006: ci: sync dependabot config (#1329) (@​charmcli)

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

v1.3.3

This release restore the program options that were deprecated in the previous releases.

Changelog

Full Changelog: charmbracelet/bubbletea@v1.3.2...v1.3.3


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

v1.3.2

Fix canceling terminal input reads on Windows.

Changelog

Bug fixes

  • b0186ada899e2c5f270b753f577be2c89ed1836f: fix: windows: handle cancel io error (@​aymanbagabas)

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

v1.3.1

This release introduces some important bug fixes when it comes to cursor movements while rendering, and properly handle Windows AltGr key on non-English keyboards.

Changelog

... (truncated)

Commits
  • bf1216d fix: windows: enable mouse mode on demand (#1340)
  • e817654 feat(ci): move from goveralls to codecov (#1332)
  • 4a30f3f ci: sync dependabot config (#1329)
  • 00e3ef4 ci: sync dependabot config (#1328)
  • cb6f840 chore: revert "chore: deprecate some StartupOptions in favor of Cmds (#1307)"
  • ee7cf45 chore: revert "Remove irrelevant option comments"
  • b0186ad fix: windows: handle cancel io error
  • 771a101 fix: renderer: use newline instead of cud1 to move cursor down (#1323)
  • cebad5b chore(examples): update go.mod and go.sum
  • 439398b Remove irrelevant option comments
  • Additional commits viewable in compare view

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

Release notes

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

v0.9.1

Some users were reporting occasional checksum miss matches when building using Glamour v0.9.0. This release provides a new tag to hopefully fix this.

Changelog

Other work


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

v0.9.0

Better Syntax Highlighting, Better Tables

It's totally time for a Glamour release right? This release features a nice lil' contribution from the @​github CLI team and pulls in some big table improvements from Lip Gloss upstream. Let's go!

Specifying Chroma Styles

Thanks to valiant efforts of @​andyfeller and @​williammartin at @​github, you can now use glamour.WithChromaFormatter to specify an exact Chroma style to use, independent of the higher level style.

myHotOps := glamour.WithOptions(
    glamour.WithChromaFormatter("terminal16"),
    glamour.WithStandardStyle("dark"),
)

As a bonus, you can also use glamour.WithOptions as a meta layer for grouping options.

Better Tables

This release also reaps the benefits from the table rendering overhaul in Lip Gloss v1.1.0! Glamour will now be much smarter when it comes to deciding column widths, and the content will not wrap appropriately instead of just being cut when it won't fit.

Changelog

New Features

  • 4c040b7fd5c023154de93d5c0f789111ea06c82c: feat: add term renderer option for chroma formatter (#395) (@​williammartin)
  • 39de44871fad9d547af5975ae220f2034642304a: feat(ci): use goreleaser (#348) (@​aymanbagabas)

Bug fixes

  • f43b1ad9ef09b10a93837e07ae2c18b66bceac5c: fix(tables): pin lipgloss to v1.1.0 for table improvements; update tests (#394) (@​andreynering)
  • bdc4ec5217e146f5a57be8a3e0a14a3ddee3f749: fix(table): fix rendering table in ascii-only mode (#393) (@​andreynering)
  • 9cedacac492db45121a984505f3f4d87277dcde3: fix: render right margin for block stack elements (#334) (@​jahvon)

Documentation updates

  • f29dc10685689be9846671030e07a17f97bafb16: docs(example): update example to demonstrate color downsampling (@​meowgorithm)

... (truncated)

Commits
  • dddb9a7 ci: sync golangci-lint config (#403)
  • f43b1ad test(tables): pin lipgloss to v1.1.0 and update tests (#394)
  • d1d5125 chore(deps): bump golang.org/x/net from 0.33.0 to 0.36.0 in /examples (#400)
  • 3b686ba chore(deps): bump golang.org/x/net from 0.33.0 to 0.36.0 (#399)
  • 4c040b7 feat: add term renderer option for chroma formatter (#395)
  • 3dc6c5b chore(deps): bump golang.org/x/text from 0.22.0 to 0.23.0 (#397)
  • 5ad6fac chore(deps): bump golang.org/x/term from 0.29.0 to 0.30.0 (#396)
  • bdc4ec5 fix(table): fix rendering table in ascii-only mode (#393)
  • b0776ab chore(deps): bump github.com/yuin/goldmark-emoji from 1.0.4 to 1.0.5 (#391)
  • ddc2451 chore(deps): bump golang.org/x/text from 0.21.0 to 0.22.0 (#392)
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/huh from 0.5.1 to 0.6.0

Release notes

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

v0.6.0

Just focus

This release features automatic window focus events support for the Input and Text components.

Note that if you're using Huh in a larger Bubble Tea program you’ll need WithReportFocus to enable focus events.

p := tea.NewProgram(model{}, tea.WithReportFocus())

Happy focusing!

Changelog

New!

Full Changelog: charmbracelet/huh@v0.5.3...v0.6.0

v0.5.3

Crushin’ bugs

This release fixes a buncha bugs in Huh and Gum alike. Gum users, stay tuned for an update later today.

What's Changed

Fixed

Other Stuff

New Contributors

... (truncated)

Commits

Updates github.com/charmbracelet/lipgloss from 0.13.0 to 1.1.0

Release notes

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

v1.1.0

Tables, Improved

In this release, the inimitable @​andreynering and @​bashbunni majorly overhauled on the table sizing and content wrapping algorithms. Tables will now be much smarter on deciding the ideal width of each column, and contents now wraps by default inside cells.

// Table content wraps by default.
t := table.New().
    Headers(someHeaders...).
    Rows(someRows...).
    Width(80)
fmt.Println(t)

// Actually, let's not wrap the content.
t := table.New().
    Headers(someHeaders...).
    Rows(someRows...).
    Width(80).
    Wrap(false)
fmt.Println(t)

New Border Styles

Also, we added two new border styles that you can use to generate tables in Markdown and ASCII styles.

Markdown Tables

To render tables correctly for Markdown you'll want to use lipgloss.MarkdownBorder and disable the top and bottom borders.

t := table.New().
    Headers(someHeaders...).
    Rows(someRows).
    Border(lipgloss.MarkdownBorder()).
    BorderTop(false).
    BorderBottom(false)
fmt.Println(t)

... (truncated)

Commits
  • f0e4547 chore: fix lint
  • fb0d757 chore(taskfile): delete lint:all and lint:soft tasks
  • 1209cf0 ci: sync golangci-lint config (#490)
  • c454a0a feat(tables): add markdown and ascii border style for tables (#480)
  • 341996d chore: update charmbracelet/x/cellbuf
  • 1f1209e feat(table): use cellbuf to preserve styles for wrapped content
  • 2aa2eb0 test(table): test wrapping cell styles
  • 9500f10 fix(table): ensure we're passing the right row index to styleFunc
  • 7b191c5 fix(test): make table wrapping tests use golden files
  • 9cfb7dd test(table): check truncation logic for overflow and nowrap
  • Additional commits viewable in compare view

Updates github.com/getkin/kin-openapi from 0.128.0 to 0.131.0

Release notes

Sourced from github.com/getkin/kin-openapi's releases.

v0.131.0

What's Changed

Full Changelog: getkin/kin-openapi@v0.130.0...v0.131.0

v0.130.0

What's Changed

New Contributors

Full Changelog: getkin/kin-openapi@v0.129.0...v0.130.0

v0.129.0

What's Changed

New Contributors

... (truncated)

Commits
  • 67f0b23 openapi3filter: de-register ZipFileBodyDecoder and make a few decoders public...
  • 6da871e openapi3filter: apply default values of an array in a query param with explod...
  • a34baf0 openapi3: delete origin keys only when IncludeOrigin=true (#1055)
  • 2d3e67a use origin to minimize collisions (#1057)
  • e3d68dc Remove redundant ExcludeResponseBody check in ValidateResponse (#1056)
  • 050a930 openapi3gen: Fix issue with separate component generated for time.Time (#1052)
  • 72fb819 feat(openapi3gen): Customize json.RawMessage (#1050)
  • cea0a13 openapi2conv: convert references in nested additionalProperties schemas (#1047)
  • f476f7b openapi3filter: validation of x-www-form-urlencoded with arbitrary nested a...
  • 325cecc openapi3filter: simplify ValidateRequest implementation (#1041)
  • Additional commits viewable in compare view

Updates github.com/go-git/go-git/v5 from 5.12.0 to 5.14.0

Release notes

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

v5.14.0

What's Changed

⚠️ Note that this version requires Go 1.23, due to the bump to golang.org/x/[email protected] which mitigates the CVE above. User's that can't bump to Go 1.23 will need to remain on the previous v5.13.x release.

Full Changelog: go-git/go-git@v5.13.2...v5.14.0

v5.13.2

What's Changed

Full Changelog: go-git/go-git@v5.13.1...v5.13.2

v5.13.1

What's Changed

Full Changelog: go-git/go-git@v5.13.0...v5.13.1

v5.13.0

What's Changed

... (truncated)

Commits
  • 863c621 Merge pull request #1436 from pjbgf/v5-bumps
  • 2e69e81 build: Bump dependencies
  • b2c1ec9 build: Bump Go versions
  • 2c68247 Merge pull request #1383 from go-git/dependabot/go_modules/github.com/ProtonM...
  • d462c2e Merge pull request #1359 from BeChris/issue1150-v5
  • 32ac23a Merge pull request #1392 from go-git/dependabot/go_modules/github.com/pjbgf/s...
  • 93e635a build: bump github.com/pjbgf/sha1cd from 0.3.0 to 0.3.2
  • b2bb975 git: worktree_status, took into account code review remarks
  • 518ac88 git: worktree_status, fix adding dot slash files to working tree (backported ...
  • 21b3150 build: bump github.com/ProtonMail/go-crypto from 1.1.4 to 1.1.5
  • Additional commits viewable in compare view

Updates github.com/inkeep/ai-api-go from 0.3.1 to 0.9.8

Release notes

Sourced from github.com/inkeep/ai-api-go's releases.

go - v0.9.8 - 2024-09-25 00:03:37

Generated by Speakeasy CLI

2024-09-25 00:03:37

Changes

Based on:

Generated

  • [go v0.9.8] .

Releases

go - v0.9.7 - 2024-09-20 00:04:59

Generated by Speakeasy CLI

2024-09-20 00:03:46

Changes

Based on:

Generated

  • [go v0.9.7] .

Releases

go - v0.9.6 - 2024-09-13 00:05:08

Generated by Speakeasy CLI

2024-09-13 00:03:49

Changes

Based on:

Generated

  • [go v0.9.6] .

Releases

go - v0.9.5 - 2024-09-07 00:04:26

Generated by Speakeasy CLI

2024-09-07 00:03:30

Changes

Based on:

Generated

  • [go v0.9.5] .

Releases

... (truncated)

Changelog

Sourced from github.com/inkeep/ai-api-go's changelog.

2024-02-20 22:37:30

Changes

Based on:

Generated

  • [go v0.2.0] .

Releases

2024-02-21 00:03:17

Changes

Based on:

Generated

  • [go v0.2.0] .

Releases

2024-02-22 00:03:14

Changes

Based on:

Generated

  • [go v0.2.0] .

Releases

2024-02-25 00:03:33

Changes

Based on:

Generated

  • [go v0.2.1] .

Releases

2024-02-27 00:03:21

Changes

Based on:

Generated

  • [go v0.2.2] .

Releases

... (truncated)

Commits
  • c4fef83 ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.402.12
  • 41a87e6 Merge pull request #1 from inkeep/update-speakeasy-workflow
  • f9d7dd1 chore: remove test registry
  • b2f1a84 chore: update to Speakeasy v15 workflow
  • 6426680 chore: update dependencies
  • 577ad3d ci: regenerated with OpenAPI Doc 0.1.0, Speakeasy CLI 1.400.0
  • c285fae chore: update dependencies
  • 51e512f ci: regenerated with OpenAPI Doc 0.1.0, Speakeasy CLI 1.396.6
  • 6d64281 chore: update dependencies
  • 5d81883 ci: regenerated with OpenAPI Doc 0.1.0, Speakeasy CLI 1.392.1
  • Additional commits viewable in compare view

Updates github.com/pb33f/openapi-changes from 0.0.61 to 0.0.76

Release notes

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

v0.0.76

Changelog

  • f520f2e9120c72973df21a0ac6a502ed8be08431 Reorder args

v0.0.75

Changelog

  • a894170f4b3675fd731036fa9bbd5224401e2e5e Addressed #186

v0.0.74

Changelog

  • 9492f7a17fcb6f5921aadcaff84db52107ea5fe2 Bumped build to go 1.24
  • 831b4c31f5109ebac564ebe7f7b0808061d72ec9 Bumped deps to fix race condition issue.

v0.0.73

Changelog

  • c87a962e2b531683b4c6c65f0102257da24e5ae9 bumped deps to fix locking issue

v0.0.72

Changelog

  • acf0f54c72968c151233e31d0fd4dea2aba1cb7a Ensure git is always given an absolute repo path

v0.0.71

Changelog

  • 94e6a07e3613c7426c67672d81c6b75a5d26b1c3 Address #175
  • baae3ad78007ce11b9be254d00802b2aaf8dc58f Address #179
  • 00bb20ab70728b6d09f67e6686478fa346895bbc Addressed #148
  • 4121c39e5e780dfc768c3d45222f84a23159e584 Addressed issue #147
  • a07a467b5b121939898895e01c1252012bc19c2a Addresses issue #145
  • 99fa3e9374d449c1d999229c17459a085c20a7db Fixed #169
  • 92ec19b5d7cc53ff3ae9dcaddc162c2cd599f83b addressed issue #146
  • c0606482362e4270bd97f2816abeae2dddb8b225 bumped deps
  • 1f80532c462c67ae4a7f4b627632a181cfd35378 fixed #170
  • 5d4f7a2d5d8aba27b867ddb349aa266fa4463d68 fixed issue #138

v0.0.70

Changelog

  • 9c80bccef20b23a9a2dd182ca82b1605272b4698 addressed issue #93
  • eb8cdcbc44cd0931f802823cda1a6568d9f4eb74 bumped deps
  • 6b43ac87f9561222d4654c74cef37d42ef1f7fd4 increase canvas size.

v0.0.69

Changelog

  • 14fddcbab122acea3d5863c51fa0522725d0642e At limit commit read file content at previous commit
  • 3185f53dba03cba2c03aaeec5c749a33be751ffe Compile new binary
  • 8d5c8cda665023fa1e0139b6d84a5d806fe18e60 Fail gracefully when readFile fails
  • e103ec002c5b23503540dc98588f2d2fd4bc8c59 Introduce readFile function
  • 32a921a9eecf6eedfe56128c59187beeed11cac9 Resolve relative paths and pass resolved paths
  • ea09cc325897673dd242b80da49b34da77a8fe50 testing

v0.0.68

... (truncated)

Commits

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

Release notes

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

v1.49.1

What's Changed

Full Changelog: samber/lo@v1.49.0...v1.49.1

v1.49.0

What's Changed

New Contributors

Full Changelog: samber/lo@v1.48.0...v1.49.0

v1.48.0

What's Changed

Feature

Fix

Refactor

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 19, 2025
@dependabot dependabot bot force-pushed the dependabot/go_modules/gomod-minor-and-patch-72892c361c branch 6 times, most recently from 3441817 to d59ce16 Compare March 27, 2025 15:44
@dependabot dependabot bot force-pushed the dependabot/go_modules/gomod-minor-and-patch-72892c361c branch 3 times, most recently from 0b9fb6d to 247aba4 Compare March 31, 2025 01:47
…7 updates

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

| Package | From | To |
| --- | --- | --- |
| [github.com/charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea) | `1.1.1` | `1.3.4` |
| [github.com/charmbracelet/glamour](https://github.com/charmbracelet/glamour) | `0.7.0` | `0.9.1` |
| [github.com/charmbracelet/huh](https://github.com/charmbracelet/huh) | `0.5.1` | `0.6.0` |
| [github.com/getkin/kin-openapi](https://github.com/getkin/kin-openapi) | `0.128.0` | `0.131.0` |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.12.0` | `5.14.0` |
| [github.com/inkeep/ai-api-go](https://github.com/inkeep/ai-api-go) | `0.3.1` | `0.9.8` |
| [github.com/pb33f/openapi-changes](https://github.com/pb33f/openapi-changes) | `0.0.61` | `0.0.76` |
| [github.com/samber/lo](https://github.com/samber/lo) | `1.47.0` | `1.49.1` |
| [github.com/sethvargo/go-githubactions](https://github.com/sethvargo/go-githubactions) | `1.1.0` | `1.3.0` |
| [github.com/speakeasy-api/sdk-gen-config](https://github.com/speakeasy-api/sdk-gen-config) | `1.30.11` | `1.30.12` |
| [github.com/speakeasy-api/speakeasy-client-sdk-go/v3](https://github.com/speakeasy-api/speakeasy-client-sdk-go) | `3.25.1` | `3.26.0` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.19.0` | `1.20.0` |



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

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

Updates `github.com/charmbracelet/huh` from 0.5.1 to 0.6.0
- [Release notes](https://github.com/charmbracelet/huh/releases)
- [Commits](charmbracelet/huh@v0.5.1...v0.6.0)

Updates `github.com/charmbracelet/lipgloss` from 0.13.0 to 1.1.0
- [Release notes](https://github.com/charmbracelet/lipgloss/releases)
- [Changelog](https://github.com/charmbracelet/lipgloss/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/lipgloss@v0.13.0...v1.1.0)

Updates `github.com/getkin/kin-openapi` from 0.128.0 to 0.131.0
- [Release notes](https://github.com/getkin/kin-openapi/releases)
- [Commits](getkin/kin-openapi@v0.128.0...v0.131.0)

Updates `github.com/go-git/go-git/v5` from 5.12.0 to 5.14.0
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](go-git/go-git@v5.12.0...v5.14.0)

Updates `github.com/inkeep/ai-api-go` from 0.3.1 to 0.9.8
- [Release notes](https://github.com/inkeep/ai-api-go/releases)
- [Changelog](https://github.com/inkeep/ai-api-go/blob/main/RELEASES.md)
- [Commits](inkeep/ai-api-go@v0.3.1...v0.9.8)

Updates `github.com/pb33f/openapi-changes` from 0.0.61 to 0.0.76
- [Release notes](https://github.com/pb33f/openapi-changes/releases)
- [Changelog](https://github.com/pb33f/openapi-changes/blob/main/openapi-changes.go)
- [Commits](pb33f/openapi-changes@v0.0.61...v0.0.76)

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

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

Updates `github.com/speakeasy-api/sdk-gen-config` from 1.30.11 to 1.30.12
- [Release notes](https://github.com/speakeasy-api/sdk-gen-config/releases)
- [Commits](speakeasy-api/sdk-gen-config@v1.30.11...v1.30.12)

Updates `github.com/speakeasy-api/speakeasy-client-sdk-go/v3` from 3.25.1 to 3.26.0
- [Release notes](https://github.com/speakeasy-api/speakeasy-client-sdk-go/releases)
- [Changelog](https://github.com/speakeasy-api/speakeasy-client-sdk-go/blob/main/RELEASES.md)
- [Commits](speakeasy-api/speakeasy-client-sdk-go@v3.25.1...v3.26.0)

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

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 `github.com/spf13/viper` from 1.19.0 to 1.20.0
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.19.0...v1.20.0)

Updates `golang.org/x/sync` from 0.10.0 to 0.12.0
- [Commits](golang/sync@v0.10.0...v0.12.0)

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

---
updated-dependencies:
- dependency-name: github.com/charmbracelet/bubbletea
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/charmbracelet/glamour
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/charmbracelet/huh
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/charmbracelet/lipgloss
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/getkin/kin-openapi
  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-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/inkeep/ai-api-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/pb33f/openapi-changes
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/samber/lo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/sethvargo/go-githubactions
  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-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/speakeasy-client-sdk-go/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/spf13/pflag
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/spf13/viper
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: golang.org/x/term
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/gomod-minor-and-patch-72892c361c branch from 247aba4 to 7de4804 Compare March 31, 2025 12:57
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 1, 2025

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

@dependabot dependabot bot closed this Apr 1, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/gomod-minor-and-patch-72892c361c branch April 1, 2025 17:00
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