chore(deps): bump the dependencies group across 1 directory with 7 updates
Bumps the dependencies group with 6 updates in the / directory:
| Package | From | To |
|---|---|---|
| github.com/google/gnostic-models | 0.7.0 |
0.7.1 |
| github.com/spf13/cobra | 1.9.1 |
1.10.2 |
| github.com/stretchr/testify | 1.10.0 |
1.11.1 |
| go.uber.org/mock | 0.5.2 |
0.6.0 |
| google.golang.org/protobuf | 1.36.6 |
1.36.10 |
| k8s.io/kubernetes | 1.34.0 |
1.34.2 |
Updates github.com/google/gnostic-models from 0.7.0 to 0.7.1
Commits
289d7b4Merge pull request #23 from sloretz/absolute_go_package338bf8aUse absolute packages in option go_package- See full diff in compare view
Updates github.com/spf13/cobra from 1.9.1 to 1.10.2
Release notes
Sourced from github.com/spf13/cobra's releases.
v1.10.2
🔧 Dependencies
- chore: Migrate from
gopkg.in/yaml.v3togo.yaml.in/yaml/v3by@dimsin spf13/cobra#2336 - thegopkg.in/yaml.v3package has been deprecated for some time: this should significantly cleanup dependency/supply-chains for consumers ofspf13/cobra📈 CI/CD
- Fix linter and allow CI to pass by
@marckhouzamin spf13/cobra#2327- fix: actions/setup-go v6 by
@jpmcbin spf13/cobra#2337🔥✍🏼 Docs
- Add documentation for repeated flags functionality by
@rvergisin spf13/cobra#2316🍂 Refactors
- refactor: replace several vars with consts by
@htoyoda18in spf13/cobra#2328- refactor: change minUsagePadding from var to const by
@ssam18in spf13/cobra#2325🤗 New Contributors
@rvergismade their first contribution in spf13/cobra#2316@htoyoda18made their first contribution in spf13/cobra#2328@ssam18made their first contribution in spf13/cobra#2325@dimsmade their first contribution in spf13/cobra#2336Full Changelog: https://github.com/spf13/cobra/compare/v1.10.1...v1.10.2
Thank you to our amazing contributors!!!!! 🐍 🚀
v1.10.1
🐛 Fix
- chore: upgrade pflags v1.0.9 by
@jpmcbin spf13/cobra#2305v1.0.9 of pflags brought back
ParseErrorsWhitelistand marked it as deprecatedFull Changelog: https://github.com/spf13/cobra/compare/v1.10.0...v1.10.1
v1.10.0
What's Changed
🚨 Attention!
- Bump pflag to 1.0.8 by
@tomasaschanin spf13/cobra#2303This version of
pflagcarried a breaking change: it renamedParseErrorsWhitelisttoParseErrorsAllowlistwhich can break builds if bothpflagandcobraare dependencies in your project.
- If you use both
pflag andcobra, upgradepflagto 1.0.8 andcobrato1.10.0`- or use the newer, fixed version of
pflagv1.0.9 which keeps the deprecatedParseErrorsWhitelist
... (truncated)
Commits
88b30abchore: Migrate from gopkg.in/yaml.v3 to go.yaml.in/yaml/v3 (#2336)346d408fix: actions/setup-go v6 (#2337)fc81d20refactor: change minUsagePadding from var to const (#2325)117698arefactor: replace several vars with consts (#2328)e2dd29dAdd documentation for repeated flags functionality (#2316)0629892Fix linter (#2327)7da941cchore: Bump pflag to v1.0.9 (#2305)51d6751Bump pflag to 1.0.8 (#2303)3f3b818Update README.md with new logodcaf42eAdd Periscope to the list of projects using Cobra (#2299)- Additional commits viewable in compare view
Updates github.com/stretchr/testify from 1.10.0 to 1.11.1
Release notes
Sourced from github.com/stretchr/testify's releases.
v1.11.1
This release fixes #1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (
String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.What's Changed
- Backport #1786 to release/1.11: mock: revert to pre-v1.11.0 argument matching behavior for mutating stringers by
@brackendawsonin stretchr/testify#1788Full Changelog: https://github.com/stretchr/testify/compare/v1.11.0...v1.11.1
v1.11.0
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
- Call stack perf change for CallerInfo by
@mikeauclairin stretchr/testify#1614- Lazily render mock diff output on successful match by
@mikeauclairin stretchr/testify#1615- assert: check early in Eventually, EventuallyWithT, and Never by
@cszczepaniakin stretchr/testify#1427- assert: add IsNotType by
@bartventerin stretchr/testify#1730- assert.JSONEq: shortcut if same strings by
@dolmenin stretchr/testify#1754- assert.YAMLEq: shortcut if same strings by
@dolmenin stretchr/testify#1755- assert: faster and simpler isEmpty using reflect.Value.IsZero by
@dolmenin stretchr/testify#1761- suite: faster methods filtering (internal refactor) by
@dolmenin stretchr/testify#1758Fixes
- assert.ErrorAs: log target type by
@craig65535in stretchr/testify#1345- Fix failure message formatting for Positive and Negative asserts in stretchr/testify#1062
- Improve ErrorIs message when error is nil but an error was expected by
@tsioftasin stretchr/testify#1681- fix Subset/NotSubset when calling with mixed input types by
@siliconbrainin stretchr/testify#1729- Improve ErrorAs failure message when error is nil by
@ccoVeillein stretchr/testify#1734- mock.AssertNumberOfCalls: improve error msg by
@3scalationin stretchr/testify#1743Documentation, Build & CI
- docs: Fix typo in README by
@alexandearin stretchr/testify#1688- Replace deprecated io/ioutil with io and os by
@alexandearin stretchr/testify#1684- Document consequences of calling t.FailNow() by
@greg0irein stretchr/testify#1710- chore: update docs for Unset #1621 by
@techfgin stretchr/testify#1709- README: apply gofmt to examples by
@alexandearin stretchr/testify#1687- refactor: use %q and %T to simplify fmt.Sprintf by
@alexandearin stretchr/testify#1674- Propose Christophe Colombier (ccoVeille) as approver by
@brackendawsonin stretchr/testify#1716- Update documentation for the Error function in assert or require package by
@architagrin stretchr/testify#1675- assert: remove deprecated build constraints by
@alexandearin stretchr/testify#1671- assert: apply gofumpt to internal test suite by
@ccoVeillein stretchr/testify#1739- CI: fix shebang in .ci.*.sh scripts by
@dolmenin stretchr/testify#1746- assert,require: enable parallel testing on (almost) all top tests by
@dolmenin stretchr/testify#1747- suite.Passed: add one more status test report by
@Ararsa-Deresein stretchr/testify#1706- Add Helper() method in internal mocks and assert.CollectT by
@dolmenin stretchr/testify#1423- assert.Same/NotSame: improve usage of Sprintf by
@ccoVeillein stretchr/testify#1742- mock: enable parallel testing on internal testsuite by
@dolmenin stretchr/testify#1756- suite: cleanup use of 'testing' internals at runtime by
@dolmenin stretchr/testify#1751- assert: check test failure message for Empty and NotEmpty by
@ccoVeillein stretchr/testify#1745
... (truncated)
Commits
2a57335Merge pull request #1788 from brackendawson/1785-backport-1.11af8c912Backport #1786 to release/1.11b7801fbMerge pull request #1778 from stretchr/dependabot/github_actions/actions/chec...69831f3build(deps): bump actions/checkout from 4 to 5a53be35Improve captureTestingT helperaafb604mock: improve formatting of error message7218e03improve error msg929a212Merge pull request #1758 from stretchr/dolmen/suite-faster-method-filteringbc7459esuite: faster filtering of methods (-testify.m)7d37b5csuite: refactor methodFilter- Additional commits viewable in compare view
Updates go.uber.org/mock from 0.5.2 to 0.6.0
Release notes
Sourced from go.uber.org/mock's releases.
v0.6.0
0.6.0 (18 Aug 2025)
Added
- #258[]: Archive mode: a new mockgen mode that generates mocks out of archive files.
Fixed
- #276[]: Fixed mockgen errors with go1.25 due to outdated golang.org/x/tools dependency.
Changelog
Sourced from go.uber.org/mock's changelog.
0.6.0 (18 Aug 2025)
Added
- #258[]: Archive mode: a new mockgen mode that generates mocks out of archive files.
- #262[]: Support for specifying mock names when using the
_gomock_archivebazel rule.Fixed
- #276[]: Fixed mockgen errors with go1.25 due to outdated golang.org/x/tools dependency.
#258: uber-go/mock#258 #262: uber-go/mock#262 #276: uber-go/mock#276
Commits
2d1c581Prepare release v0.6.0 (#278)c654195Update CI to run 1.24/1.25 (#277)5900c74update golang.org/x/tools to v0.36.0 (#276)6a0445cfeat(bazel): mock_names flag support in archive mode (#262)aa11bfcfeat(bazel): support archive mode (#259)359202cSupport for archive mode (#258)871d86bBack to development (#251)- See full diff in compare view
Updates golang.org/x/sync from 0.15.0 to 0.16.0
Commits
7fad2c9errgroup: revert propagation of panics- See full diff in compare view
Updates google.golang.org/protobuf from 1.36.6 to 1.36.10
Updates k8s.io/kubernetes from 1.34.0 to 1.34.2
Release notes
Sourced from k8s.io/kubernetes's releases.
Kubernetes v1.34.2
See kubernetes-announce@. Additional binary downloads are linked in the CHANGELOG.
See the CHANGELOG for more details.
Kubernetes v1.34.1
See kubernetes-announce@. Additional binary downloads are linked in the CHANGELOG.
See the CHANGELOG for more details.
Commits
8cc511eRelease commit for Kubernetes v1.34.23e31e4cMerge pull request #134500vikasbolla/automated-cherry-pick-of-#13331011a8eb6Merge pull request #135087liggitt/automated-cherry-pick-of-#1350177768985Merge pull request #135023hoskeri/automated-cherry-pick-of-#1347406c1805cMerge pull request #134912rikatz/automated-cherry-pick-of-#1348336f91cb6Merge pull request #134800yuanwang04/automated-cherry-pick-of-#133072732ead8Merge pull request #134723neolit123/automated-cherry-pick-of-#1347158b38073Merge pull request #134533andyzhangx/automated-cherry-pick-of-#13414411e6cafMerge pull request #135191gohilankit/automated-cherry-pick-of-#1350815d5a495Merge pull request #135170 from princepereira/automated-cherry-pick-of-#13514...- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Quality Gate passed
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code