Skip to content
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

✨ Bump to v1.17.2 #47

Closed
wants to merge 204 commits into from
Closed

✨ Bump to v1.17.2 #47

wants to merge 204 commits into from

Commits on Aug 28, 2023

  1. 🌱 Bump k8s.io/apiserver from 0.28.0 to 0.28.1

    Bumps [k8s.io/apiserver](https://github.com/kubernetes/apiserver) from 0.28.0 to 0.28.1.
    - [Commits](kubernetes/apiserver@v0.28.0...v0.28.1)
    
    ---
    updated-dependencies:
    - dependency-name: k8s.io/apiserver
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Aug 28, 2023
    Configuration menu
    Copy the full SHA
    3c9775c View commit details
    Browse the repository at this point in the history
  2. 🌱 Bump github.com/onsi/ginkgo/v2 from 2.11.0 to 2.12.0

    Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.11.0 to 2.12.0.
    - [Release notes](https://github.com/onsi/ginkgo/releases)
    - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
    - [Commits](onsi/ginkgo@v2.11.0...v2.12.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/ginkgo/v2
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Aug 28, 2023
    Configuration menu
    Copy the full SHA
    d8712d0 View commit details
    Browse the repository at this point in the history
  3. Update generated code

    dependabot[bot] committed Aug 28, 2023
    Configuration menu
    Copy the full SHA
    3bf7f5d View commit details
    Browse the repository at this point in the history
  4. Update generated code

    dependabot[bot] committed Aug 28, 2023
    Configuration menu
    Copy the full SHA
    b34a22b View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2023

  1. Proposal for dynamic informer cache

    This PR shows how Gatekeeper has forked controller runtime
    to support the dynamic addition/removal of informers.
    
    Happy to flesh this out if people are interested. Not sure
    what the correct licensing actions are for moving code across CNCF
    projects.
    
    Fix lint error
    
    Signed-off-by: Max Smythe <smythe@google.com>
    
    Move mergeChan; add functional opts
    
    Signed-off-by: Max Smythe <smythe@google.com>
    
    Refactor functional parameters
    
    Signed-off-by: Max Smythe <smythe@google.com>
    
    Fix tests; refactor options type visibility
    
    Signed-off-by: Max Smythe <smythe@google.com>
    
    More interface changes
    
    Signed-off-by: Max Smythe <smythe@google.com>
    
    Fix lint
    
    Signed-off-by: Max Smythe <smythe@google.com>
    
    Add ginkgo so test flags are recognized
    
    Signed-off-by: Max Smythe <smythe@google.com>
    
    Split out non-blocking-get options; block on cancel
    
    Signed-off-by: Max Smythe <smythe@google.com>
    
    Add tests for removing informers
    
    Signed-off-by: Max Smythe <smythe@google.com>
    
    Fix missing newline
    
    Signed-off-by: Max Smythe <smythe@google.com>
    
    Oops, no newline
    
    Signed-off-by: Max Smythe <smythe@google.com>
    maxsmythe committed Aug 29, 2023
    Configuration menu
    Copy the full SHA
    bc35946 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f4dbd14 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2458 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/onsi/ginkgo/v2-2.12.0
    
    🌱 Bump github.com/onsi/ginkgo/v2 from 2.11.0 to 2.12.0
    k8s-ci-robot committed Aug 29, 2023
    Configuration menu
    Copy the full SHA
    b522d7e View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2457 from kubernetes-sigs/dependab…

    …ot/go_modules/k8s.io/apiserver-0.28.1
    
    🌱 Bump k8s.io/apiserver from 0.28.0 to 0.28.1
    k8s-ci-robot committed Aug 29, 2023
    Configuration menu
    Copy the full SHA
    aa9f8c9 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2023

  1. add corev1, coordinationv1 scheme for leader election when LeaderElec…

    …tion option is true
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    troy0820 committed Aug 30, 2023
    Configuration menu
    Copy the full SHA
    e92e5ee View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

  1. Merge pull request kubernetes-sigs#2461 from troy0820/troy0820/add-ty…

    …pes-to-leader-election
    
     🐛Add corev1, coordinationv1 scheme for leader election when LeaderElection manager option is true
    k8s-ci-robot committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    c1d71fc View commit details
    Browse the repository at this point in the history
  2. Refactor tests to drop hard otel dependency

    Since v0.16.0 (kubernetes-sigs#2407), there is an import for all users of various
    opentelemetry libraries. This is caused by manager test ->
    pkg/metrics/filters -> k8s.io/apiserver -> otel-go.
    
    The issue is API server users a otel-go library from >1 year ago. This
    makes it impossible to import a modern otel-go library and a modern
    controller-runtime library together.
    
    Go is unable to prune the dependency *even though its only used in
    tests* (TBH, this surprised me!). By moving the tests that use
    `filters` under the `filters` package, though, this drops the required
    dependency on otel-go. Users that import the `filters` package will use
    it, of course, but everyone does not need to.
    
    So basically this refactors tests, but has user facing changes -- fewer
    dependencies are required to import controller-runtime core, allowing
    using the newer controller-runtime with newer otel-go.
    
    In parallel I will attempt to get k/k to update their otel-go version,
    but this will take months to ship at the earliest. IMO, this is worth
    fixing in the meantime as a v0.16.x patch.
    howardjohn committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    d17751f View commit details
    Browse the repository at this point in the history
  3. use http client from leaderElectionConfig

    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    troy0820 committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    b9d662b View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2460 from howardjohn/16/drop-otel

    🐛 Refactor tests to drop hard otel dependency
    k8s-ci-robot committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    4332e3a View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. Merge pull request kubernetes-sigs#2464 from troy0820/troy0820/leader…

    …-election-httpClient
    
    🐛 Use http client from leaderElectionConfig
    k8s-ci-robot committed Sep 1, 2023
    Configuration menu
    Copy the full SHA
    1449c36 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2023

  1. 🌱 Bump actions/checkout from 3 to 4

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    4d071f5 View commit details
    Browse the repository at this point in the history
  2. 🌱 Bump golang.org/x/sys from 0.11.0 to 0.12.0

    Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.11.0 to 0.12.0.
    - [Commits](golang/sys@v0.11.0...v0.12.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sys
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    34bab8c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2c87bd6 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2023

  1. Merge pull request kubernetes-sigs#2469 from kubernetes-sigs/dependab…

    …ot/github_actions/actions/checkout-4
    
    🌱 Bump actions/checkout from 3 to 4
    k8s-ci-robot committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    a1808ae View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2470 from kubernetes-sigs/dependab…

    …ot/go_modules/golang.org/x/sys-0.12.0
    
    🌱 Bump golang.org/x/sys from 0.11.0 to 0.12.0
    k8s-ci-robot committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    2a553d6 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

  1. Configuration menu
    Copy the full SHA
    26a23a9 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2023

  1. 🐛 Default namespace only for namespaced object (kubernetes-sigs#2480)

    * Default namespace only for namespaced object
    
    * Add test
    acumino committed Sep 9, 2023
    Configuration menu
    Copy the full SHA
    3cff062 View commit details
    Browse the repository at this point in the history
  2. 🐛 Do not update anything but status when using subresource client (ku…

    …bernetes-sigs#2479)
    
    * update subresource client to not incude metadata
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    
    * Test showing labels and annotations stored during fake client.Status().Update()
    
    * add test case to show it will not override other status fields when updating
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    
    * delete copyNonStatusFrom function, change test case description
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    
    ---------
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    Co-authored-by: Adam Berlin <aberlin@vmware.com>
    troy0820 and berlin-ab committed Sep 9, 2023
    Configuration menu
    Copy the full SHA
    14d669d View commit details
    Browse the repository at this point in the history
  3. 🐛 Fix status subresource getting updated on Update when it is empty

    Before this, Update and Patch requests will override to-level status
    fields for objects that have a status resource if the status was
    initially empty.
    
    This happens because the code to set the status to what we already have
    in the unupdated object converts the object into a `map[string]any`
    using json serialization/deserialization, copies the original `status`
    field, then converts back. The json deserializer unfortunatelly does not
    properly clear the target, allowing data to remain that is absent in the
    json serialization.
    alvaroaleman committed Sep 9, 2023
    Configuration menu
    Copy the full SHA
    e368149 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2484 from kubernetes-sigs/status-z…

    …eroing
    
    🐛 Fix status subresource getting updated on Update when it is empty
    k8s-ci-robot committed Sep 9, 2023
    Configuration menu
    Copy the full SHA
    9dd4fc7 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2023

  1. 🐛 Fix returning object after status update (kubernetes-sigs#2489)

    * Draft: Test that an object is updatable after updating its status.
    
    * Draft: ensure we udpate the new obj's accessor's ResourceVersion after doing the deep copy
    
    * Rework code to pass object back on status update
    
    ---------
    
    Co-authored-by: Adam Berlin <aberlin@vmware.com>
    alvaroaleman and berlin-ab committed Sep 10, 2023
    Configuration menu
    Copy the full SHA
    422c831 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. Merge pull request kubernetes-sigs#2472 from porridge/fix-2354

    🐛 Return NoResourceMatchError when appropriate for backwards compatibility.
    k8s-ci-robot committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    482dd1a View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2023

  1. create RemoveOwnerReference function in controllerutil

    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    troy0820 committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    1eb9a0c View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2462 from troy0820/troy0820/add-re…

    …move-owner-reference-function
    
    🌱 Create `RemoveOwnerReference` function in controllerutil to remove owner references from objects
    k8s-ci-robot committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    8117577 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2023

  1. Configuration menu
    Copy the full SHA
    8659251 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2497 from feiyudev/main

    📖 fix a grammer mistake in comment
    k8s-ci-robot committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    f1c940e View commit details
    Browse the repository at this point in the history
  3. 🌱 Bump k8s.io/apiserver from 0.28.1 to 0.28.2

    Bumps [k8s.io/apiserver](https://github.com/kubernetes/apiserver) from 0.28.1 to 0.28.2.
    - [Commits](kubernetes/apiserver@v0.28.1...v0.28.2)
    
    ---
    updated-dependencies:
    - dependency-name: k8s.io/apiserver
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    f6b27aa View commit details
    Browse the repository at this point in the history
  4. 🌱 Bump go.uber.org/zap from 1.25.0 to 1.26.0

    Bumps [go.uber.org/zap](https://github.com/uber-go/zap) from 1.25.0 to 1.26.0.
    - [Release notes](https://github.com/uber-go/zap/releases)
    - [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
    - [Commits](uber-go/zap@v1.25.0...v1.26.0)
    
    ---
    updated-dependencies:
    - dependency-name: go.uber.org/zap
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    fedf013 View commit details
    Browse the repository at this point in the history
  5. Update generated code

    dependabot[bot] committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    4929d89 View commit details
    Browse the repository at this point in the history
  6. Update generated code

    dependabot[bot] committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    55cb36f View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2023

  1. Merge pull request kubernetes-sigs#2500 from kubernetes-sigs/dependab…

    …ot/go_modules/k8s.io/apiserver-0.28.2
    
    🌱 Bump k8s.io/apiserver from 0.28.1 to 0.28.2
    k8s-ci-robot committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    9ac9a6c View commit details
    Browse the repository at this point in the history
  2. 🌱 Bump github.com/evanphx/json-patch/v5 from 5.6.0 to 5.7.0

    Bumps [github.com/evanphx/json-patch/v5](https://github.com/evanphx/json-patch) from 5.6.0 to 5.7.0.
    - [Release notes](https://github.com/evanphx/json-patch/releases)
    - [Commits](evanphx/json-patch@v5.6.0...v5.7.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/evanphx/json-patch/v5
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    e9ee15e View commit details
    Browse the repository at this point in the history
  3. Update generated code

    dependabot[bot] committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    e3b9bc9 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2499 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/evanphx/json-patch/v5-5.7.0
    
    🌱 Bump github.com/evanphx/json-patch/v5 from 5.6.0 to 5.7.0
    k8s-ci-robot committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    cda3b29 View commit details
    Browse the repository at this point in the history
  5. 🌱 Bump github.com/evanphx/json-patch

    Bumps [github.com/evanphx/json-patch](https://github.com/evanphx/json-patch) from 5.6.0+incompatible to 5.7.0+incompatible.
    - [Release notes](https://github.com/evanphx/json-patch/releases)
    - [Commits](evanphx/json-patch@v5.6.0...v5.7.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/evanphx/json-patch
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    1ca7aaf View commit details
    Browse the repository at this point in the history
  6. Update generated code

    dependabot[bot] committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    88e62e2 View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes-sigs#2502 from kubernetes-sigs/dependab…

    …ot/go_modules/go.uber.org/zap-1.26.0
    
    🌱 Bump go.uber.org/zap from 1.25.0 to 1.26.0
    k8s-ci-robot committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    e520ca9 View commit details
    Browse the repository at this point in the history
  8. Merge pull request kubernetes-sigs#2501 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/evanphx/json-patch-5.7.0incompatible
    
    🌱 Bump github.com/evanphx/json-patch from 5.6.0+incompatible to 5.7.0+incompatible
    k8s-ci-robot committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    d5bc873 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2023

  1. update dependency go-restful to 3.11.0

    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    troy0820 committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    d80e33f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3499c8f View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2507 from troy0820/troy0820/update…

    …-go-restful
    
    🐛Update dependency go-restful to 3.11.0
    k8s-ci-robot committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    af3afdb View commit details
    Browse the repository at this point in the history
  4. Add test

    acumino committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    6288e08 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2023

  1. add function RemoveControllerReference and HasControllerReference to …

    …controllerutil
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    troy0820 committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    da41833 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2023

  1. Merge pull request kubernetes-sigs#2508 from acumino/fake-client-sub

     🐛 Correctly identify if patch call was made on status
    k8s-ci-robot committed Sep 24, 2023
    Configuration menu
    Copy the full SHA
    dcf55bd View commit details
    Browse the repository at this point in the history
  2. ✨ SetErrorWatchHandler on SharedIndexInformer (kubernetes-sigs#2494)

    * add SetErrorWatchHandler to informers
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    
    * pass watchErrorHandler through Options struct
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    
    ---------
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    troy0820 committed Sep 24, 2023
    Configuration menu
    Copy the full SHA
    bb09db8 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2023

  1. 🌱 Bump github.com/onsi/ginkgo/v2 from 2.12.0 to 2.12.1

    Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.12.0 to 2.12.1.
    - [Release notes](https://github.com/onsi/ginkgo/releases)
    - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
    - [Commits](onsi/ginkgo@v2.12.0...v2.12.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/ginkgo/v2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Sep 25, 2023
    Configuration menu
    Copy the full SHA
    c74c3b6 View commit details
    Browse the repository at this point in the history
  2. Update generated code

    dependabot[bot] committed Sep 25, 2023
    Configuration menu
    Copy the full SHA
    6324b03 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2023

  1. 📖 Add more examples in documentation (kubernetes-sigs#2498)

    * Add more examples in documentation
    
    * update examples after review
    aerfio committed Sep 26, 2023
    Configuration menu
    Copy the full SHA
    e787eaa View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2514 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/onsi/ginkgo/v2-2.12.1
    
    🌱 Bump github.com/onsi/ginkgo/v2 from 2.12.0 to 2.12.1
    k8s-ci-robot committed Sep 26, 2023
    Configuration menu
    Copy the full SHA
    c93e2ab View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2023

  1. Bump go-apidiff

    It brings the fix for go-git/go-git#500
    acumino committed Sep 27, 2023
    Configuration menu
    Copy the full SHA
    8fa179d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    553bd00 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2023

  1. 🌱 Bump github.com/prometheus/client_golang

    Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.16.0 to 1.17.0.
    - [Release notes](https://github.com/prometheus/client_golang/releases)
    - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
    - [Commits](prometheus/client_golang@v1.16.0...v1.17.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/prometheus/client_golang
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 2, 2023
    Configuration menu
    Copy the full SHA
    4318954 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c61743e View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2023

  1. 🐛 Handle unstructured status update with fake client (kubernetes-sigs…

    …#2495)
    
    * Handle unstructured status update with fake client
    
    In order to prevent unintentional mutations outside of the status during
    a status update, the non-status fields are copied back onto the passed
    object.
    
    This operation now gracefully handles both unstructured and typed
    objects. Previously, it would panic if an unstructured object was passed
    for a GVK known to the scheme, as internally the object within the
    tracker is converted to the typed equivalent. The two types cannot
    be directly assigned to each other and instead must be copied.
    
    Signed-off-by: Scott Andrews <andrewssc@vmware.com>
    
    * Review feedback
    
    Using typed objects for the initial and actual object content assertion.
    Unstructured objects are only used for the update.
    
    Signed-off-by: Scott Andrews <andrewssc@vmware.com>
    
    ---------
    
    Signed-off-by: Scott Andrews <andrewssc@vmware.com>
    scothis committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    067b29f View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2520 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/prometheus/client_golang-1.17.0
    
    🌱 Bump github.com/prometheus/client_golang from 1.16.0 to 1.17.0
    k8s-ci-robot committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    d3adb4a View commit details
    Browse the repository at this point in the history
  3. 🌱 Bump github.com/onsi/gomega from 1.27.10 to 1.28.0

    Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.27.10 to 1.28.0.
    - [Release notes](https://github.com/onsi/gomega/releases)
    - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
    - [Commits](onsi/gomega@v1.27.10...v1.28.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/gomega
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    7e78108 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ec5614a View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#2521 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/onsi/gomega-1.28.0
    
    🌱 Bump github.com/onsi/gomega from 1.27.10 to 1.28.0
    k8s-ci-robot committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    2764d1d View commit details
    Browse the repository at this point in the history
  6. 🐛 envtest: CRDs that aren't convertible should unset spec.conversion

    Signed-off-by: Vince Prignano <vincepri@redhat.com>
    vincepri committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    bb023ca View commit details
    Browse the repository at this point in the history
  7. Merge pull request kubernetes-sigs#2525 from vincepri/webhook-crd-con…

    …vertible-fix
    
    🐛 envtest: CRDs that aren't convertible should unset spec.conversion
    k8s-ci-robot committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    5771399 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2023

  1. fix: goroutine leak

    0xff-dev committed Oct 7, 2023
    Configuration menu
    Copy the full SHA
    f2fcfbb View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2509 from troy0820/troy0820/hascon…

    …trollerreference
    
    🌱 Add function RemoveControllerReference and HasControllerReference
    k8s-ci-robot committed Oct 7, 2023
    Configuration menu
    Copy the full SHA
    65ba74b View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2517 from acumino/bump-dep

    🏃 Upgrade dependencies for hack/tools and tools/
    k8s-ci-robot committed Oct 7, 2023
    Configuration menu
    Copy the full SHA
    86a2e50 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2023

  1. Merge pull request kubernetes-sigs#2527 from 0xff-dev/main

    🐛 fix: goroutine leak
    k8s-ci-robot committed Oct 8, 2023
    Configuration menu
    Copy the full SHA
    d94cf60 View commit details
    Browse the repository at this point in the history
  2. ✨ Cache: Allow defining options that apply to all namespaces that the…

    …mselves have no explicit config
    
    This change allows to define a cache selector config that applies to all
    namespaces that themselves do not have an explicit config. An example
    would be "Cache all namespaces without selector, except for namespace
    foo, there use labelSelector bar=baz".
    
    More as a side effect than intentionally, this also makes it valid to use
    the empty string as a key in the `Namespaces` and `byObject.Namespaces`
    config of the cache. This is very useful to for example have a
    `namespace` CLI flag that might be empty.
    
    This change is the last missing bit to finish the implementation of the
    [cache options design doc](./designs/cache_options.md).
    alvaroaleman committed Oct 8, 2023
    Configuration menu
    Copy the full SHA
    414b86e View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2528 from kubernetes-sigs/allow-al…

    …l-but
    
    ✨ Cache: Allow defining options that apply to all namespaces that themselves have no explicit config
    k8s-ci-robot committed Oct 8, 2023
    Configuration menu
    Copy the full SHA
    968daa8 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. 🏃 Make client.MatchingLabels faster

    The 99% use-case of this is to set a selector, not to adjust an existing
    one. This change introduces a fastpath that does that with half the
    allocations and in a bit less than half the time.
    
    The reason slowpath is slow is that for each label a requirement has to
    be constructed that is then appended to a slice, both of which cause
    allocations.
    alvaroaleman committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    cb5be1f View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2529 from kubernetes-sigs/speed-up

    🏃 Make client.MatchingLabels faster
    k8s-ci-robot committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    8ac8b9f View commit details
    Browse the repository at this point in the history
  3. 🌱 Bump envtest to 1.28.0 (kubernetes-sigs#2531)

    * bump envtest to 1.28.0
    
    * v2beta1 was removed in 1.25
    xrstf committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    642ae7e View commit details
    Browse the repository at this point in the history
  4. 🌱 Bump kubernetes-sigs/kubebuilder-release-tools

    Bumps [kubernetes-sigs/kubebuilder-release-tools](https://github.com/kubernetes-sigs/kubebuilder-release-tools) from 0.3.0 to 0.4.0.
    - [Release notes](https://github.com/kubernetes-sigs/kubebuilder-release-tools/releases)
    - [Changelog](https://github.com/kubernetes-sigs/kubebuilder-release-tools/blob/master/RELEASE.md)
    - [Commits](kubernetes-sigs/kubebuilder-release-tools@v0.3.0...v0.4.0)
    
    ---
    updated-dependencies:
    - dependency-name: kubernetes-sigs/kubebuilder-release-tools
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    69b4c1f View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#2532 from kubernetes-sigs/dependab…

    …ot/github_actions/kubernetes-sigs/kubebuilder-release-tools-0.4.0
    
    🌱 Bump kubernetes-sigs/kubebuilder-release-tools from 0.3.0 to 0.4.0
    k8s-ci-robot committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    e83e8ec View commit details
    Browse the repository at this point in the history
  6. 🌱 Bump golang.org/x/sys from 0.12.0 to 0.13.0 (kubernetes-sigs#2533)

    * 🌱 Bump golang.org/x/sys from 0.12.0 to 0.13.0
    
    Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.12.0 to 0.13.0.
    - [Commits](golang/sys@v0.12.0...v0.13.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sys
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    * Update generated code
    
    ---------
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    249ab0e View commit details
    Browse the repository at this point in the history
  7. 🌱 Bump github.com/onsi/ginkgo/v2 from 2.12.1 to 2.13.0 (kubernetes-si…

    …gs#2534)
    
    * 🌱 Bump github.com/onsi/ginkgo/v2 from 2.12.1 to 2.13.0
    
    Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.12.1 to 2.13.0.
    - [Release notes](https://github.com/onsi/ginkgo/releases)
    - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
    - [Commits](onsi/ginkgo@v2.12.1...v2.13.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/ginkgo/v2
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    * Update generated code
    
    ---------
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    0f07539 View commit details
    Browse the repository at this point in the history
  8. 🌱 Bump github.com/prometheus/client_model from 0.4.1-0.20230718164431…

    …-9a2bf3000d16 to 0.5.0 (kubernetes-sigs#2535)
    
    * 🌱 Bump github.com/prometheus/client_model
    
    Bumps [github.com/prometheus/client_model](https://github.com/prometheus/client_model) from 0.4.1-0.20230718164431-9a2bf3000d16 to 0.5.0.
    - [Release notes](https://github.com/prometheus/client_model/releases)
    - [Commits](https://github.com/prometheus/client_model/commits/v0.5.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/prometheus/client_model
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    * Update generated code
    
    ---------
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    e39539c View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

  1. client: client.MatchingFields support multiple indexes (kubernetes-si…

    …gs#2512)
    
    add support for multiple indexes when using client.MatchingFields
    halfcrazy committed Oct 10, 2023
    Configuration menu
    Copy the full SHA
    78b3ce6 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. deps: bump golang.org/x/net to 0.17.0

    Signed-off-by: Joe Lanford <joe.lanford@gmail.com>
    joelanford committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    949a418 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2540 from joelanford/bump-golang-x…

    …-net
    
    🐛 deps: bump golang.org/x/net to 0.17.0
    k8s-ci-robot committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    e25aeeb View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2023

  1. 📖Update go version in setupenv-test README. Update release-notes lin…

    …k in RELEASE (kubernetes-sigs#2538)
    
    * update go version on setupenv-test README
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    
    * fix release notes link
    
    ---------
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    troy0820 committed Oct 15, 2023
    Configuration menu
    Copy the full SHA
    bf15e44 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

  1. 🌱 Bump github.com/google/go-cmp from 0.5.9 to 0.6.0

    Bumps [github.com/google/go-cmp](https://github.com/google/go-cmp) from 0.5.9 to 0.6.0.
    - [Release notes](https://github.com/google/go-cmp/releases)
    - [Commits](google/go-cmp@v0.5.9...v0.6.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/google/go-cmp
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    7dddccd View commit details
    Browse the repository at this point in the history
  2. Update generated code

    dependabot[bot] committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    0361068 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2023

  1. Merge pull request kubernetes-sigs#2545 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/google/go-cmp-0.6.0
    
    🌱 Bump github.com/google/go-cmp from 0.5.9 to 0.6.0
    k8s-ci-robot committed Oct 17, 2023
    Configuration menu
    Copy the full SHA
    aa53499 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. [fix]: Bump k8s to 1.28.3

    Bumps k8s depedencies to use 0.28.3 patch release as it contains fixes for http2 rapid reset CVE
    
    Signed-off-by: Varsha Prasad Narsing <varshaprasad96@gmail.com>
    varshaprasad96 committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    1b74135 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2553 from varshaprasad96/bump/k8s-…

    …1.28.3-main
    
    🌱 Bump k8s to 1.28.3
    k8s-ci-robot committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    c033388 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. envtest: allow to ignore scheme.Convertible check for CRDs

    Signed-off-by: Vince Prignano <vincepri@redhat.com>
    vincepri committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    70141d0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2555 from vincepri/add-flag-ignore…

    …-convertible
    
    🌱 envtest: allow to ignore scheme.Convertible check for CRDs
    k8s-ci-robot committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    15d7928 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2023

  1. envtest: improve process cleanup

    When envtest creates new processes, it wasn't setting the process group
    to the parent, when the main process is killed or it panics, all the
    other processes are orphaned, and need to be killed separately.
    
    In addition, if for some reason we can't shutdown a process cleanly, we
    should try to SIGKILL before returning from Stop.
    
    Signed-off-by: Vince Prignano <vincepri@redhat.com>
    vincepri committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    b10b858 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2285 from maxsmythe/dynamic-inform…

    …er-cache
    
    🌱 Proposal for dynamic informer cache
    k8s-ci-robot committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    cc2a25b View commit details
    Browse the repository at this point in the history
  3. 🌱 Bump github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0

    Bumps [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) from 1.6.0 to 1.7.0.
    - [Release notes](https://github.com/fsnotify/fsnotify/releases)
    - [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
    - [Commits](fsnotify/fsnotify@v1.6.0...v1.7.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/fsnotify/fsnotify
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    8d7bcba View commit details
    Browse the repository at this point in the history
  4. 🌱 Bump github.com/onsi/gomega from 1.28.0 to 1.28.1

    Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.28.0 to 1.28.1.
    - [Release notes](https://github.com/onsi/gomega/releases)
    - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
    - [Commits](onsi/gomega@v1.28.0...v1.28.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/gomega
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    f7830dc View commit details
    Browse the repository at this point in the history
  5. Update generated code

    dependabot[bot] committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    2b6e706 View commit details
    Browse the repository at this point in the history
  6. Update generated code

    dependabot[bot] committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    9788c6c View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Merge pull request kubernetes-sigs#2561 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/fsnotify/fsnotify-1.7.0
    
    🌱 Bump github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0
    k8s-ci-robot committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    a3f8142 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2562 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/onsi/gomega-1.28.1
    
    🌱 Bump github.com/onsi/gomega from 1.28.0 to 1.28.1
    k8s-ci-robot committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    f1c5dd3 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2023

  1. Merge pull request kubernetes-sigs#2560 from vincepri/better-cleanup

    🌱 envtest: improve process cleanup
    k8s-ci-robot committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    658c552 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2023

  1. 🌱 Bump github.com/go-logr/logr from 1.2.4 to 1.3.0

    Bumps [github.com/go-logr/logr](https://github.com/go-logr/logr) from 1.2.4 to 1.3.0.
    - [Release notes](https://github.com/go-logr/logr/releases)
    - [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
    - [Commits](go-logr/logr@v1.2.4...v1.3.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/go-logr/logr
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    70cb17d View commit details
    Browse the repository at this point in the history
  2. 🌱 Bump sigs.k8s.io/yaml from 1.3.0 to 1.4.0

    Bumps [sigs.k8s.io/yaml](https://github.com/kubernetes-sigs/yaml) from 1.3.0 to 1.4.0.
    - [Release notes](https://github.com/kubernetes-sigs/yaml/releases)
    - [Changelog](https://github.com/kubernetes-sigs/yaml/blob/master/RELEASE.md)
    - [Commits](kubernetes-sigs/yaml@v1.3.0...v1.4.0)
    
    ---
    updated-dependencies:
    - dependency-name: sigs.k8s.io/yaml
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    0d006aa View commit details
    Browse the repository at this point in the history
  3. 🌱 Bump go.uber.org/goleak from 1.2.1 to 1.3.0

    Bumps [go.uber.org/goleak](https://github.com/uber-go/goleak) from 1.2.1 to 1.3.0.
    - [Release notes](https://github.com/uber-go/goleak/releases)
    - [Changelog](https://github.com/uber-go/goleak/blob/master/CHANGELOG.md)
    - [Commits](uber-go/goleak@v1.2.1...v1.3.0)
    
    ---
    updated-dependencies:
    - dependency-name: go.uber.org/goleak
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    70ea3a5 View commit details
    Browse the repository at this point in the history
  4. Update generated code

    dependabot[bot] committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    8d6a6aa View commit details
    Browse the repository at this point in the history
  5. Update generated code

    dependabot[bot] committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    58d5fae View commit details
    Browse the repository at this point in the history
  6. Update generated code

    dependabot[bot] committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    1ac68a5 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Merge pull request kubernetes-sigs#2569 from kubernetes-sigs/dependab…

    …ot/go_modules/go.uber.org/goleak-1.3.0
    
    🌱 Bump go.uber.org/goleak from 1.2.1 to 1.3.0
    k8s-ci-robot committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    e6926ab View commit details
    Browse the repository at this point in the history
  2. 🌱 Bump github.com/onsi/gomega from 1.28.1 to 1.29.0

    Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.28.1 to 1.29.0.
    - [Release notes](https://github.com/onsi/gomega/releases)
    - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
    - [Commits](onsi/gomega@v1.28.1...v1.29.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/gomega
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    bda8c64 View commit details
    Browse the repository at this point in the history
  3. Update generated code

    dependabot[bot] committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    c787851 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2567 from kubernetes-sigs/dependab…

    …ot/go_modules/sigs.k8s.io/yaml-1.4.0
    
    🌱 Bump sigs.k8s.io/yaml from 1.3.0 to 1.4.0
    k8s-ci-robot committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    1951b40 View commit details
    Browse the repository at this point in the history
  5. Merge pull request kubernetes-sigs#2568 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/onsi/gomega-1.29.0
    
    🌱 Bump github.com/onsi/gomega from 1.28.1 to 1.29.0
    k8s-ci-robot committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    edb7fe9 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2023

  1. Merge pull request kubernetes-sigs#2566 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/go-logr/logr-1.3.0
    
    🌱 Bump github.com/go-logr/logr from 1.2.4 to 1.3.0
    k8s-ci-robot committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    c30c66d View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. 🌱 Bump golang.org/x/sys from 0.13.0 to 0.14.0

    Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.13.0 to 0.14.0.
    - [Commits](golang/sys@v0.13.0...v0.14.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sys
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    994963b View commit details
    Browse the repository at this point in the history
  2. 🌱 Bump k8s.io/klog/v2 from 2.100.1 to 2.110.1

    Bumps [k8s.io/klog/v2](https://github.com/kubernetes/klog) from 2.100.1 to 2.110.1.
    - [Release notes](https://github.com/kubernetes/klog/releases)
    - [Changelog](https://github.com/kubernetes/klog/blob/main/RELEASE.md)
    - [Commits](kubernetes/klog@v2.100.1...v2.110.1)
    
    ---
    updated-dependencies:
    - dependency-name: k8s.io/klog/v2
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    3877360 View commit details
    Browse the repository at this point in the history
  3. 🌱 Bump github.com/go-logr/zapr from 1.2.4 to 1.3.0

    Bumps [github.com/go-logr/zapr](https://github.com/go-logr/zapr) from 1.2.4 to 1.3.0.
    - [Release notes](https://github.com/go-logr/zapr/releases)
    - [Commits](go-logr/zapr@v1.2.4...v1.3.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/go-logr/zapr
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    23d8c97 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    447263f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2d884e4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fd35c3e View commit details
    Browse the repository at this point in the history
  7. 🌱 Bump kubernetes-sigs/kubebuilder-release-tools

    Bumps [kubernetes-sigs/kubebuilder-release-tools](https://github.com/kubernetes-sigs/kubebuilder-release-tools) from 0.4.0 to 0.4.2.
    - [Release notes](https://github.com/kubernetes-sigs/kubebuilder-release-tools/releases)
    - [Changelog](https://github.com/kubernetes-sigs/kubebuilder-release-tools/blob/master/RELEASE.md)
    - [Commits](kubernetes-sigs/kubebuilder-release-tools@v0.4.0...v0.4.2)
    
    ---
    updated-dependencies:
    - dependency-name: kubernetes-sigs/kubebuilder-release-tools
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    cc4b3d6 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Merge pull request kubernetes-sigs#2572 from kubernetes-sigs/dependab…

    …ot/go_modules/golang.org/x/sys-0.14.0
    
    🌱 Bump golang.org/x/sys from 0.13.0 to 0.14.0
    k8s-ci-robot committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    4fd8d38 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2573 from kubernetes-sigs/dependab…

    …ot/go_modules/k8s.io/klog/v2-2.110.1
    
    🌱 Bump k8s.io/klog/v2 from 2.100.1 to 2.110.1
    k8s-ci-robot committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    0fb2940 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2574 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/go-logr/zapr-1.3.0
    
    🌱 Bump github.com/go-logr/zapr from 1.2.4 to 1.3.0
    k8s-ci-robot committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    9f9f369 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Merge pull request kubernetes-sigs#2575 from kubernetes-sigs/dependab…

    …ot/github_actions/kubernetes-sigs/kubebuilder-release-tools-0.4.2
    
    🌱 Bump kubernetes-sigs/kubebuilder-release-tools from 0.4.0 to 0.4.2
    k8s-ci-robot committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    818a2e1 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. 🌱 Bump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.1

    Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.13.0 to 2.13.1.
    - [Release notes](https://github.com/onsi/ginkgo/releases)
    - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
    - [Commits](onsi/ginkgo@v2.13.0...v2.13.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/ginkgo/v2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    48b5aa2 View commit details
    Browse the repository at this point in the history
  2. Update generated code

    dependabot[bot] committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    8f256a5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2578 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/onsi/ginkgo/v2-2.13.1
    
    🌱 Bump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.1
    k8s-ci-robot committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    d8f8012 View commit details
    Browse the repository at this point in the history
  4. 🌱 Bump github.com/onsi/gomega from 1.29.0 to 1.30.0

    Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.29.0 to 1.30.0.
    - [Release notes](https://github.com/onsi/gomega/releases)
    - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
    - [Commits](onsi/gomega@v1.29.0...v1.30.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/gomega
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    6c6cbc4 View commit details
    Browse the repository at this point in the history
  5. Update generated code

    dependabot[bot] committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    15d3d31 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. Merge pull request kubernetes-sigs#2579 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/onsi/gomega-1.30.0
    
    🌱 Bump github.com/onsi/gomega from 1.29.0 to 1.30.0
    k8s-ci-robot committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    b81fc66 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2023

  1. replace k8s.io/utils/pointer with k8s.io/utils/ptr

    Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
    inteon committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    3ddde48 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Merge pull request kubernetes-sigs#2488 from inteon/upgrade_dependencies

    ✨Replace k8s.io/utils/pointer with k8s.io/utils/ptr
    k8s-ci-robot committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    53cd67b View commit details
    Browse the repository at this point in the history
  2. 🌱 Bump k8s.io/apiserver from 0.28.3 to 0.28.4

    Bumps [k8s.io/apiserver](https://github.com/kubernetes/apiserver) from 0.28.3 to 0.28.4.
    - [Commits](kubernetes/apiserver@v0.28.3...v0.28.4)
    
    ---
    updated-dependencies:
    - dependency-name: k8s.io/apiserver
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    7296c20 View commit details
    Browse the repository at this point in the history
  3. Update generated code

    dependabot[bot] committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    693885d View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2588 from kubernetes-sigs/dependab…

    …ot/go_modules/k8s.io/apiserver-0.28.4
    
    🌱 Bump k8s.io/apiserver from 0.28.3 to 0.28.4
    k8s-ci-robot committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    2154ffb View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2023

  1. remove owner passed in to RemoveControlleReference only when that own…

    …er controller equals true
    
    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    troy0820 committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    9c4611e View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2023

  1. Configuration menu
    Copy the full SHA
    6981d11 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. 🌱 Bump golang.org/x/sys from 0.14.0 to 0.15.0 (kubernetes-sigs#2597)

    * 🌱 Bump golang.org/x/sys from 0.14.0 to 0.15.0
    
    Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.14.0 to 0.15.0.
    - [Commits](golang/sys@v0.14.0...v0.15.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sys
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    * Update generated code
    
    ---------
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    a50d5d7 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2023

  1. Fix komega godoc examples

    Signed-off-by: Erik Godding Boye <egboye@gmail.com>
    erikgb committed Dec 2, 2023
    Configuration menu
    Copy the full SHA
    ddba256 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2602 from erikgb/fix-komega-godoc-…

    …examples
    
    📖 Fix komega godoc examples
    k8s-ci-robot committed Dec 2, 2023
    Configuration menu
    Copy the full SHA
    1657cf6 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2023

  1. cleanup webhook variable assignment

    Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
    inteon committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    13c946d View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2604 from inteon/webhook_codecleanup

    ✨ Cleanup webhook variable assignment
    k8s-ci-robot committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    8d817e7 View commit details
    Browse the repository at this point in the history
  3. add missing NoBody handling

    Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
    inteon committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    cf7eab0 View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2605 from inteon/handle_empty_http…

    …_bodies
    
    🐛 Webhook: Handle http.NoBody
    k8s-ci-robot committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    0376af3 View commit details
    Browse the repository at this point in the history
  5. bump golang version in GH actions

    Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
    inteon committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    fc88f2b View commit details
    Browse the repository at this point in the history
  6. Merge pull request kubernetes-sigs#2609 from inteon/bump_golang_in_ci

    ✨Bump golang version in GH actions
    k8s-ci-robot committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    8fa865b View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. Merge pull request kubernetes-sigs#2599 from boseabhishek/main

    📖 Fix typo in Reconciler interface comment
    k8s-ci-robot committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    c2179ec View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2595 from troy0820/troy0820/remove…

    …-controller-ref-bug
    
     🐛Remove owner passed in to RemoveControllerReference
    k8s-ci-robot committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    1fe3341 View commit details
    Browse the repository at this point in the history
  3. 🌱 Bump github.com/onsi/ginkgo/v2 from 2.13.1 to 2.13.2

    Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.13.1 to 2.13.2.
    - [Release notes](https://github.com/onsi/ginkgo/releases)
    - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
    - [Commits](onsi/ginkgo@v2.13.1...v2.13.2)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/ginkgo/v2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    2643995 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4b1fbac View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Merge pull request kubernetes-sigs#2610 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/onsi/ginkgo/v2-2.13.2
    
    🌱 Bump github.com/onsi/ginkgo/v2 from 2.13.1 to 2.13.2
    k8s-ci-robot committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    1c599dd View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2023

  1. ⚠️ Drop DiscoveryRESTMapper

    The discovery restmapper was unused except for two places that we missed
    (when creating a cache directly as opposed through the manager and in a
    test). The discovery restmapper only ever loads mappings once during
    startup and is unable to reload them if they change. It also isn't lazy
    and we don't want anyone using it.
    alvaroaleman committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    cadc020 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2611 from alvaroaleman/drop-discov…

    …ery-restmapper
    
    ⚠️ Remove apiutil.NewDiscoveryRESTMapper, use DynamicRESTMapper by default for cache
    k8s-ci-robot committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    f0ccc08 View commit details
    Browse the repository at this point in the history
  3. ⚠️ Update k8s.io/* deps to 1.29-rc1

    This updates the various k8s.io/* deps to 1.29-rc1.
    alvaroaleman committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    b97744c View commit details
    Browse the repository at this point in the history
  4. Merge pull request kubernetes-sigs#2612 from alvaroaleman/update-129

    ⚠️ Update k8s.io/* deps to 1.29-rc1
    k8s-ci-robot committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    1ea2be5 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. Update k8s.kio/* deps to 1.29-rc2

    Signed-off-by: Stefan Büringer buringerst@vmware.com
    sbueringer committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    ee4d245 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2615 from sbueringer/pr-1.29-rc2

    ✨ Update k8s.kio/* deps to 1.29-rc2
    k8s-ci-robot committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    9b51cb5 View commit details
    Browse the repository at this point in the history
  3. 🌱 Bump actions/setup-go from 4 to 5

    Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5.
    - [Release notes](https://github.com/actions/setup-go/releases)
    - [Commits](actions/setup-go@v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-go
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    c18b8a8 View commit details
    Browse the repository at this point in the history
  4. 🌱 Bump kubernetes-sigs/kubebuilder-release-tools

    Bumps [kubernetes-sigs/kubebuilder-release-tools](https://github.com/kubernetes-sigs/kubebuilder-release-tools) from 0.4.2 to 0.4.3.
    - [Release notes](https://github.com/kubernetes-sigs/kubebuilder-release-tools/releases)
    - [Changelog](https://github.com/kubernetes-sigs/kubebuilder-release-tools/blob/master/RELEASE.md)
    - [Commits](kubernetes-sigs/kubebuilder-release-tools@v0.4.2...v0.4.3)
    
    ---
    updated-dependencies:
    - dependency-name: kubernetes-sigs/kubebuilder-release-tools
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    9193d0b View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. Merge pull request kubernetes-sigs#2617 from kubernetes-sigs/dependab…

    …ot/github_actions/actions/setup-go-5
    
    🌱 Bump actions/setup-go from 4 to 5
    k8s-ci-robot committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    76b5567 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2618 from kubernetes-sigs/dependab…

    …ot/github_actions/kubernetes-sigs/kubebuilder-release-tools-0.4.3
    
    🌱 Bump kubernetes-sigs/kubebuilder-release-tools from 0.4.2 to 0.4.3
    k8s-ci-robot committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    eeaa31c View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Update k8s.kio/* deps to 1.29

    Signed-off-by: Stefan Büringer buringerst@vmware.com
    sbueringer committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    52c391f View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2023

  1. Merge pull request kubernetes-sigs#2621 from sbueringer/pr-bump-to-1.29

    ✨ Update k8s.kio/* deps to 1.29
    k8s-ci-robot committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    4c4a90c View commit details
    Browse the repository at this point in the history
  2. add flowcontrol v1 for v1.29.0

    Signed-off-by: Troy Connor <troy0820@users.noreply.github.com>
    troy0820 committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    51d7681 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2623 from troy0820/troy0820/remove…

    …-flowcontrol-api
    
    ✨Add flowcontrol api v1 for Kubernetes v1.29.0
    k8s-ci-robot committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    1b80b96 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2023

  1. 🌱 Bump github.com/go-logr/logr from 1.3.0 to 1.4.1

    Bumps [github.com/go-logr/logr](https://github.com/go-logr/logr) from 1.3.0 to 1.4.1.
    - [Release notes](https://github.com/go-logr/logr/releases)
    - [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
    - [Commits](go-logr/logr@v1.3.0...v1.4.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/go-logr/logr
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Dec 25, 2023
    Configuration menu
    Copy the full SHA
    9f3bcfe View commit details
    Browse the repository at this point in the history
  2. Update generated code

    dependabot[bot] committed Dec 25, 2023
    Configuration menu
    Copy the full SHA
    cade5a7 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2024

  1. Merge pull request kubernetes-sigs#2630 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/go-logr/logr-1.4.1
    
    🌱 Bump github.com/go-logr/logr from 1.3.0 to 1.4.1
    k8s-ci-robot committed Jan 1, 2024
    Configuration menu
    Copy the full SHA
    68102dc View commit details
    Browse the repository at this point in the history
  2. 🌱 Bump github.com/prometheus/client_golang

    Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.17.0 to 1.18.0.
    - [Release notes](https://github.com/prometheus/client_golang/releases)
    - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
    - [Commits](prometheus/client_golang@v1.17.0...v1.18.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/prometheus/client_golang
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 1, 2024
    Configuration menu
    Copy the full SHA
    a4180fc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    86aad9f View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2024

  1. Merge pull request kubernetes-sigs#2632 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/prometheus/client_golang-1.18.0
    
    🌱 Bump github.com/prometheus/client_golang from 1.17.0 to 1.18.0
    k8s-ci-robot committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    5e8d572 View commit details
    Browse the repository at this point in the history
  2. ⚠️ RESTMapper: don't treat non-existing GroupVersions as errors (kube…

    …rnetes-sigs#2571)
    
    * Explicitly test for `No*MatchErrors`
    
    * RESTMapper: don't treat non-existing GroupVersions as errors
    
    ---------
    
    Co-authored-by: Tim Ebert <timebertt@gmail.com>
    ary1992 and timebertt committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    7f316f1 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

  1. ⚠️ Fakeclient: Only set TypeMeta for unstructured

    Currently, the fakeclient unconditionally sets metadata for all objects
    retrieved through it. This causes two problems:
    * It differs from the behavior of the real client, except for the cached
      one if `DeepCopy` is enabled and might lead ppl to think that they can
      rely on `TypeMeta` being populated, which is absolutely not the case
    * It causes panics for types that have `TypeMeta` defined as pointer,
      making it impossible to use the client with them
    
    This PR changes the behavior to only populate TypeMeta for `unstructured`.
    alvaroaleman committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    f6052ab View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2633 from alvaroaleman/pointer

    ⚠️ Fakeclient: Only set TypeMeta for unstructured
    k8s-ci-robot committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    91f642b View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2024

  1. pkg/metrics: add 100/1000s buckets for workqueue histograms

    Controllers making many external requests in large clusters
    may have normal operating latency on the order of ~100s.
    Add buckets that cover the range, allowing metric backends
    to interpolate percentile estimates properly.
    seankhliao committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    f4fe233 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2024

  1. ⚠️ Deprecate admission.Validator and admission.Defaulter

    `admission.Validator/Defaulter` require to import controller-runtime
    into api packages. This is not recommended, as api packages should
    themselves not have any dependencies except to other api packages in
    order to make importing them easy without dependency issues and
    possibly incompatibilities.
    
    This change marks the two as deprecated. We are not going to remove them
    yet to give folks some time to migrate off them.
    alvaroaleman committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    1c704b9 View commit details
    Browse the repository at this point in the history
  2. 📖 Add documentation note describing behavior with status (kubernetes-…

    …sigs#2635)
    
    * Add documentation note describing behavior with status
    
    * update text
    jfremy committed Jan 6, 2024
    Configuration menu
    Copy the full SHA
    5804716 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2024

  1. Merge pull request kubernetes-sigs#2639 from alvaroaleman/deprecate-v…

    …alidator
    
    ⚠️ Deprecate admission.Validator and admission.Defaulter
    k8s-ci-robot committed Jan 7, 2024
    Configuration menu
    Copy the full SHA
    5c21730 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2024

  1. ⚠️ Use limited reader in webhooks (kubernetes-sigs#2598)

    * add missing limitedReader
    
    Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
    
    * update maxRequestSize and explain values in comment
    
    Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
    
    * use more specific http error code
    
    Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
    
    * add extra comments and update value for maxRequestSize
    
    Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
    
    * use const instead of var
    
    Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
    
    ---------
    
    Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
    inteon committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    69e14f1 View commit details
    Browse the repository at this point in the history
  2. 🌱 Bump golang.org/x/sys from 0.15.0 to 0.16.0

    Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.15.0 to 0.16.0.
    - [Commits](golang/sys@v0.15.0...v0.16.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sys
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    ac0b704 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    11d4bbb View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Merge pull request kubernetes-sigs#2642 from kubernetes-sigs/dependab…

    …ot/go_modules/golang.org/x/sys-0.16.0
    
    🌱 Bump golang.org/x/sys from 0.15.0 to 0.16.0
    k8s-ci-robot committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    bf3d274 View commit details
    Browse the repository at this point in the history
  2. ✨ Add reconcile.ObjectReconciler (kubernetes-sigs#2592)

    * Add ObjectReconciler
    
    * Add type hints in reconcile_test.go
    
    * Remove Go 1.20 type hints
    JamesOwenHall committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    984a121 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Configuration menu
    Copy the full SHA
    8858b93 View commit details
    Browse the repository at this point in the history
  2. Avoid dependency on apiserver/options if metrics/filters are used

    Signed-off-by: Stefan Büringer buringerst@vmware.com
    sbueringer committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    5172a23 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2645 from sbueringer/pr-avoid-deps

    🌱 Avoid dependency on apiserver/options if metrics/filters are used
    k8s-ci-robot committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    8f8247f View commit details
    Browse the repository at this point in the history
  4. Fix client-related comments

    fxierh committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    8dab940 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. Merge pull request kubernetes-sigs#2638 from seankhliao/higher-end-bu…

    …ckets
    
    ✨ Add 100/1000s buckets for prometheus workqueue histograms
    k8s-ci-robot committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    0a90173 View commit details
    Browse the repository at this point in the history
  2. Bump to controller-tools v0.14.0

    Signed-off-by: Stefan Büringer buringerst@vmware.com
    sbueringer committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    6006754 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2649 from sbueringer/pr-bump-ct

    🌱 Bump to controller-tools v0.14.0
    k8s-ci-robot committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    7679253 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f29ed4e View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2024

  1. Merge pull request kubernetes-sigs#2647 from fxierh/fix-client-comments

    📖 Fix Client Read/Write Functionality Comments
    k8s-ci-robot committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    48d9a7b View commit details
    Browse the repository at this point in the history
  2. 🐛 Don't truncate large int64s in MergePatch

    This change bumps https://github.com/evanphx/json-patch
    in order to pick up a bugfix that made it truncate large int64s because
    it internally treated them as float64s.
    alvaroaleman committed Jan 12, 2024
    Configuration menu
    Copy the full SHA
    ea529dd View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2024

  1. Merge pull request kubernetes-sigs#2650 from alvaroaleman/bump-jsonpatch

    🐛 Don't truncate large int64s in MergePatch
    k8s-ci-robot committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    9e6e3b1 View commit details
    Browse the repository at this point in the history
  2. 🌱 Bump github.com/onsi/ginkgo/v2 from 2.13.2 to 2.14.0

    Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.13.2 to 2.14.0.
    - [Release notes](https://github.com/onsi/ginkgo/releases)
    - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
    - [Commits](onsi/ginkgo@v2.13.2...v2.14.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/onsi/ginkgo/v2
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    a23bdc8 View commit details
    Browse the repository at this point in the history
  3. Update generated code

    dependabot[bot] committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    d5f5430 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. bump go-apidiff to v0.8.2

    Signed-off-by: Joe Lanford <joe.lanford@gmail.com>
    joelanford committed Jan 16, 2024
    Configuration menu
    Copy the full SHA
    672d678 View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2655 from joelanford/bump-apidiff

    🌱 bump go-apidiff to v0.8.2
    k8s-ci-robot committed Jan 16, 2024
    Configuration menu
    Copy the full SHA
    66939d4 View commit details
    Browse the repository at this point in the history
  3. Merge pull request kubernetes-sigs#2651 from kubernetes-sigs/dependab…

    …ot/go_modules/github.com/onsi/ginkgo/v2-2.14.0
    
    🌱 Bump github.com/onsi/ginkgo/v2 from 2.13.2 to 2.14.0
    k8s-ci-robot committed Jan 16, 2024
    Configuration menu
    Copy the full SHA
    11e5a5e View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. Clean restmapper cache if a version is notFound

    This avoids:
    - Extra calls to https://host/apis/<group>/<version> when a version seen
      before and cached in apiGroups is deleted or marked as not served.
    - Returnning a valid mapping for a cached version that is deleted or not
      served anymore.
    g-gaston authored and k8s-infra-cherrypick-robot committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    40b41df View commit details
    Browse the repository at this point in the history
  2. Address review comments

    g-gaston authored and k8s-infra-cherrypick-robot committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    0811bad View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Merge pull request kubernetes-sigs#2676 from k8s-infra-cherrypick-rob…

    …ot/cherry-pick-2663-to-release-0.17
    
    [release-0.17] 🐛 Clean restmapper cache if a version is notFound
    k8s-ci-robot committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    5923139 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2024

  1. bug: Fakeclient: Do not consider an apply patch to be a strategic mer…

    …ge patch
    
    The fakeclient currently considers an apply patch to be a strategic
    merge patch. This is completely wrong, those are different things and
    apply patches are not supported in the fakeclientl, because in order to
    support them it would need the entire SSA logic which isn't implemented
    in upstream yet.
    alvaroaleman authored and k8s-infra-cherrypick-robot committed Feb 10, 2024
    Configuration menu
    Copy the full SHA
    984aee6 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. Merge pull request kubernetes-sigs#2681 from k8s-infra-cherrypick-rob…

    …ot/cherry-pick-2679-to-release-0.17
    
    [release-0.17] ⚠ 🐛 Fakeclient: Do not consider an apply patch to be a strategic merge patch
    k8s-ci-robot committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    59c26c0 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. Fix lazy rest mapper cache invalidation

    When a group version is not found, if the group version is cached in
    apiGroups but not cached in knownGroups, the cache is not invalidated.
    Moreover and even worse, in that scenario an error is returned.
    g-gaston authored and k8s-infra-cherrypick-robot committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    565aa5b View commit details
    Browse the repository at this point in the history
  2. Merge pull request kubernetes-sigs#2688 from k8s-infra-cherrypick-rob…

    …ot/cherry-pick-2687-to-release-0.17
    
    [release-0.17] 🐛 Fix lazy rest mapper cache invalidation
    k8s-ci-robot committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    d0396a3 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Configuration menu
    Copy the full SHA
    b8077b1 View commit details
    Browse the repository at this point in the history