dependabot[bot] opened a new pull request, #1923: URL: https://github.com/apache/apisix-ingress-controller/pull/1923
Bumps [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) from 0.14.6 to 0.15.1. <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.15.1</h2> <h2>What's Changed</h2> <ul> <li>[release-0.15] โจFix logs in unstructured client by <a href="https://github.com/k8s-infra-cherrypick-robot"><code>@โk8s-infra-cherrypick-robot</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2344">kubernetes-sigs/controller-runtime#2344</a></li> <li>[release-0.15] ๐ fix unspecified KindsFor version by <a href="https://github.com/k8s-infra-cherrypick-robot"><code>@โk8s-infra-cherrypick-robot</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2347">kubernetes-sigs/controller-runtime#2347</a></li> <li>[release-0.15] ๐ fakeClient.Status().Update(...) cannot recognize resource version conflicts by <a href="https://github.com/k8s-infra-cherrypick-robot"><code>@โk8s-infra-cherrypick-robot</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2372">kubernetes-sigs/controller-runtime#2372</a></li> <li>[release-0.15] ๐ hasLabels and matchingLabels step on each other by <a href="https://github.com/k8s-infra-cherrypick-robot"><code>@โk8s-infra-cherrypick-robot</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2373">kubernetes-sigs/controller-runtime#2373</a></li> <li>[release-0.15] :bug: Fix Defaulting of the User Agent by <a href="https://github.com/alvaroaleman"><code>@โalvaroaleman</code></a> in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/pull/2436">kubernetes-sigs/controller-runtime#2436</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/kubernetes-sigs/controller-runtime/compare/v0.15.0...v0.15.1">https://github.com/kubernetes-sigs/controller-runtime/compare/v0.15.0...v0.15.1</a></p> <h2>v0.15.0</h2> <h1>Controller Runtime v0.15</h1> <blockquote> <p><em>A note from the maintainers</em></p> <p>The following release is probably the largest in the history of the project. Controller Runtime is a foundational piece for almost all controllers and operators and we're aware that breaking changes are never an ask for our users, especially while running production services.</p> <p>We take breaking changes very seriously and carefully reviewed each one of these changes to improve the codebase, user experience, and future maintainability of the project.</p> <p>The v0.15 release is a stepping stone towards maturity.</p> <p>As always, please reach out in Slack in #controller-runtime.</p> </blockquote> <h2>Changes since v0.14.5</h2> <h2>:warning: Breaking Changes</h2> <ul> <li>Make <code>*http.Client</code> configurable and use/share the same client by default (<a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2122">#2122</a>) <ul> <li>When using the default Manager configuration, no immediate changes are needed.</li> <li><code>client/apiutil.NewDynamicRESTMapper</code> signature has changed and now requires an <code>*http.Client</code> as parameter.</li> <li><code>cluster.Cluster</code> interface requires <code>GetHTTPClient()</code> method which must return an already configured, non-nil, <code>*http.Client</code> for the Cluster. When using <code>cluster.New</code> to create Clusters, the client is created internally if not specified as an <code>Options</code> field.</li> <li><code>cluster.Options.MapperProvider</code> field now requires a <code>*rest.Config</code> and <code>*http.Client</code>.</li> </ul> </li> <li>Deprecate Component Configuration <code>config/v1alpha1</code> types (<a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2149">#2149</a>, <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2200">#2200</a>) <ul> <li>The Component Configuration package has been unmaintained for over a year and is no longer actively developed. There are (currently) no plans to revive the package, or provide an alternative.</li> <li>Users should migrate to a custom implementation that sets <code>Manager.Options</code> directly.</li> <li>๐ Feedback requested: removal of the deprecated types and code is tracked in <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/895">#895</a>.</li> </ul> </li> <li>Remove dependency injection functions (<a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2134">#2134</a>, <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2120">#2120</a>) <ul> <li>The package <code>pkg/inject</code> has been removed, this package contained long deprecated injection functions (like <code>InjectScheme</code>, <code>InjectLogger</code>, <code>InjectConfig</code>, <code>InjectClient</code>, <code>InjectCache</code>, etc.).</li> <li>The runtime injection functionality has been deprecated since Controller Runtime 0.10; all of the above fields can be passed from the <code>Manager</code> to structs or interfaces that need them.</li> </ul> </li> <li>Improve <code>builder</code> package capabilities and general UX (<a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2135">#2135</a>) <ul> <li><code>builder.Builder.Watches</code> signature has changed, it now takes a <code>client.Object</code> instead of a <code>source.Source</code> as first argument. <ul> <li>For <code>source.Source</code>, use <code>WatchesRawSource</code>.</li> </ul> </li> <li><code>builder.Builder.WatchesMetadata</code> has been added to simplify watching <code>PartialObjectMetadata</code> objects.</li> </ul> </li> <li>Refactor cache.Options, deprecate MultiNamespacedCacheBuilder (<a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2157">#2157</a>, <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2166">#2166</a>) <ul> <li><code>cache.Options.Namespace</code> has been removed in favor of <code>cache.Options.Namespaces</code>, a slice.</li> <li><code>cache.Options.Resync</code> has been renamed to <code>SyncPeriod</code>.</li> <li><code>cache.Options.DefaultSelector</code> has been removed and split in two fields: <ul> <li><code>cache.Options.DefaultLabelSelector</code></li> <li><code>cache.Options.DefaultFieldSelector</code></li> </ul> </li> <li><code>cache.Options.DefaultTransform</code> was added to provide a global transform function.</li> </ul> </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/40203bfeac472914f36ea35bf386326814f6f82e"><code>40203bf</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2436">#2436</a> from alvaroaleman/fix-ua-3</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/3de96247226760a0b7c4c6c36e688d1cb41609b8"><code>3de9624</code></a> :bug: Fix Defaulting of the User Agent</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/0e372174d255599738c91c830998a5869e9b81a3"><code>0e37217</code></a> [release-0.15] ๐ hasLabels and matchingLabels step on each other (<a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2373">#2373</a>)</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/111c9381c98953ed3c41694300b6a7cccbb09dac"><code>111c938</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2372">#2372</a> from k8s-infra-cherrypick-robot/cherry-pick-2365-to-...</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/37c58aeadfd781cdab0bd8cbdd8f14b2538703c2"><code>37c58ae</code></a> ๐ fakeClient.Status().Update(...) cannot recognize resource version conflicts</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/530dde03b6585d1056b525543be02467a91c279f"><code>530dde0</code></a> [release-0.15] ๐ fix unspecified KindsFor version (<a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2347">#2347</a>)</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/1a82503d75c3d8ab2c38dbd23bc555cc1b7b9f82"><code>1a82503</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2344">#2344</a> from k8s-infra-cherrypick-robot/cherry-pick-2343-to-...</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/c9cefc78b03af2db8a22389800412235ac06718c"><code>c9cefc7</code></a> Fix logs in unstructured client</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/116a1b831fffe7ccc3c8145306c3e1a3b1b14ffa"><code>116a1b8</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/controller-runtime/issues/2340">#2340</a> from kubernetes-sigs/dependabot/go_modules/github.co...</li> <li><a href="https://github.com/kubernetes-sigs/controller-runtime/commit/96bf7c353ff14c90d7e4a13811c238fbfc23c341"><code>96bf7c3</code></a> :seedling: Bump github.com/onsi/gomega from 1.27.6 to 1.27.7</li> <li>Additional commits viewable in <a href="https://github.com/kubernetes-sigs/controller-runtime/compare/v0.14.6...v0.15.1">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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </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]
