Skip to content

Commit 53273ed

Browse files
rsoaresdKubeSaw
andauthored
SANDBOX-1357: update kube & openshift dependencies to 4.19 (#547)
* SANDBOX-1357: update kube & openshift dependencies to 4.19 * update * try * clean * fix * update golang.org/x/net * go mod tidy * clean * update replace * update * remove replace --------- Co-authored-by: KubeSaw <devsandbox@redhat.com>
1 parent 7d6641d commit 53273ed

File tree

6 files changed

+119
-154
lines changed

6 files changed

+119
-154
lines changed

.golangci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ linters:
3030
- testifylint
3131
- unparam
3232
- zerologlint
33+
- copyloopvar
3334
disable:
3435
- contextcheck
3536
- noctx

.govulncheck.yaml

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1 @@
1-
ignored-vulnerabilities:
2-
# Request smuggling due to acceptance of invalid chunked data in net/http
3-
# Found in Found in: net/http/internal@go1.22.12
4-
# Fixed in Fixed in: net/http/internal@go1.23.8
5-
- id: GO-2025-3563
6-
info: https://pkg.go.dev/vuln/GO-2025-3563
7-
silence-until: 2025-09-17
8-
9-
# Incorrect Neutralization of Input During Web Page Generation in x/net in golang.org/x/net
10-
# Found in Found in: golang.org/x/net/html@v0.33.0
11-
# Fixed in Fixed in: golang.org/x/net/html@v0.38.0
12-
- id: GO-2025-3595
13-
info: https://pkg.go.dev/vuln/GO-2025-3595
14-
silence-until: 2025-09-17
15-
16-
# Inconsistent handling of O_CREATE|O_EXCL on Unix and Windows in os in syscall
17-
# Found in Found in: os@go1.22.12
18-
# Fixed in Fixed in: os@go1.23.10
19-
- id: GO-2025-3750
20-
info: https://pkg.go.dev/vuln/GO-2025-3750
21-
silence-until: 2025-09-17
22-
23-
# Sensitive headers not cleared on cross-origin redirect in net/http
24-
# Found in Found in: net/http@go1.22.12
25-
# Fixed in Fixed in: net/http@go1.23.10
26-
- id: GO-2025-3751
27-
info: https://pkg.go.dev/vuln/GO-2025-3751
28-
silence-until: 2025-09-17
1+
ignored-vulnerabilities: []

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This is the Developer Sandbox Registration Service repository. It implements the
99

1010
== Build
1111

12-
Requires Go version 1.22.x (1.22.12 or higher) - download for your development environment https://golang.org/dl/[here].
12+
Requires Go version 1.23.x (1.23.12 or higher) - download for your development environment https://golang.org/dl/[here].
1313

1414
This repository uses https://github.com/golang/go/wiki/Modules[Go modules].
1515

go.mod

Lines changed: 36 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
module github.com/codeready-toolchain/registration-service
22

3-
go 1.22.0
3+
go 1.23.0
44

5-
toolchain go1.22.12
5+
toolchain go1.23.12
66

77
require (
88
github.com/aws/aws-sdk-go v1.44.100
9-
github.com/codeready-toolchain/api v0.0.0-20250909075145-ca043a618f0f
10-
github.com/codeready-toolchain/toolchain-common v0.0.0-20250910131836-b410cd4ca53d
9+
github.com/codeready-toolchain/api v0.0.0-20250916082953-4ecb3a4645e6
10+
github.com/codeready-toolchain/toolchain-common v0.0.0-20250916085517-b50328535b99
1111
github.com/go-logr/logr v1.4.2
1212
github.com/gofrs/uuid v4.2.0+incompatible
1313
github.com/pkg/errors v0.9.1
1414
github.com/stretchr/testify v1.10.0
1515
gopkg.in/h2non/gock.v1 v1.0.14
16-
k8s.io/api v0.31.2
17-
k8s.io/apimachinery v0.31.2
18-
k8s.io/client-go v0.31.2
19-
sigs.k8s.io/controller-runtime v0.19.7
16+
k8s.io/api v0.32.2
17+
k8s.io/apimachinery v0.32.2
18+
k8s.io/client-go v0.32.2
19+
sigs.k8s.io/controller-runtime v0.20.4
2020
)
2121

2222
require (
@@ -35,8 +35,8 @@ require (
3535
github.com/prometheus/client_golang v1.19.1
3636
github.com/prometheus/client_model v0.6.1
3737
github.com/prometheus/common v0.55.0
38-
github.com/spf13/pflag v1.0.5
39-
go.uber.org/zap v1.26.0
38+
github.com/spf13/pflag v1.0.6
39+
go.uber.org/zap v1.27.0
4040
gopkg.in/go-jose/go-jose.v2 v2.6.3
4141
gotest.tools v2.2.0+incompatible
4242
k8s.io/klog v1.0.0
@@ -61,15 +61,16 @@ require (
6161
github.com/cloudflare/circl v1.6.1 // indirect
6262
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
6363
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
64-
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
65-
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
64+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
65+
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
6666
github.com/fsnotify/fsnotify v1.7.0 // indirect
6767
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
6868
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
6969
github.com/go-errors/errors v1.4.2 // indirect
7070
github.com/go-logr/stdr v1.2.2 // indirect
7171
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
7272
github.com/golang/protobuf v1.5.4 // indirect
73+
github.com/google/btree v1.1.3 // indirect
7374
github.com/google/gnostic-models v0.6.8 // indirect
7475
github.com/google/go-github/v52 v52.0.0 // indirect
7576
github.com/google/go-querystring v1.1.0 // indirect
@@ -104,37 +105,35 @@ require (
104105
go.opentelemetry.io/otel v1.28.0 // indirect
105106
go.opentelemetry.io/otel/metric v1.28.0 // indirect
106107
go.opentelemetry.io/otel/trace v1.28.0 // indirect
107-
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
108108
golang.org/x/arch v0.7.0 // indirect
109-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
110109
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
111110
google.golang.org/api v0.177.0 // indirect
112-
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
113-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
111+
google.golang.org/genproto/googleapis/api v0.0.0-20240826202546-f6391c0de4c7 // indirect
112+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240826202546-f6391c0de4c7 // indirect
114113
google.golang.org/grpc v1.65.0 // indirect
115114
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
116-
k8s.io/apiextensions-apiserver v0.31.2 // indirect
117-
k8s.io/cli-runtime v0.31.2 // indirect
118-
k8s.io/kubectl v0.31.2 // indirect
119-
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6 // indirect
120-
sigs.k8s.io/kustomize/api v0.17.2 // indirect
121-
sigs.k8s.io/kustomize/kyaml v0.17.1 // indirect
115+
k8s.io/apiextensions-apiserver v0.32.2 // indirect
116+
k8s.io/cli-runtime v0.32.2 // indirect
117+
k8s.io/kubectl v0.32.2 // indirect
118+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
119+
sigs.k8s.io/kustomize/api v0.18.0 // indirect
120+
sigs.k8s.io/kustomize/kyaml v0.18.1 // indirect
122121
)
123122

124123
require (
125124
github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927 // indirect
126125
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
127126
github.com/gin-contrib/sse v0.1.0 // indirect
128127
github.com/go-logr/zapr v1.3.0 // indirect
129-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
128+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
130129
github.com/go-openapi/jsonreference v0.20.2 // indirect
131-
github.com/go-openapi/swag v0.22.4 // indirect
130+
github.com/go-openapi/swag v0.23.0 // indirect
132131
github.com/go-playground/locales v0.14.1 // indirect
133132
github.com/go-playground/universal-translator v0.18.1 // indirect
134133
github.com/go-playground/validator/v10 v10.19.0 // indirect
135134
github.com/goccy/go-json v0.10.2 // indirect
136135
github.com/gogo/protobuf v1.3.2 // indirect
137-
github.com/google/go-cmp v0.6.0 // indirect
136+
github.com/google/go-cmp v0.7.0 // indirect
138137
github.com/google/gofuzz v1.2.0 // indirect
139138
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
140139
github.com/imdario/mergo v0.3.12 // indirect
@@ -151,28 +150,27 @@ require (
151150
github.com/modern-go/reflect2 v1.0.2 // indirect
152151
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
153152
// using latest commit from 'github.com/openshift/api branch release-4.16'
154-
github.com/openshift/api v0.0.0-20250410062700-d6c84c55a124
153+
github.com/openshift/api v0.0.0-20250904140438-5b2b8cafdd82
155154
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
156155
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
157156
github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2 // indirect
158157
github.com/ttacon/libphonenumber v1.2.1 // indirect
159158
github.com/ugorji/go/codec v1.2.12 // indirect
160159
go.uber.org/atomic v1.10.0
161160
go.uber.org/multierr v1.11.0 // indirect
162-
golang.org/x/crypto v0.31.0 // indirect
163-
golang.org/x/net v0.33.0 // indirect
164-
golang.org/x/oauth2 v0.21.0 // indirect
165-
golang.org/x/sync v0.10.0 // indirect
166-
golang.org/x/sys v0.28.0 // indirect
167-
golang.org/x/term v0.27.0 // indirect
168-
golang.org/x/text v0.21.0 // indirect
161+
golang.org/x/crypto v0.36.0 // indirect
162+
golang.org/x/net v0.38.0 // indirect
163+
golang.org/x/oauth2 v0.23.0 // indirect
164+
golang.org/x/sync v0.12.0 // indirect
165+
golang.org/x/sys v0.31.0 // indirect
166+
golang.org/x/term v0.30.0 // indirect
167+
golang.org/x/text v0.23.0 // indirect
169168
golang.org/x/time v0.8.0 // indirect
170-
google.golang.org/protobuf v1.34.2 // indirect
169+
google.golang.org/protobuf v1.36.1 // indirect
171170
gopkg.in/inf.v0 v0.9.1 // indirect
172-
gopkg.in/yaml.v2 v2.4.0 // indirect
173171
gopkg.in/yaml.v3 v3.0.1 // indirect
174-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
175-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
176-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
172+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
173+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
174+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
177175
sigs.k8s.io/yaml v1.4.0 // indirect
178176
)

0 commit comments

Comments
 (0)