Skip to content

Commit 8d3dbfb

Browse files
authored
Upgrade k8s and other dependencies from 1.28 to 1.30 (#112)
* Upgrade k8s and other dependencies from 1.28 to 1.30 Signed-off-by: Sameer Shaikh <[email protected]> * Upgrade k8s and other dependencies from 1.28 to 1.30 Signed-off-by: Sameer Shaikh <[email protected]> --------- Signed-off-by: Sameer Shaikh <[email protected]>
1 parent 32ea86e commit 8d3dbfb

File tree

5 files changed

+260
-455
lines changed

5 files changed

+260
-455
lines changed

.golangci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ issues:
3030
linters:
3131
# enable or disable analyzers by name
3232
enable:
33-
- golint
3433
- gofmt
3534
- gosec
3635
- whitespace
@@ -39,13 +38,9 @@ linters:
3938
- goimports
4039
- unused
4140
- gosimple
42-
- varcheck
43-
- structcheck
4441
- bodyclose
45-
- deadcode
4642
- depguard
4743
- govet
48-
- typecheck
4944
- staticcheck
5045
enable-all: false
5146
disable-all: true

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: go
22

33
go:
4-
- 1.20.11
4+
- 1.22.0
55
- tip
66

77
group: bluezone

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ARCH=$(shell docker version -f {{.Client.Arch}})
1010
GO111MODULE_FLAG?=on
1111
export GO111MODULE=$(GO111MODULE_FLAG)
1212

13-
export LINT_VERSION="1.51.2"
13+
export LINT_VERSION="1.60.1"
1414

1515
COLOR_YELLOW=\033[0;33m
1616
COLOR_RESET=\033[0m

go.mod

Lines changed: 78 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -1,138 +1,138 @@
11
module github.com/IBM/ibm-csi-common
22

3-
go 1.20
3+
go 1.22.0
44

55
require (
6-
github.com/IBM/ibmcloud-volume-interface v1.2.4
7-
github.com/container-storage-interface/spec v1.8.0
6+
github.com/IBM/ibmcloud-volume-interface v1.2.6
7+
github.com/container-storage-interface/spec v1.9.0
88
github.com/gofrs/uuid v4.4.0+incompatible
9-
github.com/golang/glog v1.1.0
9+
github.com/golang/glog v1.2.1
1010
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.2.0
11-
github.com/onsi/ginkgo/v2 v2.17.2
12-
github.com/onsi/gomega v1.33.0
13-
github.com/prometheus/client_golang v1.16.0
14-
github.com/stretchr/testify v1.8.4
15-
go.uber.org/zap v1.20.0
16-
golang.org/x/net v0.24.0
17-
google.golang.org/grpc v1.56.3
18-
google.golang.org/protobuf v1.33.0
19-
k8s.io/api v0.28.6
20-
k8s.io/apimachinery v0.28.6
21-
k8s.io/client-go v0.28.6
22-
k8s.io/kubernetes v1.28.6
23-
k8s.io/mount-utils v0.28.6
24-
k8s.io/pod-security-admission v0.28.6
25-
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2
11+
github.com/onsi/ginkgo/v2 v2.19.0
12+
github.com/onsi/gomega v1.33.1
13+
github.com/prometheus/client_golang v1.19.1
14+
github.com/stretchr/testify v1.9.0
15+
go.uber.org/zap v1.26.0
16+
golang.org/x/net v0.26.0
17+
google.golang.org/grpc v1.65.0
18+
google.golang.org/protobuf v1.34.2
19+
k8s.io/api v0.30.4
20+
k8s.io/apimachinery v0.30.4
21+
k8s.io/client-go v0.30.4
22+
k8s.io/kubernetes v1.30.4
23+
k8s.io/mount-utils v0.30.4
24+
k8s.io/pod-security-admission v0.30.4
25+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
2626
)
2727

2828
require (
2929
github.com/BurntSushi/toml v1.0.0 // indirect
30-
github.com/IBM/secret-utils-lib v1.1.8 // indirect
30+
github.com/IBM/secret-utils-lib v1.1.11 // indirect
3131
github.com/NYTimes/gziphandler v1.1.1 // indirect
32-
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect
33-
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
32+
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
33+
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
3434
github.com/beorn7/perks v1.0.1 // indirect
3535
github.com/blang/semver/v4 v4.0.0 // indirect
36-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
37-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
36+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
37+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3838
github.com/coreos/go-semver v0.3.1 // indirect
3939
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
40-
github.com/davecgh/go-spew v1.1.1 // indirect
41-
github.com/docker/distribution v2.8.2+incompatible // indirect
42-
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
40+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
41+
github.com/distribution/reference v0.5.0 // indirect
42+
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
4343
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
44-
github.com/felixge/httpsnoop v1.0.3 // indirect
45-
github.com/fsnotify/fsnotify v1.6.0 // indirect
46-
github.com/go-logr/logr v1.4.1 // indirect
44+
github.com/felixge/httpsnoop v1.0.4 // indirect
45+
github.com/fsnotify/fsnotify v1.7.0 // indirect
46+
github.com/go-logr/logr v1.4.2 // indirect
4747
github.com/go-logr/stdr v1.2.2 // indirect
4848
github.com/go-openapi/jsonpointer v0.19.6 // indirect
4949
github.com/go-openapi/jsonreference v0.20.2 // indirect
50-
github.com/go-openapi/swag v0.22.3 // indirect
50+
github.com/go-openapi/swag v0.22.4 // indirect
5151
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
5252
github.com/gogo/protobuf v1.3.2 // indirect
5353
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
54-
github.com/golang/protobuf v1.5.3 // indirect
55-
github.com/google/cel-go v0.16.1 // indirect
54+
github.com/golang/protobuf v1.5.4 // indirect
55+
github.com/google/cel-go v0.20.1 // indirect
5656
github.com/google/gnostic-models v0.6.8 // indirect
5757
github.com/google/go-cmp v0.6.0 // indirect
5858
github.com/google/gofuzz v1.2.0 // indirect
59-
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
60-
github.com/google/uuid v1.3.0 // indirect
59+
github.com/google/pprof v0.0.0-20240525223248-4bfdf5a9a2af // indirect
60+
github.com/google/uuid v1.6.0 // indirect
61+
github.com/gorilla/websocket v1.5.0 // indirect
6162
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
62-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
63+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
6364
github.com/imdario/mergo v0.3.7 // indirect
6465
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6566
github.com/josharian/intern v1.0.0 // indirect
6667
github.com/json-iterator/go v1.1.12 // indirect
6768
github.com/kelseyhightower/envconfig v1.4.0 // indirect
6869
github.com/mailru/easyjson v0.7.7 // indirect
69-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
70-
github.com/moby/spdystream v0.2.0 // indirect
71-
github.com/moby/sys/mountinfo v0.6.2 // indirect
70+
github.com/moby/spdystream v0.4.0 // indirect
71+
github.com/moby/sys/mountinfo v0.7.1 // indirect
7272
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7373
github.com/modern-go/reflect2 v1.0.2 // indirect
7474
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
75+
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
7576
github.com/opencontainers/go-digest v1.0.0 // indirect
76-
github.com/opencontainers/selinux v1.10.0 // indirect
77+
github.com/opencontainers/selinux v1.11.0 // indirect
78+
github.com/pierrre/gotestcover v0.0.0-20160517101806-924dca7d15f0 // indirect
7779
github.com/pkg/errors v0.9.1 // indirect
78-
github.com/pmezard/go-difflib v1.0.0 // indirect
79-
github.com/prometheus/client_model v0.4.0 // indirect
80-
github.com/prometheus/common v0.44.0 // indirect
81-
github.com/prometheus/procfs v0.10.1 // indirect
82-
github.com/spf13/cobra v1.7.0 // indirect
80+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
81+
github.com/prometheus/client_model v0.6.1 // indirect
82+
github.com/prometheus/common v0.55.0 // indirect
83+
github.com/prometheus/procfs v0.15.1 // indirect
84+
github.com/spf13/cobra v1.8.1 // indirect
8385
github.com/spf13/pflag v1.0.5 // indirect
8486
github.com/stoewer/go-strcase v1.2.0 // indirect
85-
go.etcd.io/etcd/api/v3 v3.5.9 // indirect
86-
go.etcd.io/etcd/client/pkg/v3 v3.5.9 // indirect
87-
go.etcd.io/etcd/client/v3 v3.5.9 // indirect
88-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.35.0 // indirect
89-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.35.1 // indirect
90-
go.opentelemetry.io/otel v1.10.0 // indirect
91-
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.10.0 // indirect
92-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.10.0 // indirect
93-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.10.0 // indirect
94-
go.opentelemetry.io/otel/metric v0.31.0 // indirect
95-
go.opentelemetry.io/otel/sdk v1.10.0 // indirect
96-
go.opentelemetry.io/otel/trace v1.10.0 // indirect
97-
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
98-
go.uber.org/atomic v1.11.0 // indirect
87+
go.etcd.io/etcd/api/v3 v3.5.14 // indirect
88+
go.etcd.io/etcd/client/pkg/v3 v3.5.14 // indirect
89+
go.etcd.io/etcd/client/v3 v3.5.14 // indirect
90+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
91+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
92+
go.opentelemetry.io/otel v1.28.0 // indirect
93+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
94+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 // indirect
95+
go.opentelemetry.io/otel/metric v1.28.0 // indirect
96+
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
97+
go.opentelemetry.io/otel/trace v1.28.0 // indirect
98+
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
9999
go.uber.org/multierr v1.11.0 // indirect
100-
golang.org/x/crypto v0.22.0 // indirect
101-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
102-
golang.org/x/oauth2 v0.8.0 // indirect
100+
golang.org/x/crypto v0.24.0 // indirect
101+
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
102+
golang.org/x/oauth2 v0.21.0 // indirect
103103
golang.org/x/sync v0.7.0 // indirect
104-
golang.org/x/sys v0.19.0 // indirect
105-
golang.org/x/term v0.19.0 // indirect
106-
golang.org/x/text v0.14.0 // indirect
104+
golang.org/x/sys v0.21.0 // indirect
105+
golang.org/x/term v0.21.0 // indirect
106+
golang.org/x/text v0.16.0 // indirect
107107
golang.org/x/time v0.3.0 // indirect
108-
golang.org/x/tools v0.20.0 // indirect
109-
google.golang.org/appengine v1.6.7 // indirect
110-
google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54 // indirect
111-
google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9 // indirect
112-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
108+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
109+
google.golang.org/genproto v0.0.0-20231030173426-d783a09b4405 // indirect
110+
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
111+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
113112
gopkg.in/inf.v0 v0.9.1 // indirect
114113
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
115114
gopkg.in/yaml.v2 v2.4.0 // indirect
116115
gopkg.in/yaml.v3 v3.0.1 // indirect
117116
k8s.io/apiextensions-apiserver v0.28.6 // indirect
118-
k8s.io/apiserver v0.28.6 // indirect
117+
k8s.io/apiserver v0.30.4 // indirect
119118
k8s.io/cloud-provider v0.28.6 // indirect
120-
k8s.io/component-base v0.28.6 // indirect
119+
k8s.io/component-base v0.30.4 // indirect
121120
k8s.io/component-helpers v0.28.6 // indirect
122121
k8s.io/controller-manager v0.28.6 // indirect
123122
k8s.io/csi-translation-lib v0.28.6 // indirect
124-
k8s.io/klog/v2 v2.100.1 // indirect
125-
k8s.io/kms v0.28.6 // indirect
126-
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect
123+
k8s.io/klog/v2 v2.130.1 // indirect
124+
k8s.io/kms v0.30.4 // indirect
125+
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
127126
k8s.io/kubectl v0.28.6 // indirect
128127
k8s.io/kubelet v0.28.6 // indirect
129-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.1.2 // indirect
128+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
130129
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
131-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
132-
sigs.k8s.io/yaml v1.3.0 // indirect
130+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
131+
sigs.k8s.io/yaml v1.4.0 // indirect
133132
)
134133

135134
replace (
136135
github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt/v4 v4.1.0
136+
github.com/golang/protobuf => github.com/golang/protobuf v1.5.3
137137
google.golang.org/protobuf => google.golang.org/protobuf v1.31.0
138138
)

0 commit comments

Comments
 (0)