Skip to content

chore(deps): Bump sigs.k8s.io/controller-runtime from 0.20.0 to 0.23.3 in /kagenti-operator#233

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/kagenti-operator/sigs.k8s.io/controller-runtime-0.23.3
Closed

chore(deps): Bump sigs.k8s.io/controller-runtime from 0.20.0 to 0.23.3 in /kagenti-operator#233
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/kagenti-operator/sigs.k8s.io/controller-runtime-0.23.3

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 16, 2026

Bumps sigs.k8s.io/controller-runtime from 0.20.0 to 0.23.3.

Release notes

Sourced from sigs.k8s.io/controller-runtime's releases.

v0.23.3

What's Changed

Full Changelog: kubernetes-sigs/controller-runtime@v0.23.2...v0.23.3

v0.23.2

What's Changed

Full Changelog: kubernetes-sigs/controller-runtime@v0.23.1...v0.23.2

v0.23.1

What's Changed

Full Changelog: kubernetes-sigs/controller-runtime@v0.23.0...v0.23.1

v0.23.0

🔆 Highlights

⚠️ Breaking changes

✨ Features

... (truncated)

Commits
  • f9589b9 Merge pull request #3469 from k8s-infra-cherrypick-robot/cherry-pick-3468-to-...
  • 25615ad Ensure DefaulterRemoveUnknownOrOmitableFields is still working even if object...
  • 8122a62 Merge pull request #3467 from k8s-infra-cherrypick-robot/cherry-pick-3463-to-...
  • 35093c6 Reduce memory usage of default webhooks
  • 4dbfa5c [release-0.23] 🐛 Fix fake client's SSA status patch resource version check (#...
  • f52bbb8 Merge pull request #3437 from k8s-infra-cherrypick-robot/cherry-pick-3430-to-...
  • 4f41337 Merge pull request #3438 from k8s-infra-cherrypick-robot/cherry-pick-3434-to-...
  • e29a1b9 seedling: Test cache reader waits for cache sync
  • 83c8dc3 bug: Fakeclient: Fix status apply if existing object has managedFields set
  • bf6bcd5 Merge pull request #3436 from k8s-infra-cherrypick-robot/cherry-pick-3431-to-...
  • Additional commits viewable in compare view

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Mar 16, 2026
@dependabot dependabot bot requested a review from a team as a code owner March 16, 2026 19:03
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Mar 16, 2026
@dependabot dependabot bot force-pushed the dependabot/go_modules/kagenti-operator/sigs.k8s.io/controller-runtime-0.23.3 branch from 290aa41 to 9c57083 Compare March 20, 2026 15:34
@dependabot dependabot bot force-pushed the dependabot/go_modules/kagenti-operator/sigs.k8s.io/controller-runtime-0.23.3 branch from 9c57083 to ca1f7ef Compare March 23, 2026 15:05
Bumps [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) from 0.20.0 to 0.23.3.
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.20.0...v0.23.3)

---
updated-dependencies:
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-version: 0.23.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/kagenti-operator/sigs.k8s.io/controller-runtime-0.23.3 branch from ca1f7ef to 7afe2cc Compare March 31, 2026 20:58
@pdettori
Copy link
Copy Markdown
Contributor

pdettori commented Apr 8, 2026

Closing in favor of a single bundled PR that bumps controller-runtime to 0.23.3 together with k8s.io/* to 0.35.2.

These dependencies must be upgraded together — controller-runtime 0.23 requires k8s.io/* v0.35, and bumping k8s.io/* alone without the matching controller-runtime breaks the build (as shown by CI failures here).

The bundled PR will include the necessary source fixes for controller-runtime v0.23 breaking changes (webhook API signature changes) and be tested locally before pushing.

@pdettori pdettori closed this Apr 8, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 8, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/go_modules/kagenti-operator/sigs.k8s.io/controller-runtime-0.23.3 branch April 8, 2026 18:56
pdettori added a commit to pdettori/kagenti-operator that referenced this pull request Apr 8, 2026
Bundles the following dependabot PRs into a single coordinated upgrade:
- sigs.k8s.io/controller-runtime 0.20.0 → 0.23.3 (kagenti#233)
- k8s.io/api 0.32.0 → 0.35.2 (kagenti#230)
- k8s.io/apimachinery 0.32.0 → 0.35.2 (kagenti#231)
- k8s.io/client-go 0.32.0 → 0.35.2

These dependencies must be upgraded together due to version coupling.

Breaking changes in controller-runtime v0.23:
- WebhookManagedBy now takes the object as a second argument
  (generic type parameter replaces .For() chain)
- Webhook validators use concrete types instead of runtime.Object
- Go 1.25.0 required (toolchain auto-download supported)

Source fixes:
- agentcard_webhook.go: Updated WebhookManagedBy call and validator
  signatures to use *AgentCard concrete type
- agentruntime_webhook.go: Updated WebhookManagedBy call and validator
  signatures to use *AgentRuntime concrete type
- Removed "wrong object type" tests (type safety now enforced at
  compile time by generics)

Assisted-By: Claude (Anthropic AI) <noreply@anthropic.com>
Signed-off-by: Paolo Dettori <dettori@us.ibm.com>
pdettori added a commit to pdettori/kagenti-operator that referenced this pull request Apr 8, 2026
Bundles the following dependabot PRs into a single coordinated upgrade:
- sigs.k8s.io/controller-runtime 0.20.0 → 0.23.3 (kagenti#233)
- k8s.io/api 0.32.0 → 0.35.2 (kagenti#230)
- k8s.io/apimachinery 0.32.0 → 0.35.2 (kagenti#231)
- k8s.io/client-go 0.32.0 → 0.35.2

These dependencies must be upgraded together due to version coupling.

Breaking changes in controller-runtime v0.23:
- WebhookManagedBy now takes the object as a second argument
  (generic type parameter replaces .For() chain)
- Webhook validators use concrete types instead of runtime.Object
- Go 1.25.0 required (toolchain auto-download supported)

Source fixes:
- agentcard_webhook.go: Updated WebhookManagedBy call and validator
  signatures to use *AgentCard concrete type
- agentruntime_webhook.go: Updated WebhookManagedBy call and validator
  signatures to use *AgentRuntime concrete type
- Removed "wrong object type" tests (type safety now enforced at
  compile time by generics)

CI fixes:
- Bump golangci-lint from v1.64.8 to v2.11.4 (v1 built with Go 1.24
  cannot lint Go 1.25 code)
- Migrate .golangci.yml to v2 format via `golangci-lint migrate`

Assisted-By: Claude (Anthropic AI) <noreply@anthropic.com>
Signed-off-by: Paolo Dettori <dettori@us.ibm.com>
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.

1 participant