-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update module sigs.k8s.io/controller-runtime to v0.18.4 - autoclosed #19
Conversation
3e577e9
to
6d87aca
Compare
6d87aca
to
a94bfa1
Compare
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: go.sum
|
a94bfa1
to
735340c
Compare
735340c
to
19114ca
Compare
19114ca
to
dd81e95
Compare
dd81e95
to
9a20d5d
Compare
9a20d5d
to
4436e6f
Compare
4436e6f
to
072f03f
Compare
072f03f
to
5609a17
Compare
5609a17
to
cce664c
Compare
cce664c
to
9d96463
Compare
9d96463
to
af80a8a
Compare
af80a8a
to
d6fd538
Compare
d6fd538
to
9a0f7b6
Compare
9a0f7b6
to
92e8ab0
Compare
92e8ab0
to
156f2e8
Compare
156f2e8
to
293e596
Compare
|
293e596
to
3f4cd88
Compare
This PR contains the following updates:
v0.12.3
->v0.18.4
Release Notes
kubernetes-sigs/controller-runtime (sigs.k8s.io/controller-runtime)
v0.18.4
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.18.3...v0.18.4
v0.18.3
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.18.2...v0.18.3
v0.18.2
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.18.1...v0.18.2
v0.18.1
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.18.0...v0.18.1
v0.18.0
Compare Source
✨ New Features
NewQueue
option (#2767)ListenConfig
option (#2519)🐛 Bug Fixes
🌱 Others
📖 Additionally, there have been 3 contributions to our documentation and book. (#2712, #2770, #2789)
Dependencies
Added
b75ee88
51d4e06
Changed
2dd684a
→70dd376
Removed
9cce18d
Thanks to all our contributors! 😊
v0.17.5
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.17.4...v0.17.5
v0.17.4
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.17.3...v0.17.4
v0.17.3
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.17.2...v0.17.3
v0.17.2
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.17.1...v0.17.2
v0.17.1
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.17.0...v0.17.1
v0.17.0
Compare Source
✨ New Features
🐛 Bug Fixes
RemoveControllerReference
andHasControllerReference
func (#2509 #2595)RemoveOwnerReference
func (#2462)🌱 Others
🌱 Dependencies
📖 Additionally, there have been 5 contributions to our documentation. (#2497, #2498, #2538, #2599, #2602, #2635 #2647)
Thanks to all our contributors! 😊
v0.16.6
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.16.5...v0.16.6
v0.16.5
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.16.4...v0.16.5
v0.16.4
Compare Source
What's Changed
New Contributors
Full Changelog: kubernetes-sigs/controller-runtime@v0.16.3...v0.16.4
v0.16.3
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.16.2...v0.16.3
v0.16.2
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.16.1...v0.16.2
v0.16.1
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.16.0...v0.16.1
v0.16.0
Compare Source
Highlights
Changes since v0.15
✨ New Features
🐛 Bug Fixes
🌱 Others
📖 Documentation and proposals
📈 Dependencies
Thanks to all our contributors! 😊
Full Changelog: kubernetes-sigs/controller-runtime@v0.15.0...v0.16.0
v0.15.3
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.15.2...v0.15.3
v0.15.2
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.15.1...v0.15.2
v0.15.1
Compare Source
What's Changed
Full Changelog: kubernetes-sigs/controller-runtime@v0.15.0...v0.15.1
v0.15.0
Compare Source
Controller Runtime v0.15
Changes since v0.14.5
*http.Client
configurable and use/share the same client by default (#2122)client/apiutil.NewDynamicRESTMapper
signature has changed and now requires an*http.Client
as parameter.cluster.Cluster
interface requiresGetHTTPClient()
method which must return an already configured, non-nil,*http.Client
for the Cluster. When usingcluster.New
to create Clusters, the client is created internally if not specified as anOptions
field.cluster.Options.MapperProvider
field now requires a*rest.Config
and*http.Client
.config/v1alpha1
types (#2149, #2200)Manager.Options
directly.pkg/inject
has been removed, this package contained long deprecated injection functions (likeInjectScheme
,InjectLogger
,InjectConfig
,InjectClient
,InjectCache
, etc.).Manager
to structs or interfaces that need them.builder
package capabilities and general UX (#2135)builder.Builder.Watches
signature has changed, it now takes aclient.Object
instead of asource.Source
as first argument.source.Source
, useWatchesRawSource
.builder.Builder.WatchesMetadata
has been added to simplify watchingPartialObjectMetadata
objects.cache.Options.Namespace
has been removed in favor ofcache.Options.Namespaces
, a slice.cache.Options.Resync
has been renamed toSyncPeriod
.cache.Options.DefaultSelector
has been removed and split in two fields:cache.Options.DefaultLabelSelector
cache.Options.DefaultFieldSelector
cache.Options.DefaultTransform
was added to provide a global transform function.cache.Options.UnsafeDisableDeepCopy
was added to provide a global toggle to disable DeepCopy of the objects from the cache before returning them to clients.[..]ByObject
field have been refactored:cache.Options.SelectorsByObject
has been removed, usecache.Options.ByObject[Object].Field
andcache.Options.ByObject[Object].Label
cache.Options.UnsafeDisableDeepCopyByObject
has been removed, usecache.Options.ByObject[Object].UnsafeDisableDeepCopy
.cache.Options.TransformByObject
has been removed, usecache.Options.ByObject[Object].Transform
.cache.ObjectAll
has been removed. This type was previously used to set selectors or transformation functions for every object, use the newly introduced default global options instead.handler.EventHandler
andhandler.Funcs
interfaces requirecontext.Context
as the first parameter for every method.handler.MapFunc
signature has changed and now requires acontext.Context
.client.Client
interface now requires and exposes these helper functions:GroupVersionKindFor(Object)
which returns theschema.GroupVersionKind
for the object.IsObjectNamespaced(Object)
which returnstrue
if the object's GroupVersionKind is namespaced, orfalse
for global ones.client.New
(#2150)client.NewDelegatingClient
constructor andclient.NewDelegatingClientInput
struct have been removed.client.New
and setclient.Options.Cache
to customize the client's caching behavior.cluster.NewClientFunc
has been moved toclient.NewClientFunc
.cluster.ClientOptions
has been removed.cluster.DefaultNewClient
has been removed.cluster.ClientBuilderWithOptions
has been removed.manager.Options.Cache
is now the preferred way to customize the cache options for the manager.manager.Options.NewCache
, which has now been marked as a low level primitive.manager.Options.Client
is now the preferred way to customize the client options for the manager.manager.Options.NewClient
, which has now been marked as a low level primitive.manager.Options.SyncPeriod
has been deprecated in favor ofmanager.Options.Cache.SyncPeriod
.manager.Options.Namespace
has been deprecated in favor ofmanager.Options.Cache.Namespaces
.manager.Options.DryRunClient
has been deprecated in favor ofmanager.Options.Client.DryRun
.manager.Options.ClientDisableCacheFor
has been deprecated in favor ofmanager.Options.Client.Cache.DisableCacheFor
.manager.WebhookServer
instead.manager.Options.Port
manager.Options.Host
manager.Options.CertDir
manager.Options.TLSOpts
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.