Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 3, 2025

Bumps the go-dependencies group with 15 updates:

Package From To
dario.cat/mergo 1.0.1 1.0.2
github.com/Masterminds/semver/v3 3.3.0 3.4.0
github.com/charmbracelet/x/ansi 0.10.1 0.10.2
github.com/charmbracelet/x/term 0.2.1 0.2.2
github.com/cpuguy83/go-md2man/v2 2.0.6 2.0.7
github.com/mattn/go-runewidth 0.0.16 0.0.17
github.com/muesli/mango 0.1.0 0.2.0
github.com/muesli/mango-cobra 1.2.0 1.3.0
github.com/muesli/mango-pflag 0.1.0 0.2.0
github.com/spf13/cast 1.7.0 1.10.0
github.com/spf13/pflag 1.0.9 1.0.10
github.com/stretchr/objx 0.5.2 0.5.3
golang.org/x/crypto 0.35.0 0.43.0
golang.org/x/sys 0.36.0 0.37.0
golang.org/x/text 0.24.0 0.30.0

Updates dario.cat/mergo from 1.0.1 to 1.0.2

Release notes

Sourced from dario.cat/mergo's releases.

v1.0.2

What's Changed

  • Drops gopkg.in/yaml.v3, only used for loading fixtures. Thanks @​trim21 for bringing to my attention (#262) that this library is no longer maintained.

Full Changelog: darccio/mergo@v1.0.1...v1.0.2

Commits
  • 7b33b2b refactor: migrate from YAML to JSON for test data and update related functions
  • 229a214 chore(.well-known): add funding manifest URLs file
  • 6be20c6 chore(SECURITY.md): update supported versions to reflect current versioning
  • 9007623 chore(README) : remove kubernetes from the list of users
  • 2b1eb9c Update FUNDING.yml
  • 2ceb994 Create FUNDING.json
  • See full diff in compare view

Updates github.com/Masterminds/semver/v3 from 3.3.0 to 3.4.0

Release notes

Sourced from github.com/Masterminds/semver/v3's releases.

v3.4.0

There are a few changes in this release to highlight:

  1. Constraints now has a property IncludePrerelease. When set to true the Check and Validate methods will include prereleases.
  2. When an AND group has one constraint with a prerelease but more than one constraint then prereleases will be included. For example, >1.0.0-beta.1 < 2. In the past this would not have included prereleases because each constraint needed to have a prerelease. Now, only one constraint needs to have a prerelease. This is considered a long standing bug fix. Note, this does not carry across OR groups. For example, >1.0.0-beta.1 < 2 || > 3. In this case, prereleases will not be included when evaluating against >3.
  3. NewVersion coercion with leading "0"'s is restored. This can be disabled by setting the package level property CoerceNewVersion to false.

What's Changed

New Contributors

Full Changelog: Masterminds/semver@v3.3.1...v3.4.0

v3.3.1

What's Changed

Full Changelog: Masterminds/semver@v3.3.0...v3.3.1

Changelog

Sourced from github.com/Masterminds/semver/v3's changelog.

3.4.0 (2025-06-27)

Added

  • #268: Added property to Constraints to include prereleases for Check and Validate

Changed

  • #263: Updated Go testing for 1.24, 1.23, and 1.22
  • #269: Updated the error message handling for message case and wrapping errors
  • #266: Restore the ability to have leading 0's when parsing with NewVersion. Opt-out of this by setting CoerceNewVersion to false.

Fixed

  • #257: Fixed the CodeQL link (thanks @​dmitris)
  • #262: Restored detailed errors when failed to parse with NewVersion. Opt-out of this by setting DetailedNewVersionErrors to false for faster performance.
  • #267: Handle pre-releases for an "and" group if one constraint includes them

3.3.1 (2024-11-19)

Fixed

  • #253: Fix for allowing some version that were invalid
Commits
  • 61fc460 Merge pull request #270 from mattfarina/relnotes-3.4.0
  • 69a63e7 Update the release notes and readme for new version
  • dc05094 Merge pull request #269 from mattfarina/lowercase-error-strings
  • a2cd9c2 Updating the error message handling
  • 9760c47 Merge pull request #268 from mattfarina/include-prerelease
  • c374751 Add property to include prereleases
  • 057c901 Merge pull request #267 from mattfarina/fix-259
  • abab1c2 Handle pre-releases on all in an and group
  • ebda872 Merge pull request #266 from mattfarina/restore-calver
  • 4ed619e Restore the ability to have leading 0's with NewVersion
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/x/ansi from 0.10.1 to 0.10.2

Commits
  • 5698041 chore(ansi): rename progress bar functions and constants
  • 01b9b85 fix(conpty): expose default consts
  • fcbceea feat(conpty): expose underlying conpty file descriptors
  • 76218ba fix: typo
  • 3a818a5 fix(ansi): check pct bounds
  • 80cac83 feat(ansi): osc 9 progress support (#574)
  • 8219a56 chore(deps): bump github.com/mattn/go-runewidth (#573)
  • 38eef08 chore(deps): bump github.com/mattn/go-runewidth (#572)
  • 90aa3a4 chore(deps): bump github.com/mattn/go-runewidth (#571)
  • 4e099f4 chore(deps): bump github.com/mattn/go-runewidth in /vt in the all group (#570)
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/x/term from 0.2.1 to 0.2.2

Commits
  • d941777 feat(ansi): add cursor and mouse pointer shape sequences
  • 57c5431 chore(deps): update bubbletea to v0.27 (#161)
  • 2c0e84d chore(term): go mod tidy
  • 61a8baf feat(input): update kitty keyboard flag name
  • See full diff in compare view

Updates github.com/cpuguy83/go-md2man/v2 from 2.0.6 to 2.0.7

Release notes

Sourced from github.com/cpuguy83/go-md2man/v2's releases.

v2.0.7

What's Changed

Full Changelog: cpuguy83/go-md2man@v2.0.6...v2.0.7

Commits
  • 061b6c7 Merge pull request #141 from kolyshkin/fix-long-tables
  • dcb0114 Table rendering fix
  • 75548be Merge pull request #142 from kolyshkin/golangci-v2
  • 993ceeb .golangci.yml: add some more linters
  • 68539cc md2man: remove unused parameters
  • dfd185f Fix nolint directives
  • fc51eb3 golangci-lint: use v2
  • 50e20fb gha: switch to ubuntu-24.04, modern Go versions
  • d95447a md2man: rm unused nolint directive
  • 2d0f4c5 md2man: add package overview
  • Additional commits viewable in compare view

Updates github.com/mattn/go-runewidth from 0.0.16 to 0.0.17

Commits

Updates github.com/muesli/mango from 0.1.0 to 0.2.0

Release notes

Sourced from github.com/muesli/mango's releases.

v0.2.0

What's Changed

New Contributors

Full Changelog: muesli/mango@v0.1.0...v0.2.0

Commits
  • 5040723 feat: add support for examples
  • b18accb Bump actions/setup-go from 2 to 3
  • a9ec41d Bump actions/checkout from 2 to 3
  • 825b82e Bump golangci/golangci-lint-action from 2 to 3
  • a6bc448 Mention kong in the README description
  • 43dc8f3 Add mango-kong link to README
  • 6c328fc Move license badge
  • 589726b Update README badges
  • 77e2058 fix: formatting of short flags
  • 5c435e3 Add dependabot config
  • Additional commits viewable in compare view

Updates github.com/muesli/mango-cobra from 1.2.0 to 1.3.0

Release notes

Sourced from github.com/muesli/mango-cobra's releases.

v1.3.0

What's Changed

New Contributors

Full Changelog: muesli/mango-cobra@v1.2.0...v1.3.0

Commits
  • 6e85b2c chore(deps): bump github.com/spf13/cobra from 1.6.1 to 1.10.1
  • cf79b82 chore(deps): bump actions/setup-go from 4 to 6
  • 5d84810 chore(deps): bump actions/checkout from 3 to 5
  • 86d6d88 docs: update README badges
  • 4542804 chore: update golangci-lint configs & workflows
  • 6d28709 Bump actions/setup-go from 3 to 4
  • dccb79f Bump github.com/spf13/cobra from 1.6.0 to 1.6.1
  • 40f26de feat: add support for examples
  • 3a9d400 Bump github.com/spf13/cobra from 1.5.0 to 1.6.0
  • a24f8f0 Bump github.com/muesli/mango from 0.1.0 to 0.2.0
  • See full diff in compare view

Updates github.com/muesli/mango-pflag from 0.1.0 to 0.2.0

Release notes

Sourced from github.com/muesli/mango-pflag's releases.

v0.2.0

What's Changed

New Contributors

Full Changelog: muesli/mango-pflag@v0.1.0...v0.2.0

Commits
  • c698889 Bump github.com/spf13/pflag from 1.0.5 to 1.0.10
  • 1d7e54a Bump actions/setup-go from 4 to 6
  • 244ad3a Bump actions/checkout from 3 to 5
  • 5715955 docs: update README badges
  • 40a0d51 chore: update golangci-lint configs & workflows
  • 14577b2 Bump actions/setup-go from 3 to 4
  • e5f2bb5 Bump github.com/muesli/mango from 0.1.0 to 0.2.0
  • 34842cb Bump actions/setup-go from 2 to 3
  • 01f043a Bump actions/checkout from 2 to 3
  • 4b4572c Bump golangci/golangci-lint-action from 2 to 3
  • See full diff in compare view

Updates github.com/spf13/cast from 1.7.0 to 1.10.0

Release notes

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

v1.10.0

What's Changed

New Contributors

Full Changelog: spf13/cast@v1.9.2...v1.10.0

v1.9.2

What's Changed

Full Changelog: spf13/cast@v1.9.1...v1.9.2

v1.9.1

What's Changed

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

v1.9.0

Notable new features 🎉

  • Casting from type aliases is now supported for basic types
  • Added generic functions: To/ToE, Must, ToNumber/ToNumberE
  • Increased test coverage
  • Converting float numbers from string is now supported

[!WARNING] Since cast now supports converting float values from strings, a related edge case behaves differently:

In previous versions, attempting to convert an empty string to a float resulted in an error.

Starting with this version, the same operation no longer raises an error.

To maintain consistency with the rest of the library, an empty string now converts to the float value 0.0.

What's Changed

... (truncated)

Commits
  • fc73346 Merge pull request #283 from andig/patch-1
  • 6002cff Merge pull request #298 from spf13/dependabot/github_actions/actions/dependen...
  • c1c153d Merge pull request #300 from spf13/dependabot/github_actions/actions/setup-go...
  • 39beeac Merge pull request #301 from spf13/dependabot/github_actions/github/codeql-ac...
  • 365e80c build(deps): bump github/codeql-action from 3.29.10 to 3.30.1
  • 9f0f68b build(deps): bump actions/setup-go from 5.5.0 to 6.0.0
  • d45dead build(deps): bump actions/dependency-review-action from 4.7.2 to 4.7.3
  • 004f51d Merge pull request #293 from spf13/dependabot/github_actions/actions/checkout...
  • 6458e07 Merge pull request #295 from spf13/dependabot/github_actions/actions/dependen...
  • 970d9ea Merge pull request #296 from spf13/dependabot/github_actions/github/codeql-ac...
  • Additional commits viewable in compare view

Updates github.com/spf13/pflag from 1.0.9 to 1.0.10

Release notes

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

v1.0.10

What's Changed

New Contributors

Full Changelog: spf13/pflag@v1.0.9...v1.0.10

Commits
  • 0491e57 Merge pull request #448 from thaJeztah/fix_go_version
  • 72abab1 Merge pull request #447 from thaJeztah/fix_deprecation_comment
  • 7e4dfb1 Test on Go 1.12
  • 18a9d17 move Func, BoolFunc, tests as they require go1.21
  • c5b9e98 remove uses of errors.Is, which requires go1.13
  • 45a4873 fix deprecation comment for (FlagSet.)ParseErrorsWhitelist
  • See full diff in compare view

Updates github.com/stretchr/objx from 0.5.2 to 0.5.3

Release notes

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

v0.5.3

What's Changed

New Contributors

Full Changelog: stretchr/objx@v0.5.2...v0.5.3

Commits
  • b152998 Replace testify assertions with custom testing helpers (#159)
  • f248e2b Remove duplicate module cache from CI (#162)
  • 8175ed5 Extend test coverage to include go 1.25 (#161)
  • 3d14c8f Bump actions/setup-go from 5 to 6 (#158)
  • 15bffc6 Remove codeclimate integration (#160)
  • b94b78f Bump github.com/stretchr/testify from 1.11.0 to 1.11.1 (#157)
  • 0b52e9c Bump github.com/stretchr/testify from 1.10.0 to 1.11.0 (#156)
  • 07525db Bump actions/checkout from 4 to 5 (#155)
  • f3a7a99 Add syntax highlighting in README (#153)
  • 0c86e82 Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 (#152)
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.35.0 to 0.43.0

Commits
  • 627cb89 go.mod: update golang.org/x dependencies
  • dca4914 acme: fix autocert TestHTTPHandlerDefaultFallback
  • 1336e21 x509roots/fallback: update bundle
  • 2beaa59 ssh: add VerifiedPublicKeyCallback
  • 66c3d8c ssh: add support for FIPS mode
  • ddb4e80 ssh: remove custom contains, use slices.Contains
  • f4d47b0 ssh: return clearer error when signature algorithm is used as key format
  • 96dc232 x509roots/fallback/bundle: add bundle package to export root certs
  • 8c9ba31 all: freeze and deprecate more packages
  • 559e062 ssh/agent: return an error for unexpected message types
  • Additional commits viewable in compare view

Updates golang.org/x/sys from 0.36.0 to 0.37.0

Commits
  • 1edeebe unix: mkall.sh: fail if docker build failed
  • ecada54 unix: use slices.{Equal,Sort} in tests
  • 5e63aa5 windows: export O_FILE_FLAG_* to be used in os.OpenFile on windows
  • 033906b unix: add (*CPUSet).Fill helper to enable all CPUs
  • 6be6c58 windows: add FlushConsoleInputBuffer and GetNumberOfConsoleInputEvents
  • 32e2038 unix: use Go 1.21+ clear built-in
  • 137f2ed sys: add support for NetBSD getvfsstat
  • See full diff in compare view

Updates golang.org/x/text from 0.24.0 to 0.30.0

Commits
  • c6abd03 go.mod: update golang.org/x dependencies
  • 42f038d x/text: fix nil dereference in gotext extract
  • a42f0e2 all: use built-in max/min to simplify the code
  • e69f31b go.mod: update golang.org/x dependencies
  • 60c9786 all: upgrade go directive to at least 1.24.0 [generated]
  • 425d715 go.mod: update golang.org/x dependencies
  • b6d2645 go.mod: update golang.org/x dependencies
  • 8072180 go.mod: update golang.org/x dependencies
  • 6cacac1 go.mod: update tagx:ignore'd golang.org/x dependencies
  • 700cc20 go.mod: update golang.org/x dependencies
  • See full diff 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 go-dependencies group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [dario.cat/mergo](https://github.com/imdario/mergo) | `1.0.1` | `1.0.2` |
| [github.com/Masterminds/semver/v3](https://github.com/Masterminds/semver) | `3.3.0` | `3.4.0` |
| [github.com/charmbracelet/x/ansi](https://github.com/charmbracelet/x) | `0.10.1` | `0.10.2` |
| [github.com/charmbracelet/x/term](https://github.com/charmbracelet/x) | `0.2.1` | `0.2.2` |
| [github.com/cpuguy83/go-md2man/v2](https://github.com/cpuguy83/go-md2man) | `2.0.6` | `2.0.7` |
| [github.com/mattn/go-runewidth](https://github.com/mattn/go-runewidth) | `0.0.16` | `0.0.17` |
| [github.com/muesli/mango](https://github.com/muesli/mango) | `0.1.0` | `0.2.0` |
| [github.com/muesli/mango-cobra](https://github.com/muesli/mango-cobra) | `1.2.0` | `1.3.0` |
| [github.com/muesli/mango-pflag](https://github.com/muesli/mango-pflag) | `0.1.0` | `0.2.0` |
| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.7.0` | `1.10.0` |
| [github.com/spf13/pflag](https://github.com/spf13/pflag) | `1.0.9` | `1.0.10` |
| [github.com/stretchr/objx](https://github.com/stretchr/objx) | `0.5.2` | `0.5.3` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.35.0` | `0.43.0` |
| [golang.org/x/sys](https://github.com/golang/sys) | `0.36.0` | `0.37.0` |
| [golang.org/x/text](https://github.com/golang/text) | `0.24.0` | `0.30.0` |


Updates `dario.cat/mergo` from 1.0.1 to 1.0.2
- [Release notes](https://github.com/imdario/mergo/releases)
- [Commits](darccio/mergo@v1.0.1...v1.0.2)

Updates `github.com/Masterminds/semver/v3` from 3.3.0 to 3.4.0
- [Release notes](https://github.com/Masterminds/semver/releases)
- [Changelog](https://github.com/Masterminds/semver/blob/master/CHANGELOG.md)
- [Commits](Masterminds/semver@v3.3.0...v3.4.0)

Updates `github.com/charmbracelet/x/ansi` from 0.10.1 to 0.10.2
- [Commits](charmbracelet/x@ansi/v0.10.1...ansi/v0.10.2)

Updates `github.com/charmbracelet/x/term` from 0.2.1 to 0.2.2
- [Commits](charmbracelet/x@ansi/v0.2.1...ansi/v0.2.2)

Updates `github.com/cpuguy83/go-md2man/v2` from 2.0.6 to 2.0.7
- [Release notes](https://github.com/cpuguy83/go-md2man/releases)
- [Commits](cpuguy83/go-md2man@v2.0.6...v2.0.7)

Updates `github.com/mattn/go-runewidth` from 0.0.16 to 0.0.17
- [Commits](mattn/go-runewidth@v0.0.16...v0.0.17)

Updates `github.com/muesli/mango` from 0.1.0 to 0.2.0
- [Release notes](https://github.com/muesli/mango/releases)
- [Commits](muesli/mango@v0.1.0...v0.2.0)

Updates `github.com/muesli/mango-cobra` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/muesli/mango-cobra/releases)
- [Commits](muesli/mango-cobra@v1.2.0...v1.3.0)

Updates `github.com/muesli/mango-pflag` from 0.1.0 to 0.2.0
- [Release notes](https://github.com/muesli/mango-pflag/releases)
- [Commits](muesli/mango-pflag@v0.1.0...v0.2.0)

Updates `github.com/spf13/cast` from 1.7.0 to 1.10.0
- [Release notes](https://github.com/spf13/cast/releases)
- [Commits](spf13/cast@v1.7.0...v1.10.0)

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/stretchr/objx` from 0.5.2 to 0.5.3
- [Release notes](https://github.com/stretchr/objx/releases)
- [Commits](stretchr/objx@v0.5.2...v0.5.3)

Updates `golang.org/x/crypto` from 0.35.0 to 0.43.0
- [Commits](golang/crypto@v0.35.0...v0.43.0)

Updates `golang.org/x/sys` from 0.36.0 to 0.37.0
- [Commits](golang/sys@v0.36.0...v0.37.0)

Updates `golang.org/x/text` from 0.24.0 to 0.30.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.24.0...v0.30.0)

---
updated-dependencies:
- dependency-name: dario.cat/mergo
  dependency-version: 1.0.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/Masterminds/semver/v3
  dependency-version: 3.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/charmbracelet/x/ansi
  dependency-version: 0.10.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/charmbracelet/x/term
  dependency-version: 0.2.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/cpuguy83/go-md2man/v2
  dependency-version: 2.0.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/mattn/go-runewidth
  dependency-version: 0.0.17
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/muesli/mango
  dependency-version: 0.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/muesli/mango-cobra
  dependency-version: 1.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/muesli/mango-pflag
  dependency-version: 0.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/spf13/cast
  dependency-version: 1.10.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/spf13/pflag
  dependency-version: 1.0.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/stretchr/objx
  dependency-version: 0.5.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: golang.org/x/crypto
  dependency-version: 0.43.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.37.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: golang.org/x/text
  dependency-version: 0.30.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@orien orien merged commit e241541 into main Nov 3, 2025
24 checks passed
@orien orien deleted the dependabot/go_modules/go-dependencies-5b221eaa95 branch November 3, 2025 12:12
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.

2 participants

Morty Proxy This is a proxified and sanitized view of the page, visit original site.