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/apiserver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.34.2
Choose a base ref
...
head repository: kubernetes/apiserver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.34.3
Choose a head ref
  • 5 commits
  • 10 files changed
  • 3 contributors

Commits on Sep 12, 2025

  1. Fix alpha API warnings for patch version differences

    Fixes issue #134023 where alpha API warnings were being logged
    when binary version (1.34.1) and emulation version (1.34) differed
    only in patch version.
    
    The issue was in api_enablement.go where the version comparison
    was using EqualTo() which compares all version components including
    patch versions. The fix changes the comparison to only check
    major.minor versions using version.MajorMinor().
    
    Changes:
    - Modified version comparison logic in ApplyTo() method to only
      compare major.minor versions, not patch versions
    - Added comprehensive test cases to verify the fix works correctly
    - Tests confirm that warnings are still logged for different
      major/minor versions but not for different patch versions
    
    This prevents spurious warnings when emulation version is set to
    major.minor (e.g., 1.34) and binary version includes patch (e.g., 1.34.1).
    
    Kubernetes-commit: 12e3ff4198000319f5d5948309e66f1fa5b5bc55
    akhilsingh-git authored and k8s-publishing-bot committed Sep 12, 2025
    Configuration menu
    Copy the full SHA
    4cb47d3 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2025

  1. Fallback to live ns lookup on admission if lister cannot find namespace

    Kubernetes-commit: 2664ad0c8383585776ab69b4f3ca1b5dc63600a5
    liggitt authored and k8s-publishing-bot committed Nov 19, 2025
    Configuration menu
    Copy the full SHA
    7b74a6d View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2025

  1. Merge pull request #135442 from lalitc375/automated-cherry-pick-of-#1…

    …35359-origin-release-1.34
    
    Automated cherry pick of #135359: Fallback to live ns lookup on admission if lister cannot find namespace
    
    Kubernetes-commit: 627803b5e6249bb4cd4fbbce240ecc33a8ec88a4
    k8s-publishing-bot committed Dec 2, 2025
    Configuration menu
    Copy the full SHA
    7b9813a View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2025

  1. Merge pull request #135343 from michaelasp/automated-cherry-pick-of-#…

    …135327-upstream-release-1.34
    
    Automated cherry pick of #135327: Fix alpha API warnings for patch version differences
    
    Kubernetes-commit: 7d22d65c3d7d21f51ecaebf8bbc94be97007cd96
    k8s-publishing-bot committed Dec 4, 2025
    Configuration menu
    Copy the full SHA
    a978f35 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2025

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