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.27.7
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.27.8
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 19, 2023

  1. bump golang.org/grpc to v1.56.3

    Bumping golang.org/grpc in light of CVE-2023-44487.
    
    Signed-off-by: Jonathan Gonzalez V <jonathan.abdiel@gmail.com>
    
    Kubernetes-commit: 2652f51e2a56234d2eaa2b89e63134e38b7f9fab
    sxd authored and k8s-publishing-bot committed Oct 19, 2023

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    3213608 View commit details

Commits on Nov 1, 2023

  1. Merge pull request #121546 from dims/automated-cherry-pick-of-#121364…

    …-upstream-release-1.27
    
    Automated cherry pick of #121364: bump golang.org/grpc to v1.56.3
    
    Kubernetes-commit: b818656bd1c87899b4b1cf0ecc9716124395cb11
    k8s-publishing-bot committed Nov 1, 2023

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    5d61830 View commit details

Commits on Nov 15, 2023

  1. Copy the full SHA
    393d7ce View commit details
Showing with 18 additions and 290 deletions.
  1. +7 −7 go.mod
  2. +11 −283 go.sum
14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -20,12 +20,12 @@ require (
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.1
golang.org/x/net v0.17.0
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b
golang.org/x/oauth2 v0.7.0
golang.org/x/term v0.13.0
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8
google.golang.org/protobuf v1.28.1
k8s.io/api v0.0.0-20231012112453-6198494607ce
k8s.io/apimachinery v0.0.0-20231012111533-f1748e25eace
golang.org/x/time v0.3.0
google.golang.org/protobuf v1.31.0
k8s.io/api v0.27.8
k8s.io/apimachinery v0.27.8
k8s.io/klog/v2 v2.90.1
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f
k8s.io/utils v0.0.0-20230209194617-a36077c30491
@@ -59,6 +59,6 @@ require (
)

replace (
k8s.io/api => k8s.io/api v0.0.0-20231012112453-6198494607ce
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20231012111533-f1748e25eace
k8s.io/api => k8s.io/api v0.27.8
k8s.io/apimachinery => k8s.io/apimachinery v0.27.8
)
Loading