quay / quay-bridge-operator

Utilization of Red Hat Quay as the default image registry for an OpenShift Container Platform environment
Apache License 2.0
20 stars 23 forks source link

Bump the k8s group with 3 updates #74

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps the k8s group with 3 updates: k8s.io/apimachinery, k8s.io/client-go and sigs.k8s.io/controller-runtime.

Updates k8s.io/apimachinery from 0.26.6 to 0.27.4

Commits
  • f46cb69 Merge pull request #119262HirazawaUi/automated-cherry-pick-of-#119229
  • 51f34a4 Fix the converts an empty string to nil.
  • bf8aa17 Merge pull request #118855aojea/automated-cherry-pick-of-#118686
  • 5e3923e always execute condition for wait.PollUntilContextTimeout with immediate=true
  • 38152d4 Merge pull request #118553 from puerco/bump-1.27-go1.20.5
  • 2bd872f update-vendor: update vendored go.sums
  • 756e222 Merge pull request #117298pohly/automated-cherry-pick-of-#117238
  • b1123d2 Merge pull request #117708Jefftree/automated-cherry-pick-of-#117705
  • 4074a29 Update kube-openapi to fix race
  • cc852ec api: encode NamespacedName with lower case in JSON
  • Additional commits viewable in compare view


Updates k8s.io/client-go from 0.26.6 to 0.27.4

Commits
  • c04e419 Update dependencies to v0.27.4 tag
  • 860d25f Merge pull request #118969champtar/automated-cherry-pick-of-#117791
  • 8d8e2bc Merge pull request #119086neolit123/automated-cherry-pick-of-#118150
  • af4a748 call ./hack/update-vendor.sh
  • 22da8a5 Merge pull request #118553 from puerco/bump-1.27-go1.20.5
  • 81d8c78 update-vendor: update vendored go.sums
  • d96d0d8 update serial number to a valid non-zero number in ca certificate
  • 015caa2 Merge pull request #117708Jefftree/automated-cherry-pick-of-#117705
  • fb5347d Update kube-openapi to fix race
  • 353c489 Merge pull request #117685ardaguclu/automated-cherry-pick-of-#117495
  • Additional commits viewable in compare view


Updates sigs.k8s.io/controller-runtime from 0.14.6 to 0.15.0

Release notes

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

v0.15.0

Controller Runtime v0.15

A note from the maintainers

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.

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.

The v0.15 release is a stepping stone towards maturity.

As always, please reach out in Slack in #controller-runtime.

Changes since v0.14.5

:warning: Breaking Changes

  • Make *http.Client configurable and use/share the same client by default (#2122)
    • When using the default Manager configuration, no immediate changes are needed.
    • client/apiutil.NewDynamicRESTMapper signature has changed and now requires an *http.Client as parameter.
    • cluster.Cluster interface requires GetHTTPClient() method which must return an already configured, non-nil, *http.Client for the Cluster. When using cluster.New to create Clusters, the client is created internally if not specified as an Options field.
    • cluster.Options.MapperProvider field now requires a *rest.Config and *http.Client.
  • Deprecate Component Configuration config/v1alpha1 types (#2149, #2200)
    • 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.
    • Users should migrate to a custom implementation that sets Manager.Options directly.
    • 👉 Feedback requested: removal of the deprecated types and code is tracked in #895.
  • Remove dependency injection functions (#2134, #2120)
    • The package pkg/inject has been removed, this package contained long deprecated injection functions (like InjectScheme, InjectLogger, InjectConfig, InjectClient, InjectCache, etc.).
    • The runtime injection functionality has been deprecated since Controller Runtime 0.10; all of the above fields can be passed from the Manager to structs or interfaces that need them.
  • Improve builder package capabilities and general UX (#2135)
    • builder.Builder.Watches signature has changed, it now takes a client.Object instead of a source.Source as first argument.
      • For source.Source, use WatchesRawSource.
    • builder.Builder.WatchesMetadata has been added to simplify watching PartialObjectMetadata objects.
  • Refactor cache.Options, deprecate MultiNamespacedCacheBuilder (#2157, #2166)
    • cache.Options.Namespace has been removed in favor of cache.Options.Namespaces, a slice.
    • cache.Options.Resync has been renamed to SyncPeriod.
    • 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.
    • The following [..]ByObject field have been refactored:
      • cache.Options.SelectorsByObject has been removed, use cache.Options.ByObject[Object].Field and cache.Options.ByObject[Object].Label
      • cache.Options.UnsafeDisableDeepCopyByObject has been removed, use cache.Options.ByObject[Object].UnsafeDisableDeepCopy.
      • cache.Options.TransformByObject has been removed, use cache.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.
  • Add context to EventHandler(s) (#2139)
    • handler.EventHandler and handler.Funcs interfaces require context.Context as the first parameter for every method.
    • handler.MapFunc signature has changed and now requires a context.Context.
  • Add client.{GroupVersionKindFor, IsObjectNamespaced} (#2136)
    • The client.Client interface now requires and exposes these helper functions:

... (truncated)

Commits
  • 116a1b8 Merge pull request #2340 from kubernetes-sigs/dependabot/go_modules/github.co...
  • 96bf7c3 :seedling: Bump github.com/onsi/gomega from 1.27.6 to 1.27.7
  • f9a3164 Merge pull request #2338 from howardjohn/mod/bump-jsonpatch
  • 73ae72f :seedling: bump jsonpatch to v2.3.0
  • e7b9407 Merge pull request #2334 from sbueringer/pr-webhook-log-levels
  • babed98 Reduce webhook log verbosity
  • 260b822 Merge pull request #2333 from lucacome/tests-0.27.2
  • c8b911b Re-enable tests for v0.27.2
  • 1fe22d0 Merge pull request #2330 from lucacome/bump-k8s.io-deps
  • 0cc8dd8 Bump k8s.io dependencies
  • Additional commits viewable in compare view


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 commands and options
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
openshift-ci[bot] commented 11 months ago

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: dependabot[bot] Once this PR has been reviewed and has the lgtm label, please assign flavianmissi for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files: - **[OWNERS](https://github.com/quay/quay-bridge-operator/blob/master/OWNERS)** Approvers can indicate their approval by writing `/approve` in a comment Approvers can cancel approval by writing `/approve cancel` in a comment
openshift-ci[bot] commented 11 months ago

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a quay member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available [here](https://git.k8s.io/community/contributors/guide/pull-requests.md). If you have questions or suggestions related to my behavior, please file an issue against the [kubernetes/test-infra](https://github.com/kubernetes/test-infra/issues/new?title=Prow%20issue:) repository.
dependabot[bot] commented 11 months ago

Superseded by #78.