Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kubernetes-sigs/controller-runtime
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.16.3
Choose a base ref
...
head repository: kubernetes-sigs/controller-runtime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.16.4
Choose a head ref
  • 4 commits
  • 3 files changed
  • 4 contributors

Commits on Dec 8, 2023

  1. [release-0.16] 🏃 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 authored and samuelvl committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    ab7cf07 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2613 from samuelvl/0.16-perf-client-matching-labels

    [release-0.16] 🏃 Make client.MatchingLabels faster
    k8s-ci-robot authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    67d355d 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 committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    91a3132 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Merge pull request #2677 from g-gaston/avoid-extra-calls-for-not-foun…

    …d-resource-0.16
    
    [release-0.16] 🐛 Avoid extra calls for not found resource
    k8s-ci-robot authored Feb 8, 2024
    Configuration menu
    Copy the full SHA
    f8acd6e View commit details
    Browse the repository at this point in the history
Loading