dependabot[bot] opened a new pull request, #175: URL: https://github.com/apache/skywalking-swck/pull/175
Bumps the actions-deps group in /operator with 1 update: [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime). Updates `sigs.k8s.io/controller-runtime` from 0.22.4 to 0.23.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/kubernetes-sigs/controller-runtime/releases">sigs.k8s.io/controller-runtime's releases</a>.</em></p> <blockquote> <h2>v0.23.0</h2> <h2>🔆 Highlights</h2> <ul> <li>Client: Add subresource Apply support by <a href="https://github.com/alvaroaleman"><code>@alvaroaleman</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3321">kubernetes-sigs/controller-runtime#3321</a></li> <li>Conversion: Enable implementation of conversion outside of API packages by <a href="https://github.com/sbueringer"><code>@sbueringer</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3335">kubernetes-sigs/controller-runtime#3335</a></li> <li>Priorityqueue: Various improvements, bug fixes and now enabled per default</li> <li>Webhooks: Generic Validator and Defaulter by <a href="https://github.com/alvaroaleman"><code>@alvaroaleman</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3360">kubernetes-sigs/controller-runtime#3360</a></li> </ul> <h2>⚠️ Breaking changes</h2> <ul> <li>Dependencies: Update to k8s.io/* v1.35 by <a href="https://github.com/alvaroaleman"><code>@alvaroaleman</code></a> <a href="https://github.com/dongjiang1989"><code>@dongjiang1989</code></a> <a href="https://github.com/kannon92"><code>@kannon92</code></a> (<a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3316">#3316</a>, <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3349">#3349</a>, <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3386">#3386</a>, <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3391">#3391</a>, <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3401">#3401</a>)</li> <li>Client: Add subresource Apply support by <a href="https://github.com/alvaroaleman"><code>@alvaroaleman</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3321">kubernetes-sigs/controller-runtime#3321</a></li> <li>Events: Migration to the new events API by <a href="https://github.com/clebs"><code>@clebs</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3262">kubernetes-sigs/controller-runtime#3262</a> <ul> <li>Using the new <code>GetEventRecorderFor</code> requires updating your rbac for events to use the <code>events.k8s.io</code> apiGroup rather than the `` (core) apiGroup</li> </ul> </li> <li>Fakeclient: Set ResourceVersion for SSA Create by <a href="https://github.com/alvaroaleman"><code>@alvaroaleman</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3311">kubernetes-sigs/controller-runtime#3311</a></li> <li>Webhooks: Generic Validator and Defaulter by <a href="https://github.com/alvaroaleman"><code>@alvaroaleman</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3360">kubernetes-sigs/controller-runtime#3360</a> <ul> <li>Existing code of the form <code>builder.WebhookManagedBy(mgr).For(&corev1.Deployment{})</code> has to be changed to <code>builder.WebhookManagedBy(mgr, &appsv1.Deployment{})</code></li> <li>Existing webhook implementations have to be changed to take the concrete object rather than <code>runtime.Object</code>, for example from <code>ValidateCreate(ctx context.Context, obj runtime.Object) (admission.Warnings, error)</code> to <code>ValidateCreate(ctx context.Context, obj *appsv1.Deployment) (admission.Warnings, error)</code></li> </ul> </li> </ul> <h2>✨ Features</h2> <ul> <li>Cache: Allow fine-granular SyncPeriod configuration by <a href="https://github.com/sbueringer"><code>@sbueringer</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3376">kubernetes-sigs/controller-runtime#3376</a></li> <li>Client: Add FieldOwner option to client.Options by <a href="https://github.com/aerfio"><code>@aerfio</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3389">kubernetes-sigs/controller-runtime#3389</a></li> <li>Client: Add FieldValidation option to client.Options by <a href="https://github.com/aerfio"><code>@aerfio</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3393">kubernetes-sigs/controller-runtime#3393</a></li> <li>Conversion: Enable implementation of conversion outside of API packages by <a href="https://github.com/sbueringer"><code>@sbueringer</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3335">kubernetes-sigs/controller-runtime#3335</a></li> <li>Metrics: Add controller_runtime_reconcile_timeouts_total metric to track ReconciliationTimeout timeouts by <a href="https://github.com/godwinpang"><code>@godwinpang</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3382">kubernetes-sigs/controller-runtime#3382</a></li> <li>Priorityqueue: Add optional Priority field to reconcile.Result by <a href="https://github.com/sbueringer"><code>@sbueringer</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3333">kubernetes-sigs/controller-runtime#3333</a></li> <li>Priorityqueue: Enable per default by <a href="https://github.com/sbueringer"><code>@sbueringer</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3332">kubernetes-sigs/controller-runtime#3332</a></li> <li>Priorityqueue: Use a buffer to optimize priority queue AddWithOpts performance by <a href="https://github.com/zach593"><code>@zach593</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3415">kubernetes-sigs/controller-runtime#3415</a></li> <li>Source/Kind: Delay reconciliation until handlers sync by <a href="https://github.com/GonzaloLuminary"><code>@GonzaloLuminary</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3406">kubernetes-sigs/controller-runtime#3406</a></li> <li>Webhooks: Add WithContextFunc to WebhookBuilder by <a href="https://github.com/dmvolod"><code>@dmvolod</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3324">kubernetes-sigs/controller-runtime#3324</a></li> </ul> <h2>🐛 Bugfixes</h2> <ul> <li>Client: Allow SSA after normal resource creation by <a href="https://github.com/filipcirtog"><code>@filipcirtog</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3346">kubernetes-sigs/controller-runtime#3346</a></li> <li>Client: Fix List in namespaced client to list objects that are cluster scoped by <a href="https://github.com/troy0820"><code>@troy0820</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3351">kubernetes-sigs/controller-runtime#3351</a> <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3353">kubernetes-sigs/controller-runtime#3353</a></li> <li>Envtest: Respect pre-configured binary paths in ControlPlane by <a href="https://github.com/mzhaom"><code>@mzhaom</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3372">kubernetes-sigs/controller-runtime#3372</a></li> <li>Fakeclient: Fix a number of bugs when updating through apply by <a href="https://github.com/alvaroaleman"><code>@alvaroaleman</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3319">kubernetes-sigs/controller-runtime#3319</a></li> <li>FakeClient: Fix Apply with Unstructured ApplyConfiguration and resourceVersion unset by <a href="https://github.com/sbueringer"><code>@sbueringer</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3403">kubernetes-sigs/controller-runtime#3403</a></li> <li>Fakeclient: Fix SSA after List with non-list kind by <a href="https://github.com/sbueringer"><code>@sbueringer</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3364">kubernetes-sigs/controller-runtime#3364</a></li> <li>Fakeclient: Panic when trying to build more than one instance of fake.ClientBuilder by <a href="https://github.com/troy0820"><code>@troy0820</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3314">kubernetes-sigs/controller-runtime#3314</a></li> <li>Leaderelection: Copy all parent context values to leader elector's context by <a href="https://github.com/msudheendra-cflt"><code>@msudheendra-cflt</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3327">kubernetes-sigs/controller-runtime#3327</a></li> <li>Metrics: Adding missing exponential buckets on webhook native histogram by <a href="https://github.com/brito-rafa"><code>@brito-rafa</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3411">kubernetes-sigs/controller-runtime#3411</a></li> <li>Priorityqueue: Do FIFO ordering within priorities and not across by <a href="https://github.com/zach593"><code>@zach593</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3408">kubernetes-sigs/controller-runtime#3408</a></li> <li>Priorityqueue: Don't block on Get when queue is shutdown (2nd try) by <a href="https://github.com/sbueringer"><code>@sbueringer</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3337">kubernetes-sigs/controller-runtime#3337</a></li> <li>Priorityqueue: Ensure priority queue always returns high-priority items first by <a href="https://github.com/moritzmoe"><code>@moritzmoe</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3330">kubernetes-sigs/controller-runtime#3330</a></li> <li>Priorityqueue: Fix TestWhenAddingMultipleItemsWithRatelimitTrueTheyDontAffectEachOther by <a href="https://github.com/zach593"><code>@zach593</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3395">kubernetes-sigs/controller-runtime#3395</a></li> <li>Priorityqueue: Limit depthWithPriorityMetric cardinality to 25 by <a href="https://github.com/alvaroaleman"><code>@alvaroaleman</code></a> <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3419">kubernetes-sigs/controller-runtime#3419</a></li> <li>Priorityqueue: Properly sync the <code>waiter</code> manipulation by <a href="https://github.com/fossedihelm"><code>@fossedihelm</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3368">kubernetes-sigs/controller-runtime#3368</a></li> <li>setup-envtest: Select the newest Kubernetes by default by <a href="https://github.com/cbandy"><code>@cbandy</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/3380">kubernetes-sigs/controller-runtime#3380</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/129853d4ae0548600432fb76cd4d965cfcb854a6"><code>129853d</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3419">#3419</a> from alvaroaleman/limit-cardinality</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/00b8b07cf3445ce3a46bd6c30430401814311392"><code>00b8b07</code></a> :bug: Limit depthWithPriorityMetric cardinality to 25</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/43b0e35a8e53c7976038c106a5f5e953e64deffd"><code>43b0e35</code></a> ✨ Delay reconciliation until handlers sync (<a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3406">#3406</a>)</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/137b9c03159a5a3314f9212159219a044a66933b"><code>137b9c0</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3415">#3415</a> from zach593/pq-buffer</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/c47f9cb5104b0f46d98f6a2c1a424e7cc654d607"><code>c47f9cb</code></a> Use a buffer to optimize priority queue AddWithOpts performance</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/5de4c4f5997c4b9469c7cfe003eff06bfdbd7f87"><code>5de4c4f</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3416">#3416</a> from alvaroaleman/twotrees</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/9de69a734f9125a15d06a001320cc758aaec87e1"><code>9de69a7</code></a> :seedling: Priorityqueue: Use separate b-trees for ready and non-ready items</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/0c3a9102bc0af27b969b17191e68e6f28ff12c23"><code>0c3a910</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3408">#3408</a> from zach593/pq-fifo</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/31d30b6696c75a8b6fc29a0b85b7686eefecca72"><code>31d30b6</code></a> fix priority queue ordering when item priority changes</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/a0855902b3703e1fe66b06715d2fb0716fd1a4dd"><code>a085590</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/3411">#3411</a> from brito-rafa/issue-3410-expbucket-webhook</li> <li>Additional commits viewable in <a href="https://github.com/kubernetes-sigs/controller-runtime/compare/v0.22.4...v0.23.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
