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

Commits on Jan 13, 2023

  1. *: Bump version of vmware/govmomi

    Bumping version to include changes that
    better handle TLS errors. Bump nescessary
    to prepare for when the version of Go is
    bumped to 1.20
    
    Signed-off-by: Madhav Jivrajani <madhav.jiv@gmail.com>
    
    Kubernetes-commit: a9fff191b16daa7c067f20d6f472d145d8bb6623
    MadhavJivrajani authored and k8s-publishing-bot committed Jan 13, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    eps1lon Sebastian "Sebbie" Silbermann
    Copy the full SHA
    8daafd3 View commit details

Commits on May 23, 2023

  1. Merge pull request #115034 from MadhavJivrajani/release-1.24

    [1.24] Cherry Pick of #114766: [Prepare for go1.20] *: Bump versions and fix tests
    
    Kubernetes-commit: e0ad6bcbec848fb0f22b131e09cf04901479ccc7
    k8s-publishing-bot committed May 23, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    eps1lon Sebastian "Sebbie" Silbermann
    Copy the full SHA
    4742797 View commit details

Commits on Jun 8, 2023

  1. update-vendor: update vendored go.sums

    Run of hack/update-vendor.sh
    
    Signed-off-by: Adolfo García Veytia (Puerco) <adolfo.garcia@uservers.net>
    
    Kubernetes-commit: f4adac0f3166ac2e1ae6bd654ea78505600957ad
    puerco authored and k8s-publishing-bot committed Jun 8, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    eps1lon Sebastian "Sebbie" Silbermann
    Copy the full SHA
    1ea4d12 View commit details

Commits on Jun 12, 2023

  1. Merge pull request #118557 from puerco/bump-1.24-go-1.19.10

    [release-1.24] releng/go: Update images, deps and ver to go 1.19.10
    
    Kubernetes-commit: d371c65f8b982e214dfe49df3ac892354e2e5e91
    k8s-publishing-bot committed Jun 12, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    eps1lon Sebastian "Sebbie" Silbermann
    Copy the full SHA
    be0df0a View commit details

Commits on Jun 14, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    eps1lon Sebastian "Sebbie" Silbermann
    Copy the full SHA
    088749a View commit details
Showing with 27 additions and 26 deletions.
  1. +13 −13 go.mod
  2. +14 −13 go.sum
26 changes: 13 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ require (
github.com/google/gnostic v0.5.7-v3refs
github.com/google/go-cmp v0.5.5
github.com/google/gofuzz v1.1.0
github.com/google/uuid v1.1.2
github.com/google/uuid v1.3.0
github.com/spf13/cobra v1.4.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.0
@@ -21,12 +21,12 @@ require (
google.golang.org/grpc v1.40.0
google.golang.org/protobuf v1.27.1
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.0.0-20230513010431-273129d3df41
k8s.io/apimachinery v0.0.0-20230513005956-6b8613c85238
k8s.io/apiserver v0.0.0-20230513015414-146f845488b1
k8s.io/client-go v0.0.0-20230513011627-4aa6151f9be0
k8s.io/code-generator v0.0.0-20230513005412-8fa86b356d9e
k8s.io/component-base v0.0.0-20230513013335-a44de70c684d
k8s.io/api v0.24.15
k8s.io/apimachinery v0.24.15
k8s.io/apiserver v0.24.15
k8s.io/client-go v0.24.15
k8s.io/code-generator v0.24.15
k8s.io/component-base v0.24.15
k8s.io/klog/v2 v2.60.1
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9
@@ -124,10 +124,10 @@ require (
)

replace (
k8s.io/api => k8s.io/api v0.0.0-20230513010431-273129d3df41
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20230513005956-6b8613c85238
k8s.io/apiserver => k8s.io/apiserver v0.0.0-20230513015414-146f845488b1
k8s.io/client-go => k8s.io/client-go v0.0.0-20230513011627-4aa6151f9be0
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20230513005412-8fa86b356d9e
k8s.io/component-base => k8s.io/component-base v0.0.0-20230513013335-a44de70c684d
k8s.io/api => k8s.io/api v0.24.15
k8s.io/apimachinery => k8s.io/apimachinery v0.24.15
k8s.io/apiserver => k8s.io/apiserver v0.24.15
k8s.io/client-go => k8s.io/client-go v0.24.15
k8s.io/code-generator => k8s.io/code-generator v0.24.15
k8s.io/component-base => k8s.io/component-base v0.24.15
)
27 changes: 14 additions & 13 deletions go.sum
Original file line number Diff line number Diff line change
@@ -227,8 +227,9 @@ github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hf
github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
github.com/google/uuid v1.1.2 h1:EVhdT+1Kseyi1/pUmXKaFxYsDNy9RQYkMWRH68J/W7Y=
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
@@ -852,18 +853,18 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh
honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
k8s.io/api v0.0.0-20230513010431-273129d3df41 h1:ZVLDZRsnEta9r2uTv0BL0Hlajv/uJIyzuzQXh0UlxSI=
k8s.io/api v0.0.0-20230513010431-273129d3df41/go.mod h1:UNmQVpqkR1/w7J4+dzcMdgwWiOFA8rrndQiJF2omSDE=
k8s.io/apimachinery v0.0.0-20230513005956-6b8613c85238 h1:bjJ4pdt5Q6mFn/Mru5wash5sY4UxpSRCjj6RKbkIHaQ=
k8s.io/apimachinery v0.0.0-20230513005956-6b8613c85238/go.mod h1:Yyft+DTAvOmHyT332HkCMoTKroxYDEEx7NRLsdCYDoc=
k8s.io/apiserver v0.0.0-20230513015414-146f845488b1 h1:B+eAlrPxKPtZ7lgN4XcIHIVAwX/DURJZyHzgvxzpy+c=
k8s.io/apiserver v0.0.0-20230513015414-146f845488b1/go.mod h1:WsUApXPRMCVIQhY7zWklatMgS6E3v22xUXcFICdq/oE=
k8s.io/client-go v0.0.0-20230513011627-4aa6151f9be0 h1:MQQVV4e9A3HPmSsJUBvohXxfXkKlZ+9j94yxahJSbKs=
k8s.io/client-go v0.0.0-20230513011627-4aa6151f9be0/go.mod h1:y89lD7T/84H03kEnj0nr3+mM3MdtsVHvuyrb1kRzu1k=
k8s.io/code-generator v0.0.0-20230513005412-8fa86b356d9e h1:6PmNiFXC6fWGbY1P3fzSQqRJNBvDiXl9HYIVDXT8zzI=
k8s.io/code-generator v0.0.0-20230513005412-8fa86b356d9e/go.mod h1:nQvp6VgOfRkKiLyMz+/JTNXNS6Q4bGWOVtB5rKd2TV0=
k8s.io/component-base v0.0.0-20230513013335-a44de70c684d h1:wgZ0R+LPm/St+wLy1yoJiQVXAOWM8Z64s5CnSGjoLqA=
k8s.io/component-base v0.0.0-20230513013335-a44de70c684d/go.mod h1:PeuDTf34sKSigngFgw5WovkWALnoUSsPDcP/lsq607A=
k8s.io/api v0.24.15 h1:5Zz9fnII9fR2Pouj8YMnsB2BEg9fzXRHo2Ed9Js62GU=
k8s.io/api v0.24.15/go.mod h1:lPoMB2MmzSUa3R8iGI4GapLCYnOcbFT2SHPBR4mPt6E=
k8s.io/apimachinery v0.24.15 h1:yyPEqYqYNAZL+ybqyCo4pzfxQLYezRJITFiaTmEFr7M=
k8s.io/apimachinery v0.24.15/go.mod h1:kSzhCwldu9XB172NDdLffRN0sJ3x95RR7Bmyc4SHhs0=
k8s.io/apiserver v0.24.15 h1:ejo5nBFYXj4e9HHoa2CnkjL5DHcrkOw5reZzTEfCxGk=
k8s.io/apiserver v0.24.15/go.mod h1:Em6A8ake05gNti4mO06/3xNCK+WUYMXQ5Abvh5661Po=
k8s.io/client-go v0.24.15 h1:0gPvSAykRxvl8vD7kPA8JvAWQJuwrSEZkfgSNb1T7q8=
k8s.io/client-go v0.24.15/go.mod h1:200/+zvHmX6fL97NBMa/ndRbJzc3Kwh5um0U2KgCiTA=
k8s.io/code-generator v0.24.15 h1:I8iyUiIXFKDhVoxMRgdpqSk4NfDQrA1Aiqumr41X2vE=
k8s.io/code-generator v0.24.15/go.mod h1:nQvp6VgOfRkKiLyMz+/JTNXNS6Q4bGWOVtB5rKd2TV0=
k8s.io/component-base v0.24.15 h1:HcZCS3OLuKPYa41BfEVr1g04bparNoGm9ClSJEV3yHc=
k8s.io/component-base v0.24.15/go.mod h1:ENK7pDtlgREVx2mtiLxVRFO9Liqq3ftVLi22gDp69xk=
k8s.io/gengo v0.0.0-20210813121822-485abfe95c7c/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E=
k8s.io/gengo v0.0.0-20211129171323-c02415ce4185 h1:TT1WdmqqXareKxZ/oNXEUSwKlLiHzPMyB0t8BaFeBYI=
k8s.io/gengo v0.0.0-20211129171323-c02415ce4185/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E=