Skip to content

Commit c427966

Browse files
committed
Bump fxamacker/cbor/v2 to v2.7.0-beta.
This library release makes a number of behaviors configurable in ways that are required for CBOR support in Kubernetes.
1 parent 6ba9fa8 commit c427966

File tree

73 files changed

+2436
-963
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+2436
-963
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ require (
146146
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
147147
github.com/fatih/camelcase v1.0.0 // indirect
148148
github.com/felixge/httpsnoop v1.0.3 // indirect
149-
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
149+
github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
150150
github.com/go-errors/errors v1.4.2 // indirect
151151
github.com/go-logr/stdr v1.2.2 // indirect
152152
github.com/go-logr/zapr v1.3.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ github.com/frankban/quicktest v1.14.0/go.mod h1:NeW+ay9A/U67EYXNFA1nPE8e/tnQv/09
294294
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
295295
github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=
296296
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
297-
github.com/fxamacker/cbor/v2 v2.6.0 h1:sU6J2usfADwWlYDAFhZBQ6TnLFBHxgesMrQfQgk1tWA=
298-
github.com/fxamacker/cbor/v2 v2.6.0/go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ=
297+
github.com/fxamacker/cbor/v2 v2.7.0-beta h1:m5bO941uTVpSms26QjzEJxUZaC3S/h1pSJexBCu4wAA=
298+
github.com/fxamacker/cbor/v2 v2.7.0-beta/go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ=
299299
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
300300
github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA=
301301
github.com/go-errors/errors v1.4.2/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og=

staging/src/k8s.io/api/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212

1313
require (
1414
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
15-
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
15+
github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
1616
github.com/go-logr/logr v1.4.1 // indirect
1717
github.com/golang/protobuf v1.5.4 // indirect
1818
github.com/google/go-cmp v0.6.0 // indirect

staging/src/k8s.io/api/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/apiextensions-apiserver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ require (
5252
github.com/dustin/go-humanize v1.0.1 // indirect
5353
github.com/felixge/httpsnoop v1.0.3 // indirect
5454
github.com/fsnotify/fsnotify v1.7.0 // indirect
55-
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
55+
github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
5656
github.com/go-logr/logr v1.4.1 // indirect
5757
github.com/go-logr/stdr v1.2.2 // indirect
5858
github.com/go-openapi/jsonpointer v0.19.6 // indirect

staging/src/k8s.io/apiextensions-apiserver/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/apimachinery/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ go 1.22.0
77
require (
88
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
99
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
10-
github.com/fxamacker/cbor/v2 v2.6.0
10+
github.com/fxamacker/cbor/v2 v2.7.0-beta
1111
github.com/gogo/protobuf v1.3.2
1212
github.com/golang/protobuf v1.5.4
1313
github.com/google/gnostic-models v0.6.8

staging/src/k8s.io/apimachinery/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/apiserver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ require (
6969
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
7070
github.com/dustin/go-humanize v1.0.1 // indirect
7171
github.com/felixge/httpsnoop v1.0.3 // indirect
72-
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
72+
github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
7373
github.com/go-logr/logr v1.4.1 // indirect
7474
github.com/go-logr/stdr v1.2.2 // indirect
7575
github.com/go-openapi/jsonpointer v0.19.6 // indirect

staging/src/k8s.io/apiserver/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)