Skip to content

Commit 330d658

Browse files
committed
Bump kubernetes dependencies to 1.15.3
1 parent 6993406 commit 330d658

File tree

8 files changed

+249
-115
lines changed

8 files changed

+249
-115
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ go_import_path: sigs.k8s.io/controller-runtime
2020
install:
2121
- go get -u github.com/golang/dep/cmd/dep
2222
#- go get -u golang.org/x/lint/golint
23-
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.15.0
23+
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.17.1
2424

2525
script:
2626
- GO111MODULE=on TRACE=1 ./hack/check-everything.sh

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Please see https://git.k8s.io/community/CLA.md for more info
1919
1. Setup tools
2020
```bash
2121
$ go get -u github.com/golang/dep/cmd/dep
22-
$ curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.15.0
22+
$ curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.17.1
2323
```
2424
1. Test
2525
```bash

Gopkg.lock

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

Gopkg.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ required = ["sigs.k8s.io/testing_frameworks/integration",
3030

3131
[[constraint]]
3232
name = "k8s.io/api"
33-
version = "kubernetes-1.14.1"
33+
version = "kubernetes-1.15.3"
3434

3535
[[constraint]]
3636
name = "k8s.io/apiextensions-apiserver"
37-
version = "kubernetes-1.14.1"
37+
version = "kubernetes-1.15.3"
3838

3939
[[constraint]]
4040
name = "k8s.io/apimachinery"
41-
version = "kubernetes-1.14.1"
41+
version = "kubernetes-1.15.3"
4242

4343
[[constraint]]
4444
name = "k8s.io/client-go"
45-
version = "kubernetes-1.14.1"
45+
version = "kubernetes-1.15.3"
4646

4747
[[constraint]]
4848
name = "sigs.k8s.io/testing_frameworks"
@@ -66,7 +66,7 @@ required = ["sigs.k8s.io/testing_frameworks/integration",
6666

6767
[[constraint]]
6868
name = "github.com/prometheus/client_golang"
69-
version = "0.9.0"
69+
version = "1.0.0"
7070

7171
# these are not listed explicitly until we get version tags,
7272
# since dep doesn't like bare revision dependencies
@@ -79,9 +79,9 @@ required = ["sigs.k8s.io/testing_frameworks/integration",
7979

8080
# For dependency below: Refer to issue https://github.com/golang/dep/issues/1799
8181
[[override]]
82-
name = "gopkg.in/fsnotify.v1"
83-
source = "https://github.com/fsnotify/fsnotify.git"
84-
version="v1.4.7"
82+
name = "gopkg.in/fsnotify.v1"
83+
source = "https://github.com/fsnotify/fsnotify.git"
84+
version="v1.4.7"
8585

8686
[prune]
8787
go-tests = true

go.mod

Lines changed: 9 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,34 @@
11
module sigs.k8s.io/controller-runtime
22

3-
go 1.11
3+
go 1.12
44

55
require (
6-
cloud.google.com/go v0.26.0 // indirect
7-
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
86
github.com/evanphx/json-patch v4.5.0+incompatible
97
github.com/go-logr/logr v0.1.0
108
github.com/go-logr/zapr v0.1.0
11-
github.com/gogo/protobuf v1.1.1 // indirect
129
github.com/golang/groupcache v0.0.0-20180513044358-24b0969c4cb7 // indirect
13-
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect
1410
github.com/googleapis/gnostic v0.3.1 // indirect
15-
github.com/hashicorp/golang-lru v0.0.0-20180201235237-0fb14efe8c47 // indirect
1611
github.com/imdario/mergo v0.3.6 // indirect
17-
github.com/json-iterator/go v1.1.5 // indirect
1812
github.com/kr/pretty v0.1.0 // indirect
19-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
20-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
21-
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
2213
github.com/onsi/ginkgo v1.6.0
2314
github.com/onsi/gomega v1.4.2
24-
github.com/pborman/uuid v0.0.0-20170612153648-e790cca94e6c // indirect
25-
github.com/prometheus/client_golang v0.9.0
26-
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910
27-
github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e // indirect
28-
github.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273 // indirect
15+
github.com/prometheus/client_golang v1.0.0
16+
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
2917
github.com/spf13/pflag v1.0.2 // indirect
3018
go.uber.org/atomic v1.3.2 // indirect
3119
go.uber.org/multierr v1.1.0 // indirect
3220
go.uber.org/zap v1.9.1
33-
golang.org/x/crypto v0.0.0-20180820150726-614d502a4dac // indirect
34-
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be // indirect
35-
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
21+
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 // indirect
3622
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2 // indirect
3723
gomodules.xyz/jsonpatch/v2 v2.0.1
38-
google.golang.org/appengine v1.1.0 // indirect
3924
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
4025
gopkg.in/fsnotify.v1 v1.4.7
4126
gopkg.in/inf.v0 v0.9.1 // indirect
42-
k8s.io/api v0.0.0-20190409021203-6e4e0e4f393b
43-
k8s.io/apiextensions-apiserver v0.0.0-20190409022649-727a075fdec8
44-
k8s.io/apimachinery v0.0.0-20190404173353-6a84e37a896d
45-
k8s.io/client-go v11.0.1-0.20190409021438-1a26190bd76a+incompatible
46-
k8s.io/kube-openapi v0.0.0-20180731170545-e3762e86a74c // indirect
47-
k8s.io/utils v0.0.0-20190506122338-8fab8cb257d5 // indirect
27+
k8s.io/api v0.0.0-20190819141258-3544db3b9e44
28+
k8s.io/apiextensions-apiserver v0.0.0-20190819143637-0dbe462fe92d
29+
k8s.io/apimachinery v0.0.0-20190817020851-f2f3a405f61d
30+
k8s.io/client-go v0.0.0-20190819141724-e14f31a72a77
31+
k8s.io/klog v0.3.3 // indirect
4832
sigs.k8s.io/testing_frameworks v0.1.1
4933
sigs.k8s.io/yaml v1.1.0
5034
)

0 commit comments

Comments
 (0)