Skip to content

Commit 88ee495

Browse files
rsoaresdKubeSaw
andauthored
SANDBOX-1357: update kube & openshift dependencies to 4.19 (#1193)
* SANDBOX-1357: update kube & openshift dependencies to 4.19 * update golang.org/x/net * update replace * remove replace --------- Co-authored-by: KubeSaw <devsandbox@redhat.com>
1 parent 56fa2cf commit 88ee495

File tree

8 files changed

+126
-210
lines changed

8 files changed

+126
-210
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 & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1 @@
1-
ignored-vulnerabilities:
2-
# Request smuggling due to acceptance of invalid chunked data in net/http
3-
# Standard library
4-
# Found in: net/http/internal@go1.22.12
5-
# Fixed in: net/http/internal@go1.23.8
6-
- id: GO-2025-3563
7-
silence-until: 2025-10-02
8-
info: https://pkg.go.dev/vuln/GO-2025-3563
9-
# Inconsistent handling of O_CREATE|O_EXCL on Unix and Windows in os in syscall
10-
# Found in: os@go1.22.12
11-
# Fixed in: os@go1.23.10
12-
- id: GO-2025-3750
13-
silence-until: 2025-10-02
14-
info: https://pkg.go.dev/vuln/GO-2025-3750
15-
# Sensitive headers not cleared on cross-origin redirect in net/http
16-
# Found in: net/http@go1.22.12
17-
# Fixed in: Fixed in: net/http@go1.23.10
18-
- id: GO-2025-3751
19-
info: https://pkg.go.dev/vuln/GO-2025-3751
20-
silence-until: 2025-10-02
1+
ignored-vulnerabilities: []

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This repo contains e2e tests for https://github.com/codeready-toolchain/host-ope
77

88
== Build
99

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

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

build/sandbox-ui/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ ENV GOPATH=/tmp/go \
88
PATH=$PATH:$GOPATH/bin \
99
GIT_COMMITTER_NAME="Developer Sandbox" \
1010
GIT_COMMITTER_EMAIL=devsandbox@redhat.com \
11-
GOLANG_VERSION=go1.22.12 \
12-
GOLANG_SHA256=4fa4f869b0f7fc6bb1eb2660e74657fbf04cdd290b5aef905585c86051b34d43
11+
GOLANG_VERSION=go1.23.12 \
12+
GOLANG_SHA256=d3847fef834e9db11bf64e3fb34db9c04db14e068eeb064f49af747010454f90
1313

1414
# Install additional tools
1515
# gettext for envsubst

go.mod

Lines changed: 37 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
module github.com/codeready-toolchain/toolchain-e2e
22

33
require (
4-
github.com/codeready-toolchain/api v0.0.0-20250909075145-ca043a618f0f
5-
github.com/codeready-toolchain/toolchain-common v0.0.0-20250910131836-b410cd4ca53d
4+
github.com/codeready-toolchain/api v0.0.0-20250916082953-4ecb3a4645e6
5+
github.com/codeready-toolchain/toolchain-common v0.0.0-20250916085517-b50328535b99
66
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
77
github.com/fatih/color v1.18.0
88
github.com/ghodss/yaml v1.0.0
99
github.com/gofrs/uuid v4.4.0+incompatible
10-
github.com/google/go-cmp v0.6.0
10+
github.com/google/go-cmp v0.7.0
1111
github.com/gorilla/websocket v1.5.0
1212
github.com/gosuri/uiprogress v0.0.1
1313
github.com/gosuri/uitable v0.0.4
1414
github.com/hashicorp/go-multierror v1.1.1
1515
github.com/manifoldco/promptui v0.9.0
16-
// using latest commit from 'github.com/openshift/api branch release-4.18'
17-
github.com/openshift/api v0.0.0-20250410062700-d6c84c55a124
18-
github.com/operator-framework/api v0.27.0
16+
// using latest commit from 'github.com/openshift/api branch release-4.19'
17+
github.com/openshift/api v0.0.0-20250903165707-ce7baf0afbc4
18+
github.com/operator-framework/api v0.31.0
1919
github.com/pkg/errors v0.9.1
2020
github.com/prometheus/client_golang v1.19.1
2121
github.com/prometheus/client_model v0.6.1
2222
github.com/prometheus/common v0.55.0
2323
github.com/redhat-cop/operator-utils v1.3.8
24-
github.com/spf13/cobra v1.8.1
24+
github.com/spf13/cobra v1.9.1
2525
github.com/stretchr/testify v1.10.0
26-
k8s.io/api v0.31.2
27-
k8s.io/apimachinery v0.31.2
28-
k8s.io/client-go v0.31.2
29-
k8s.io/kubectl v0.31.2
30-
k8s.io/metrics v0.31.2
31-
sigs.k8s.io/controller-runtime v0.19.7
26+
k8s.io/api v0.32.3
27+
k8s.io/apimachinery v0.32.3
28+
k8s.io/client-go v0.32.3
29+
k8s.io/kubectl v0.32.3
30+
k8s.io/metrics v0.32.3
31+
sigs.k8s.io/controller-runtime v0.20.4
3232
)
3333

3434
require (
@@ -51,23 +51,23 @@ require (
5151
github.com/deckarep/golang-set/v2 v2.7.0 // indirect
5252
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
5353
github.com/emicklei/go-restful/v3 v3.11.2 // indirect
54-
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
55-
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
54+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
55+
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
5656
github.com/fsnotify/fsnotify v1.8.0 // indirect
5757
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
5858
github.com/go-errors/errors v1.4.2 // indirect
5959
github.com/go-jose/go-jose/v3 v3.0.4 // indirect
6060
github.com/go-logr/logr v1.4.2 // indirect
61-
github.com/go-openapi/jsonpointer v0.20.2 // indirect
61+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
6262
github.com/go-openapi/jsonreference v0.20.4 // indirect
63-
github.com/go-openapi/swag v0.22.9 // indirect
63+
github.com/go-openapi/swag v0.23.0 // indirect
6464
github.com/go-stack/stack v1.8.1 // indirect
6565
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
6666
github.com/goccy/go-json v0.10.2 // indirect
6767
github.com/gogo/protobuf v1.3.2 // indirect
6868
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
69-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
7069
github.com/golang/protobuf v1.5.4 // indirect
70+
github.com/google/btree v1.1.3 // indirect
7171
github.com/google/gnostic-models v0.6.8 // indirect
7272
github.com/google/go-github/v52 v52.0.0 // indirect
7373
github.com/google/go-querystring v1.1.0 // indirect
@@ -99,7 +99,7 @@ require (
9999
github.com/modern-go/reflect2 v1.0.2 // indirect
100100
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
101101
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
102-
github.com/openshift/library-go v0.0.0-20250403134058-7c43fdf96c62 // indirect
102+
github.com/openshift/library-go v0.0.0-20250826065405-6d18d1191f49 // indirect
103103
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
104104
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
105105
github.com/prometheus/procfs v0.15.1 // indirect
@@ -113,36 +113,34 @@ require (
113113
github.com/subosito/gotenv v1.6.0 // indirect
114114
github.com/x448/float16 v0.8.4 // indirect
115115
github.com/xlab/treeprint v1.2.0 // indirect
116-
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
117116
go.uber.org/multierr v1.11.0 // indirect
118-
golang.org/x/crypto v0.32.0 // indirect
119-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
120-
golang.org/x/net v0.33.0 // indirect
121-
golang.org/x/oauth2 v0.25.0 // indirect
122-
golang.org/x/sync v0.10.0 // indirect
123-
golang.org/x/sys v0.29.0 // indirect
124-
golang.org/x/term v0.28.0 // indirect
125-
golang.org/x/text v0.21.0 // indirect
117+
golang.org/x/crypto v0.36.0 // indirect
118+
golang.org/x/net v0.38.0 // indirect
119+
golang.org/x/oauth2 v0.27.0 // indirect
120+
golang.org/x/sync v0.12.0 // indirect
121+
golang.org/x/sys v0.31.0 // indirect
122+
golang.org/x/term v0.30.0 // indirect
123+
golang.org/x/text v0.23.0 // indirect
126124
golang.org/x/time v0.8.0 // indirect
127125
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
128-
google.golang.org/protobuf v1.36.1 // indirect
126+
google.golang.org/protobuf v1.36.5 // indirect
129127
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
130128
gopkg.in/h2non/gock.v1 v1.0.14 // indirect
131129
gopkg.in/inf.v0 v0.9.1 // indirect
132130
gopkg.in/yaml.v2 v2.4.0 // indirect
133131
gopkg.in/yaml.v3 v3.0.1 // indirect
134-
k8s.io/apiextensions-apiserver v0.31.2 // indirect
135-
k8s.io/cli-runtime v0.31.2 // indirect
132+
k8s.io/apiextensions-apiserver v0.32.3 // indirect
133+
k8s.io/cli-runtime v0.32.3 // indirect
136134
k8s.io/klog/v2 v2.130.1 // indirect
137-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
138-
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6 // indirect
139-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
140-
sigs.k8s.io/kustomize/api v0.17.2 // indirect
141-
sigs.k8s.io/kustomize/kyaml v0.17.1 // indirect
142-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
135+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
136+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
137+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
138+
sigs.k8s.io/kustomize/api v0.18.0 // indirect
139+
sigs.k8s.io/kustomize/kyaml v0.18.1 // indirect
140+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
143141
sigs.k8s.io/yaml v1.4.0 // indirect
144142
)
145143

146-
go 1.22.0
144+
go 1.23.0
147145

148-
toolchain go1.22.12
146+
toolchain go1.23.12

0 commit comments

Comments
 (0)