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/client-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.26.0
Choose a base ref
...
head repository: kubernetes/client-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.26.2
Choose a head ref
  • 15 commits
  • 9 files changed
  • 7 contributors

Commits on Nov 15, 2022

  1. Limit request retrying to []byte request bodies

    Kubernetes-commit: 40f01d0c811c49a22b7557f7d8d06e3af6b4cabd
    liggitt authored and k8s-publishing-bot committed Nov 15, 2022
    Configuration menu
    Copy the full SHA
    ebb499f View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2022

  1. Check the correct error in d.downloadAPIs

    The error result of `d.downloadAPIs()` is set in `aerr`,
    not `err`.
    
    This prevents a nil-ptr dereference of apiGroups in the next step.
    
    Signed-off-by: Abhijit Hoskeri <[email protected]>
    
    Kubernetes-commit: f8b99b1f09fb5d4d10b15e326c4b242cc705f007
    hoskeri authored and k8s-publishing-bot committed Dec 11, 2022
    Configuration menu
    Copy the full SHA
    a2ef324 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2022

  1. Merge pull request #113988 from liggitt/automated-cherry-pick-of-#113…

    …933-upstream-release-1.26
    
    [1.26.1] Automated cherry pick of #113933: Limit request retrying to []byte request bodies
    
    Kubernetes-commit: 7c0eb3be77cb388bc98a9ddc33371e0b6d3c27da
    k8s-publishing-bot committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    236db3c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #114415 from hoskeri/automated-cherry-pick-of-#114…

    …404-upstream-release-1.26
    
    Automated cherry pick of #114404: Check the correct error in d.downloadAPIs
    
    Kubernetes-commit: dd0b0c00e5a10352fa74a09fb32aca509c7f0c48
    k8s-publishing-bot committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    b3fff46 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2022

  1. Resource claims should be a map type

    Kubernetes-commit: 5e22175b1d9b623c3db4d7f61ab881bb17b2795c
    JoelSpeed authored and k8s-publishing-bot committed Dec 19, 2022
    Configuration menu
    Copy the full SHA
    04b098b View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2022

  1. Merge pull request #114617 from JoelSpeed/automated-cherry-pick-of-#1…

    …14585-upstream-release-1.26
    
    Automated cherry pick of #114585: Resource claims should be a map type
    
    Kubernetes-commit: c090810c4c96e0c5acc05ab2094a5d46669cae86
    k8s-publishing-bot committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    0c34939 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2023

  1. dynamic resource allocation: avoid apiserver complaint about list con…

    …tent
    
    This fixes the following warning (error?) in the apiserver:
    
    E0126 18:10:38.665239   16370 fieldmanager.go:210] "[SHOULD NOT HAPPEN] failed to update managedFields" err="failed to convert new object (test/claim-84; resource.k8s.io/v1alpha1, Kind=ResourceClaim) to smd typed: .status.reservedFor: element 0: associative list without keys has an element that's a map type" VersionKind="/, Kind=" namespace="test" name="claim-84"
    
    The root cause is the same as in e50e8a0c919c0e02dc9a0ffaebb685d5348027b4:
    nothing in Kubernetes outright complains about a list of items where the item
    type is comparable in Go, but not a simple type. This nonetheless isn't
    supposed to be done in the API and can causes problems elsewhere.
    
    For the ReservedFor field, everything seems to work okay except for the
    warning. However, it's better to follow conventions and use a map. This is
    possible in this case because UID is guaranteed to be a unique key.
    
    Validation is now stricter than before, which is a good thing: previously,
    two entries with the same UID were allowed as long as some other field was
    different, which wasn't a situation that should have been allowed.
    
    Kubernetes-commit: b10dce49c3cb782404e09f50547120a736c03969
    pohly authored and k8s-publishing-bot committed Jan 26, 2023
    Configuration menu
    Copy the full SHA
    7be38cd View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2023

  1. kubelet/client: collapse transport wiring onto standard approach

    Signed-off-by: Monis Khan <[email protected]>
    
    Kubernetes-commit: c651e4f7da1c43ddd956fbba303e990d6f27130a
    enj authored and k8s-publishing-bot committed Feb 6, 2023
    Configuration menu
    Copy the full SHA
    0519b53 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2023

  1. Pin golang.org/x/net to v0.4.0 in 1.26

    Kubernetes-commit: c5fe6226c4aee24c100cf35fdf105ad3abf82026
    nckturner authored and k8s-publishing-bot committed Feb 9, 2023
    Configuration menu
    Copy the full SHA
    4968c4a View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2023

  1. Merge pull request #115642 from nckturner/pin-golang.org/x/net-to-v0.…

    …4.0-in-1.26
    
    Pin golang.org/x/net to v0.4.0 in 1.26
    
    Kubernetes-commit: 5ae2e75abe3a631e770b7136f8e3bd2a6051ba18
    k8s-publishing-bot committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    2e34348 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #115400 from pohly/automated-cherry-pick-of-#11535…

    …4-origin-release-1.26
    
    Automated cherry pick of #115354: dynamic resource allocation: avoid apiserver complaint about
    
    Kubernetes-commit: 41137e4de44ad12b86152359abc46414692906d1
    k8s-publishing-bot committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    9112e19 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #115566 from enj/automated-cherry-pick-of-#115315-…

    …upstream-release-1.26
    
    Automated cherry pick of #115315: kubelet/client: collapse transport wiring onto standard
    
    Kubernetes-commit: 1802182ca3f88c0d0db79e46757e9158c9b187dc
    k8s-publishing-bot committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    e6bc0bc View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2023

  1. Update golang.org/x/net to v0.7.0

    Kubernetes-commit: 26d4675e15df0fcc9a749e66fb3bdb82871f84d1
    liggitt authored and k8s-publishing-bot committed Feb 15, 2023
    Configuration menu
    Copy the full SHA
    8ce239f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #115787 from liggitt/net-0.7.0-1.26

    [1.26] Update golang.org/x/net to v0.7.0
    
    Kubernetes-commit: 0fbdfcec8d02bc9737ea9916efad04d626928036
    k8s-publishing-bot committed Feb 15, 2023
    Configuration menu
    Copy the full SHA
    62133a9 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2023

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