k8sgpt-operator
k8sgpt-operator copied to clipboard
fix(deps): update all non-major dependencies
This PR contains the following updates:
| Package | Type | Update | Change | Age | Confidence |
|---|---|---|---|---|---|
| anchore/sbom-action | action | patch | v0.20.4 -> v0.20.9 |
||
| buf.build/gen/go/k8sgpt-ai/k8sgpt/protocolbuffers/go | require | patch | v1.36.6-20241118152629-1379a5a1889d.1 -> v1.36.10-20241118152629-1379a5a1889d.1 |
||
| github.com/cloudevents/sdk-go/v2 | require | patch | v2.16.1 -> v2.16.2 |
||
| github.com/onsi/ginkgo/v2 | require | minor | v2.23.4 -> v2.27.2 |
||
| github.com/onsi/gomega | require | patch | v1.38.0 -> v1.38.2 |
||
| github.com/prometheus/client_golang | require | minor | v1.22.0 -> v1.23.2 |
||
| github.com/stretchr/testify | require | minor | v1.10.0 -> v1.11.1 |
||
| go (source) | toolchain | minor | 1.24.5 -> 1.25.4 |
||
| golang | stage | minor | 1.24-alpine3.21 -> 1.25-alpine3.21 |
||
| google.golang.org/grpc | require | minor | v1.74.2 -> v1.76.0 |
||
| helm/chart-testing-action | action | minor | v2.7.0 -> v2.8.0 |
||
| helm/kind-action | action | minor | v1.12.0 -> v1.13.0 |
||
| k8s.io/api | require | minor | v0.33.3 -> v0.34.2 |
||
| k8s.io/apimachinery | require | minor | v0.33.3 -> v0.34.2 |
||
| k8s.io/cli-runtime | require | minor | v0.33.3 -> v0.34.2 |
||
| k8s.io/client-go | require | minor | v0.33.3 -> v0.34.2 |
||
| k8s.io/kubectl | require | minor | v0.33.3 -> v0.34.2 |
||
| python | uses-with | minor | 3.13 -> 3.14 |
||
| quay.io/brancz/kube-rbac-proxy | minor | v0.19.1 -> v0.20.0 |
|||
| sigs.k8s.io/controller-runtime | require | minor | v0.21.0 -> v0.22.4 |
Release Notes
anchore/sbom-action (anchore/sbom-action)
v0.20.9
Changes in v0.20.9
- chore(deps): update Syft to v1.36.0 (#546) [[anchore-actions-token-generator[bot]](https://github.com/anchore-actions-token-generator[bot])]
v0.20.8
Changes in v0.20.8
- chore(deps): update Syft to v1.34.2 (#545) [[anchore-actions-token-generator[bot]](https://github.com/anchore-actions-token-generator[bot])]
v0.20.7
Changes in v0.20.7
- chore(deps): update Syft to v1.34.1 (#544)
v0.20.6
Changes in v0.20.6
- chore(deps): update Syft to v1.33.0 (#537) [[anchore-actions-token-generator[bot]](https://github.com/anchore-actions-token-generator[bot])]
- chore: update actions library to resolve critical vulnerability (#536) [spiffcs]
v0.20.5
Changes in v0.20.5
- Update Syft to v1.31.0 (#531)
onsi/ginkgo (github.com/onsi/ginkgo/v2)
v2.27.2
2.27.2
Fixes
- inline automaxprocs to simplify dependencies; this will be removed when Go 1.26 comes out [
a69113a]
Maintenance
v2.27.1
2.27.1
Fixes
- Fix Ginkgo Reporter slice-bounds panic [
606c1cb] - Bug Fix: Add GinkoTBWrapper.Attr() and GinkoTBWrapper.Output() [
a6463b3]
v2.27.0
2.27.0
Features
Transforming Nodes during Tree Construction
This release adds support for NodeArgsTransformers that can be registered with AddTreeConstructionNodeArgsTransformer.
These are called during the tree construction phase as nodes are constructed and can modify the node strings and decorators. This enables frameworks built on top of Ginkgo to modify Ginkgo nodes and enforce conventions.
Learn more here.
Spec Prioritization
A new SpecPriority(int) decorator has been added. Ginkgo will honor priority when ordering specs, ensuring that higher priority specs start running before lower priority specs
Learn more here.
Maintenance
- Bump rexml from 3.4.0 to 3.4.2 in /docs (#1595) [
1333dae] - Bump github.com/gkampitakis/go-snaps from 0.5.14 to 0.5.15 (#1600) [
17ae63e]
v2.26.0
2.26.0
Features
Ginkgo can now generate json-formatted reports that are compatible with the go test json format. Use ginkgo --gojson-report=report.go.json. This is not intended to be a replacement for Ginkgo's native json format which is more information rich and better models Ginkgo's test structure semantics.
v2.25.3
2.25.3
Fixes
- emit --github-output group only for progress report itself [
f01aed1]
v2.25.2
2.25.2
Fixes
Add github output group for progress report content
Maintenance
Bump Gomega
v2.25.1
2.25.1
Fixes
v2.25.0
2.25.0
AroundNode
This release introduces a new decorator to support more complex spec setup usecases.
AroundNode registers a function that runs before each individual node. This is considered a more advanced decorator.
Please read the docs for more information and some examples.
Allowed signatures:
AroundNode(func())-funcwill be called before the node is run.AroundNode(func(ctx context.Context) context.Context)-funccan wrap the passed in context and return a new one which will be passed on to the node.AroundNode(func(ctx context.Context, body func(ctx context.Context)))-ctxis the context for the node andbodyis a function that must be called to run the node. This gives you complete control over what runs before and after the node.
Multiple AroundNode decorators can be applied to a single node and they will run in the order they are applied.
Unlike setup nodes like BeforeEach and DeferCleanup, AroundNode is guaranteed to run in the same goroutine as the decorated node. This is necessary when working with lower-level libraries that must run on a single thread (you can call runtime.LockOSThread() in the AroundNode to ensure that the node runs on a single thread).
Since AroundNode allows you to modify the context you can also use AroundNode to implement shared setup that attaches values to the context.
If applied to a container, AroundNode will run before every node in the container. Including setup nodes like BeforeEach and DeferCleanup.
AroundNode can also be applied to RunSpecs to run before every node in the suite. This opens up new mechanisms for instrumenting individual nodes across an entire suite.
v2.24.0
2.24.0
Features
Specs can now be decorated with (e.g.) SemVerConstraint("2.1.0") and ginkgo --sem-ver-filter="2.1.1" will only run constrained specs that match the requested version. Learn more in the docs here! Thanks to @Icarus9913 for the PR.
Fixes
Maintenance
Numerous dependency bumps and documentation fixes
onsi/gomega (github.com/onsi/gomega)
v1.38.2
1.38.2
- roll back to go 1.23.0 [
c404969]
v1.38.1
1.38.1
Fixes
Numerous minor fixes and dependency bumps
prometheus/client_golang (github.com/prometheus/client_golang)
v1.23.2: - 2025-09-05
This release is made to upgrade to prometheus/common v0.66.1, which drops the dependencies github.com/grafana/regexp and go.uber.org/atomic and replaces gopkg.in/yaml.v2 with go.yaml.in/yaml/v2 (a drop-in replacement). There are no functional changes.
All Changes
Full Changelog: https://github.com/prometheus/client_golang/compare/v1.23.1...v1.23.2
v1.23.1: - 2025-09-04
This release is made to be compatible with a backwards incompatible API change in prometheus/common v0.66.0. There are no functional changes.
All Changes
Full Changelog: https://github.com/prometheus/client_golang/compare/v1.23.0...v1.23.1
v1.23.0: - 2025-07-30
- [CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. #1812
- [FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix #1766
- [FEATURE] Add exemplars for native histograms #1686
- [ENHANCEMENT] exp/api: Bubble up status code from writeResponse #1823
- [ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 #1833
- [BUGFIX] exp/api: client prompt return on context cancellation #1729
All Changes
* Update example test by @SuperQ in https://github.com/prometheus/client_golang/pull/1770 * build(deps): bump golang.org/x/net from 0.34.0 to 0.36.0 in /tutorials/whatsup by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1776 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1771 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1778 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1779 * build(deps): bump google.golang.org/protobuf from 1.36.5 to 1.36.6 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1782 * build(deps): bump github.com/prometheus/common from 0.62.0 to 0.63.0 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1781 * build(deps): bump github.com/prometheus/common from 0.62.0 to 0.63.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1783 * build(deps): bump google.golang.org/protobuf from 1.36.5 to 1.36.6 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1784 * build(deps): bump github.com/prometheus/procfs from 0.15.1 to 0.16.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1786 * chore: Upgrade golangci-lint to v2 by @kakkoyun in https://github.com/prometheus/client_golang/pull/1789 * build(deps): bump the github-actions group across 1 directory with 3 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1790 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1791 * Add `WrapCollectorWith` and `WrapCollectorWithPrefix` by @colega in https://github.com/prometheus/client_golang/pull/1766 * feat(github-actions): add Go file change detection to golangci-lint workflow by @kakkoyun in https://github.com/prometheus/client_golang/pull/1794 * chore(ci): Fix flaky tests by @kakkoyun in https://github.com/prometheus/client_golang/pull/1795 * build(deps): bump golang.org/x/net from 0.36.0 to 0.38.0 in /tutorials/whatsup by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1799 * test(registry): Add goleak-based goroutine leak detection by @surinkim in https://github.com/prometheus/client_golang/pull/1797 * build(deps): bump go.uber.org/goleak from 1.2.0 to 1.3.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1806 * build(deps): bump the github-actions group with 2 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1804 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1809 * Add exemplars for native histograms by @shivanthzen in https://github.com/prometheus/client_golang/pull/1686 * build(deps): bump golang.org/x/sys from 0.30.0 to 0.32.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1807 * build(deps): bump github.com/prometheus/client_model from 0.6.1 to 0.6.2 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1805 * build(deps): bump github.com/prometheus/procfs from 0.16.0 to 0.16.1 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1808 * build(deps): bump golang.org/x/net from 0.35.0 to 0.38.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1800 * Update supported Go versions by @SuperQ in https://github.com/prometheus/client_golang/pull/1812 * Cleaup Go modules by @SuperQ in https://github.com/prometheus/client_golang/pull/1813 * fix: client prompt return on context cancellation by @umegbewe in https://github.com/prometheus/client_golang/pull/1729 * Simplify buf binary install by @SuperQ in https://github.com/prometheus/client_golang/pull/1814 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1815 * build(deps): bump the github-actions group with 5 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1817 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1821 * exp/api: Bubble up status code from writeResponse by @saswatamcode in https://github.com/prometheus/client_golang/pull/1823 * build(deps): bump github.com/prometheus/common from 0.64.0 to 0.65.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1827 * build(deps): bump github.com/prometheus/common from 0.64.0 to 0.65.0 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1828 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1831 * Update runtime metrics for Go v1.23 and v1.24 by @aknuds1 in https://github.com/prometheus/client_golang/pull/1833 * Fix `errNotImplemented` reference by @aknuds1 in https://github.com/prometheus/client_golang/pull/1835 * build(deps): bump the github-actions group with 3 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1826 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1832 * Cut v1.23.0-rc.0 by @vesari in https://github.com/prometheus/client_golang/pull/1837 * cut v1.23.0-rc.1 by @vesari in https://github.com/prometheus/client_golang/pull/1842New Contributors
- @surinkim made their first contributihttps://github.com/prometheus/client_golang/pull/1797l/1797
- @umegbewe made their first contributihttps://github.com/prometheus/client_golang/pull/1729l/1729
- @aknuds1 made their first contributihttps://github.com/prometheus/client_golang/pull/1833l/1833
Full Changelog: https://github.com/prometheus/client_golang/compare/v1.22.0...v1.23.0
stretchr/testify (github.com/stretchr/testify)
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 @brackendawson in #1788
Full 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 @mikeauclair in #1614
- Lazily render mock diff output on successful match by @mikeauclair in #1615
- assert: check early in Eventually, EventuallyWithT, and Never by @cszczepaniak in #1427
- assert: add IsNotType by @bartventer in #1730
- assert.JSONEq: shortcut if same strings by @dolmen in #1754
- assert.YAMLEq: shortcut if same strings by @dolmen in #1755
- assert: faster and simpler isEmpty using reflect.Value.IsZero by @dolmen in #1761
- suite: faster methods filtering (internal refactor) by @dolmen in #1758
Fixes
- assert.ErrorAs: log target type by @craig65535 in #1345
- Fix failure message formatting for Positive and Negative asserts in #1062
- Improve ErrorIs message when error is nil but an error was expected by @tsioftas in #1681
- fix Subset/NotSubset when calling with mixed input types by @siliconbrain in #1729
- Improve ErrorAs failure message when error is nil by @ccoVeille in #1734
- mock.AssertNumberOfCalls: improve error msg by @3scalation in #1743
Documentation, Build & CI
- docs: Fix typo in README by @alexandear in #1688
- Replace deprecated io/ioutil with io and os by @alexandear in #1684
- Document consequences of calling t.FailNow() by @greg0ire in #1710
- chore: update docs for Unset #1621 by @techfg in #1709
- README: apply gofmt to examples by @alexandear in #1687
- refactor: use %q and %T to simplify fmt.Sprintf by @alexandear in #1674
- Propose Christophe Colombier (ccoVeille) as approver by @brackendawson in #1716
- Update documentation for the Error function in assert or require package by @architagr in #1675
- assert: remove deprecated build constraints by @alexandear in #1671
- assert: apply gofumpt to internal test suite by @ccoVeille in #1739
- CI: fix shebang in .ci.*.sh scripts by @dolmen in #1746
- assert,require: enable parallel testing on (almost) all top tests by @dolmen in #1747
- suite.Passed: add one more status test report by @Ararsa-Derese in #1706
- Add Helper() method in internal mocks and assert.CollectT by @dolmen in #1423
- assert.Same/NotSame: improve usage of Sprintf by @ccoVeille in #1742
- mock: enable parallel testing on internal testsuite by @dolmen in #1756
- suite: cleanup use of 'testing' internals at runtime by @dolmen in #1751
- assert: check test failure message for Empty and NotEmpty by @ccoVeille in #1745
- deps: fix dependency cycle with objx (again) by @dolmen in #1567
- assert.Empty: comprehensive doc of "Empty"-ness rules by @dolmen in #1753
- doc: improve godoc of top level 'testify' package by @dolmen in #1760
- assert.ErrorAs: simplify retrieving the type name by @ccoVeille in #1740
- assert.EqualValues: improve test coverage to 100% by @dolmen in #1763
- suite.Run: simplify running of Setup/TeardownSuite by @renzoarreaza in #1769
- assert.CallerInfo: micro optimization by using LastIndexByte by @dolmen in #1767
- assert.CallerInfo: micro cleanup by @dolmen in #1768
- assert: refactor TestFileExists and TestDirExists tests to enable parallel testing by @dolmen in #1766
- suite.Run: refactor handling of stats for improved readability by @dolmen in #1764
- tests: improve captureTestingT helper by @ccoVeille in #1741
- build(deps): bump actions/checkout from 4 to 5 by @dependabot[bot] in #1778
New Contributors
- @greg0ire made their first contribution in #1710
- @techfg made their first contribution in #1709
- @mikeauclair made their first contribution in #1614
- @cszczepaniak made their first contribution in #1427
- @architagr made their first contribution in #1675
- @tsioftas made their first contribution in #1681
- @siliconbrain made their first contribution in #1729
- @bartventer made their first contribution in #1730
- @Ararsa-Derese made their first contribution in #1706
- @renzoarreaza made their first contribution in #1769
- @3scalation made their first contribution in #1743
Full Changelog: https://github.com/stretchr/testify/compare/v1.10.0...v1.11.0
grpc/grpc-go (google.golang.org/grpc)
v1.76.0: Release 1.76.0
Dependencies
Bug Fixes
- client: Return status
INTERNALwhen a server sends zero response messages for a unary or client-streaming RPC. (#8523) - client: Fail RPCs with status
INTERNALinstead ofUNKNOWNupon receiving http headers with status 1xx andEND_STREAMflag set. (#8518)- Special Thanks: @vinothkumarr227
- pick_first: Fix race condition that could cause pick_first to get stuck in
IDLEstate on backend address change. (#8615)
New Features
- credentials: Add
credentials/jwtpackage providing file-based JWT PerRPCCredentials (A97). (#8431)- Special Thanks: @dimpavloff
Performance Improvements
- client: Improve HTTP/2 header size estimate to reduce re-allocations. (#8547)
- encoding/proto: Avoid redundant message size calculation when marshaling. (#8569)
- Special Thanks: @rs-unity
v1.75.1: Release 1.75.1
Bug Fixes
- transport: Fix a data race while copying headers for stats handlers in the std lib http2 server transport. (#8519)
- xdsclient:
- server: Fix a regression preventing streams from being cancelled or timed out when blocked on flow control. (#8528)
v1.75.0: Release 1.75.0
Behavior Changes
- xds: Remove support for GRPC_EXPERIMENTAL_XDS_FALLBACK environment variable. Fallback support can no longer be disabled. (#8482)
- stats: Introduce
DelayedPickCompleteevent, a type alias ofPickerUpdated. (#8465)- This (combined) event will now be emitted only once per call, when a transport is successfully selected for the attempt.
- OpenTelemetry metrics will no longer have multiple "Delayed LB pick complete" events in Go, matching other gRPC languages.
- A future release will delete the
PickerUpdatedsymbol.
- credentials: Properly apply
grpc.WithAuthorityas the highest-priority option for setting authority, above the setting in the credentials themselves. (#8488)- Now that this
WithAuthorityis available, the credentials should not be used to override the authority.
- Now that this
- round_robin: Randomize the order in which addresses are connected to in order to spread out initial RPC load between clients. (#8438)
- server: Return status code INTERNAL when a client sends more than one request in unary and server streaming RPC. (#8385)
- This is a behavior change but also a bug fix to bring gRPC-Go in line with the gRPC spec.
New Features
- dns: Add an environment variable (
GRPC_ENABLE_TXT_SERVICE_CONFIG) to provide a way to disable TXT lookups in the DNS resolver (by setting it tofalse). By default, TXT lookups are enabled, as they were previously. (#8377)
Bug Fixes
- xds: Fix regression preventing empty node IDs in xDS bootstrap configuration. (#8476)
- Special Thanks: @davinci26
- xds: Fix possible panic when certain invalid resources are encountered. (#8412)
- Special Thanks: @wooffie
- xdsclient: Fix a rare panic caused by processing a response from a closed server. (#8389)
- stats: Fix metric unit formatting by enclosing non-standard units like
callandendpointin curly braces to comply with UCUM and gRPC OpenTelemetry guidelines. (#8481) - xds: Fix possible panic when clusters are removed from the xds configuration. (#8428)
- xdsclient: Fix a race causing "resource doesn not exist" when rapidly subscribing and unsubscribing to the same resource. (#8369)
- client: When determining the authority, properly percent-encode (if needed, which is unlikely) when the target string omits the hostname and only specifies a port (
grpc.NewClient(":<port-number-or-name>")). (#8488)
v1.74.3: Release 1.74.3
Bug Fixes
helm/chart-testing-action (helm/chart-testing-action)
v2.8.0
What's Changed
- Bump the actions group across 1 directory with 4 updates by @dependabot[bot] in #171
- Fix the broken link for GitHub Help Documentation by @subramani95 in #174
- bump ct and yamale version by @cpanato in #178
- Bump actions/checkout from 4.2.2 to 5.0.0 by @dependabot[bot] in #181
- Bump actions/setup-python from 5.4.0 to 6.0.0 by @dependabot[bot] in #179
- Bump the actions group across 1 directory with 2 updates by @dependabot[bot] in #183
- Use uv instead of python venv by @nikolaik in #172
- Bump sigstore/cosign-installer from 3.8.1 to 4.0.0 by @dependabot[bot] in #184
New Contributors
- @subramani95 made their first contribution in #174
- @nikolaik made their first contribution in #172
Full Changelog: https://github.com/helm/chart-testing-action/compare/v2...v2.8.0
helm/kind-action (helm/kind-action)
v1.13.0
What's Changed
- chore: verify sha256sum of kubectl by @felix-kaestner in #134
- Load GITHUB_PATH in PATH to use correct binaries when creating registry by @gotha in #133
- feat: Add cloud provider by @waltermity in #135
- chore: bump kind to v0.29.0 by @pmalek in #144
- Bump actions/checkout from 4.2.2 to 5.0.0 by @dependabot[bot] in #145
- bug: respect 'install_only' action input value by @mszostok in #147
- bump kind and kubectl and also nodejs by @cpanato in #150
New Contributors
- @felix-kaestner made their first contribution in #134
- @gotha made their first contribution in #133
- @waltermity made their first contribution in #135
- @pmalek made their first contribution in #144
- @mszostok made their first contribution in #147
Full Changelog: https://github.com/helm/kind-action/compare/v1...v1.13.0
kubernetes/client-go (k8s.io/client-go)
v0.34.2
[v0.34.1](https://redirect.github.com/kubernetes/cli
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
ℹ Artifact update notice
File name: go.mod
In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):
- 27 additional dependencies were updated
Details:
| Package | Change |
|---|---|
golang.org/x/tools |
v0.33.0 -> v0.37.0 |
github.com/emicklei/go-restful/v3 |
v3.11.0 -> v3.12.2 |
github.com/fsnotify/fsnotify |
v1.7.0 -> v1.9.0 |
github.com/fxamacker/cbor/v2 |
v2.7.0 -> v2.9.0 |
github.com/google/gnostic-models |
v0.6.9 -> v0.7.0 |
github.com/modern-go/reflect2 |
v1.0.2 -> v1.0.3-0.20250322232337-35a7c28c31ee |
github.com/prometheus/client_model |
v0.6.1 -> v0.6.2 |
github.com/prometheus/common |
v0.62.0 -> v0.66.1 |
github.com/prometheus/procfs |
v0.15.1 -> v0.16.1 |
github.com/spf13/cobra |
v1.8.1 -> v1.9.1 |
github.com/spf13/pflag |
v1.0.5 -> v1.0.6 |
go.yaml.in/yaml/v3 |
v3.0.3 -> v3.0.4 |
golang.org/x/net |
v0.41.0 -> v0.46.1-0.20251013234738-63d1a5100f82 |
golang.org/x/oauth2 |
v0.30.0 -> v0.32.0 |
golang.org/x/sync |
v0.15.0 -> v0.17.0 |
golang.org/x/sys |
v0.33.0 -> v0.37.0 |
golang.org/x/term |
v0.32.0 -> v0.36.0 |
golang.org/x/text |
v0.26.0 -> v0.30.0 |
google.golang.org/genproto/googleapis/api |
v0.0.0-20250528174236-200df99c418a -> v0.0.0-20251022142026-3a174f9686a8 |
google.golang.org/genproto/googleapis/rpc |
v0.0.0-20250528174236-200df99c418a -> v0.0.0-20251022142026-3a174f9686a8 |
google.golang.org/protobuf |
v1.36.6 -> v1.36.10 |
k8s.io/apiextensions-apiserver |
v0.33.0 -> v0.34.1 |
k8s.io/component-base |
v0.33.3 -> v0.34.2 |
k8s.io/kube-openapi |
v0.0.0-20250318190949-c8a335a9a2ff -> v0.0.0-20250710124328-f3f2b991d03b |
sigs.k8s.io/json |
v0.0.0-20241010143419-9aa6b5e7a4b3 -> v0.0.0-20241014173422-cfa47c3a1cc8 |
sigs.k8s.io/kustomize/api |
v0.19.0 -> v0.20.1 |
sigs.k8s.io/kustomize/kyaml |
v0.19.0 -> v0.20.1 |