Skip to content

Commit 0703d68

Browse files
authored
Merge pull request kubernetes#92075 from jingyih/update_etcd_client_3p4p9
Update etcd client to v3.4.9
2 parents 7996009 + fec3aa4 commit 0703d68

File tree

36 files changed

+520
-117
lines changed

36 files changed

+520
-117
lines changed

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ require (
9999
github.com/urfave/negroni v1.0.0 // indirect
100100
github.com/vishvananda/netlink v1.1.0
101101
github.com/vmware/govmomi v0.20.3
102-
go.etcd.io/etcd v0.5.0-alpha.5.0.20200401174654-e694b7bb0875
102+
go.etcd.io/etcd v0.5.0-alpha.5.0.20200520232829-54ba9589114f
103103
golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975
104104
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e
105105
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6
@@ -414,7 +414,7 @@ replace (
414414
github.com/xlab/handysort => github.com/xlab/handysort v0.0.0-20150421192137-fb3537ed64a1
415415
github.com/xordataexchange/crypt => github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77
416416
go.etcd.io/bbolt => go.etcd.io/bbolt v1.3.3
417-
go.etcd.io/etcd => go.etcd.io/etcd v0.5.0-alpha.5.0.20200401174654-e694b7bb0875 // e694b7bb0875 is the SHA for git tag v3.4.7
417+
go.etcd.io/etcd => go.etcd.io/etcd v0.5.0-alpha.5.0.20200520232829-54ba9589114f // 54ba9589114f is the SHA for git tag v3.4.9
418418
go.mongodb.org/mongo-driver => go.mongodb.org/mongo-driver v1.1.2
419419
go.opencensus.io => go.opencensus.io v0.22.2
420420
go.uber.org/atomic => go.uber.org/atomic v1.4.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,8 +465,8 @@ github.com/xlab/handysort v0.0.0-20150421192137-fb3537ed64a1/go.mod h1:QcJo0QPSf
465465
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q=
466466
go.etcd.io/bbolt v1.3.3 h1:MUGmc65QhB3pIlaQ5bB4LwqSj6GIonVJXpZiaKNyaKk=
467467
go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
468-
go.etcd.io/etcd v0.5.0-alpha.5.0.20200401174654-e694b7bb0875 h1:C7kWARE8r64ppRadl40yfNo6pag+G6ocvGU2xZ6yNes=
469-
go.etcd.io/etcd v0.5.0-alpha.5.0.20200401174654-e694b7bb0875/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg=
468+
go.etcd.io/etcd v0.5.0-alpha.5.0.20200520232829-54ba9589114f h1:pBCD+Z7cy5WPTq+R6MmJJvDRpn88cp7bmTypBsn91g4=
469+
go.etcd.io/etcd v0.5.0-alpha.5.0.20200520232829-54ba9589114f/go.mod h1:skWido08r9w6Lq/w70DO5XYIKMu4QFu1+4VsqLQuJy8=
470470
go.mongodb.org/mongo-driver v1.1.2 h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=
471471
go.mongodb.org/mongo-driver v1.1.2/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM=
472472
go.opencensus.io v0.22.2 h1:75k/FF0Q2YM8QYo07VPddOLBslDt1MZOdEslOHvmzAs=

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/spf13/cobra v1.0.0
1919
github.com/spf13/pflag v1.0.5
2020
github.com/stretchr/testify v1.4.0
21-
go.etcd.io/etcd v0.5.0-alpha.5.0.20200401174654-e694b7bb0875
21+
go.etcd.io/etcd v0.5.0-alpha.5.0.20200520232829-54ba9589114f
2222
google.golang.org/grpc v1.26.0
2323
gopkg.in/yaml.v2 v2.2.8
2424
k8s.io/api v0.0.0

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

Lines changed: 2 additions & 3 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
@@ -30,7 +30,7 @@ require (
3030
github.com/spf13/pflag v1.0.5
3131
github.com/stretchr/testify v1.4.0
3232
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
33-
go.etcd.io/etcd v0.5.0-alpha.5.0.20200401174654-e694b7bb0875
33+
go.etcd.io/etcd v0.5.0-alpha.5.0.20200520232829-54ba9589114f
3434
go.uber.org/atomic v1.4.0 // indirect
3535
go.uber.org/zap v1.10.0
3636
golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975

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

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

staging/src/k8s.io/kube-aggregator/go.sum

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

staging/src/k8s.io/legacy-cloud-providers/go.sum

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

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

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

vendor/go.etcd.io/etcd/auth/BUILD

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

0 commit comments

Comments
 (0)