Skip to content

Commit 7be09b9

Browse files
committed
chore(deps): Bump stackrox/stackrox to 4.10.0
1 parent c9e9f78 commit 7be09b9

File tree

16 files changed

+550
-796
lines changed

16 files changed

+550
-796
lines changed

dev/config/gitops-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ applications:
1313
include: '{platform.stackrox.io_centrals.yaml,platform.stackrox.io_securedclusters.yaml}'
1414
path: operator/bundle/manifests
1515
repoURL: https://github.com/stackrox/stackrox
16-
targetRevision: 4.6.2
16+
targetRevision: 4.10.0
1717
syncPolicy:
1818
automated:
1919
prune: true
@@ -45,8 +45,8 @@ applications:
4545
valuesObject:
4646
operator:
4747
images:
48-
- deploymentName: "rhacs-operator-4.9.1"
49-
image: "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:68d9c77d33b50fde89121bc62ffb8a2fe8b43f50ebf0ec964938d33ffef17874"
48+
- deploymentName: "rhacs-operator-4.10.0"
49+
image: "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2205a04f297fa92b157e36ff3e6994dc88c041b291193bd7d03b3f033910b2fe"
5050
centralLabelSelector: "rhacs.redhat.com/version-selector=dev"
5151
securedClusterLabelSelector: "rhacs.redhat.com/selector=dev"
5252

fleetshard/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ func main() {
6666
if err != nil {
6767
glog.Fatal(err)
6868
}
69-
69+
runtimeCtx, stopRuntime := context.WithCancel(context.Background())
7070
go func() {
71-
err := runtime.Start()
71+
err := runtime.Start(runtimeCtx)
7272
if err != nil {
7373
glog.Fatal(err)
7474
}
@@ -99,7 +99,7 @@ func main() {
9999

100100
glog.Infof("Application started. Will shut down gracefully on %s.", notifySignals)
101101
sig := <-sigs
102-
runtime.Stop()
102+
stopRuntime()
103103
if err := metricServer.Close(); err != nil {
104104
glog.Errorf("closing metric server: %v", err)
105105
}

fleetshard/pkg/central/cloudprovider/awsclient/rds_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,7 @@ func TestRDSProvisioning(t *testing.T) {
119119
defer cancel()
120120

121121
dbID := "test-" + uuid.New().String()
122-
dbMasterPassword, err := random.GenerateString(25, random.AlphanumericCharacters)
123-
require.NoError(t, err)
122+
dbMasterPassword := random.GenerateString(25, random.AlphanumericCharacters)
124123

125124
clusterID := getClusterID(dbID)
126125
instanceID := getInstanceID(dbID)

fleetshard/pkg/central/reconciler/managed_db_reconciler.go

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package reconciler
33
import (
44
"context"
55
"fmt"
6+
67
"github.com/golang/glog"
78
"github.com/pkg/errors"
89
"github.com/stackrox/acs-fleet-manager/fleetshard/pkg/central/cloudprovider"
@@ -143,10 +144,7 @@ func (r *managedDbReconciler) ensureManagedCentralDBInitialized(ctx context.Cont
143144
}
144145

145146
if !centralDBSecretExists {
146-
dbMasterPassword, err := generateDBPassword()
147-
if err != nil {
148-
return fmt.Errorf("generating Central DB master password: %w", err)
149-
}
147+
dbMasterPassword := generateDBPassword()
150148
if err := r.ensureCentralDBSecretExists(ctx, remoteCentralNamespace, dbUserTypeMaster, dbMasterPassword); err != nil {
151149
return fmt.Errorf("ensuring that DB secret exists: %w", err)
152150
}
@@ -172,10 +170,7 @@ func (r *managedDbReconciler) ensureManagedCentralDBInitialized(ctx context.Cont
172170
return fmt.Errorf("getting RDS DB connection data: %w", err)
173171
}
174172

175-
dbCentralPassword, err := generateDBPassword()
176-
if err != nil {
177-
return fmt.Errorf("generating Central DB password: %w", err)
178-
}
173+
dbCentralPassword := generateDBPassword()
179174
err = r.managedDBInitFunc(ctx, dbConnection.WithPassword(dbMasterPassword).WithSSLRootCert(postgres.DatabaseCACertificatePathFleetshard),
180175
dbCentralUserName, dbCentralPassword)
181176
if err != nil {

fleetshard/pkg/central/reconciler/reconciler.go

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -857,13 +857,8 @@ func generateNewKeyChainFile(b64Key string) ([]byte, error) {
857857
return yamlBytes, nil
858858
}
859859

860-
func generateDBPassword() (string, error) {
861-
password, err := random.GenerateString(25, random.AlphanumericCharacters)
862-
if err != nil {
863-
return "", fmt.Errorf("generating DB password: %w", err)
864-
}
865-
866-
return password, nil
860+
func generateDBPassword() string {
861+
return random.GenerateString(25, random.AlphanumericCharacters)
867862
}
868863

869864
func (r *CentralReconciler) ensureInstancePodsTerminated(ctx context.Context, remoteCentral private.ManagedCentral) (bool, error) {

fleetshard/pkg/runtime/runtime.go

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,8 @@ func NewRuntime(ctx context.Context, config *config.Config, k8sClient ctrlClient
110110
}, nil
111111
}
112112

113-
// Stop stops the runtime
114-
func (r *Runtime) Stop() {
115-
}
116-
117113
// Start starts the fleetshard runtime and schedules
118-
func (r *Runtime) Start() error {
114+
func (r *Runtime) Start(ctx context.Context) error {
119115
glog.Info("fleetshard runtime started")
120116
glog.Infof("Auth provider initialisation enabled: %v", r.config.CreateAuthProvider)
121117

@@ -226,7 +222,7 @@ func (r *Runtime) Start() error {
226222
return r.config.RuntimePollPeriod, nil
227223
}, 10*time.Minute, backoff)
228224

229-
err := ticker.Start()
225+
err := ticker.Start(ctx)
230226
if err != nil {
231227
return fmt.Errorf("starting ticker: %w", err)
232228
}

go.mod

Lines changed: 74 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ require (
2929
github.com/gorilla/mux v1.8.1
3030
github.com/gruntwork-io/terratest v0.50.0
3131
github.com/hashicorp/go-multierror v1.1.1
32-
github.com/lib/pq v1.11.2
32+
github.com/lib/pq v1.12.0
3333
github.com/mendsley/gojwk v0.0.0-20141217222730-4d5ec6e58103
3434
github.com/olekukonko/tablewriter v1.1.4
3535
github.com/onsi/ginkgo/v2 v2.28.1
3636
github.com/onsi/gomega v1.39.1
37-
github.com/openshift-online/ocm-sdk-go v0.1.497
38-
github.com/openshift/api v0.0.0-20250320115527-3aa9dd5b9002
37+
github.com/openshift-online/ocm-sdk-go v0.1.498
38+
github.com/openshift/api v0.0.0-20251122153900-88cca31a44c9
3939
github.com/patrickmn/go-cache v2.1.0+incompatible
4040
github.com/pkg/errors v0.9.1
4141
github.com/prometheus/client_golang v1.23.2
@@ -49,48 +49,50 @@ require (
4949
github.com/stackrox/rox v0.0.0-20230323083409-e83503a98fb4
5050
github.com/stretchr/testify v1.11.1
5151
github.com/zgalor/weberr v0.9.0
52-
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f
52+
golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546
5353
golang.org/x/oauth2 v0.36.0
54-
golang.org/x/sync v0.19.0
55-
golang.org/x/sys v0.41.0
54+
golang.org/x/sync v0.20.0
55+
golang.org/x/sys v0.42.0
5656
gopkg.in/resty.v1 v1.12.0
5757
gopkg.in/yaml.v2 v2.4.0
5858
gorm.io/driver/postgres v1.6.0
5959
gorm.io/gorm v1.31.1
60-
k8s.io/api v0.35.0
61-
k8s.io/apimachinery v0.35.0
62-
k8s.io/client-go v0.35.0
60+
k8s.io/api v0.35.3
61+
k8s.io/apimachinery v0.35.3
62+
k8s.io/client-go v0.35.3
6363
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4
6464
sigs.k8s.io/controller-runtime v0.23.3
6565
sigs.k8s.io/yaml v1.6.0
6666
)
6767

6868
require (
69+
dario.cat/mergo v1.0.2 // indirect
6970
filippo.io/edwards25519 v1.1.1 // indirect
70-
github.com/BurntSushi/toml v1.4.0 // indirect
71+
github.com/BurntSushi/toml v1.6.0 // indirect
72+
github.com/Masterminds/semver v1.5.0 // indirect
7173
github.com/Masterminds/semver/v3 v3.4.0 // indirect
72-
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.7 // indirect
74+
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.8 // indirect
7375
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.20 // indirect
74-
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.41 // indirect
76+
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.22.9 // indirect
7577
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.20 // indirect
7678
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.20 // indirect
7779
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.6 // indirect
78-
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.24 // indirect
80+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.21 // indirect
7981
github.com/aws/aws-sdk-go-v2/service/acm v1.30.6 // indirect
8082
github.com/aws/aws-sdk-go-v2/service/autoscaling v1.51.0 // indirect
8183
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.44.0 // indirect
8284
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.37.1 // indirect
8385
github.com/aws/aws-sdk-go-v2/service/ec2 v1.193.0 // indirect
84-
github.com/aws/aws-sdk-go-v2/service/ecr v1.36.6 // indirect
86+
github.com/aws/aws-sdk-go-v2/service/ecr v1.56.1 // indirect
8587
github.com/aws/aws-sdk-go-v2/service/ecs v1.52.0 // indirect
8688
github.com/aws/aws-sdk-go-v2/service/iam v1.38.1 // indirect
8789
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.7 // indirect
88-
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.5 // indirect
90+
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.12 // indirect
8991
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.10.5 // indirect
9092
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.20 // indirect
91-
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.5 // indirect
93+
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.20 // indirect
9294
github.com/aws/aws-sdk-go-v2/service/lambda v1.69.0 // indirect
93-
github.com/aws/aws-sdk-go-v2/service/s3 v1.69.0 // indirect
95+
github.com/aws/aws-sdk-go-v2/service/s3 v1.97.2 // indirect
9496
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.34.6 // indirect
9597
github.com/aws/aws-sdk-go-v2/service/signin v1.0.8 // indirect
9698
github.com/aws/aws-sdk-go-v2/service/sns v1.33.6 // indirect
@@ -107,25 +109,36 @@ require (
107109
github.com/clipperhouse/displaywidth v0.10.0 // indirect
108110
github.com/clipperhouse/uax29/v2 v2.6.0 // indirect
109111
github.com/cloudflare/cfssl v1.6.5 // indirect
110-
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
112+
github.com/coder/websocket v1.8.14 // indirect
113+
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
111114
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
115+
github.com/distribution/reference v0.6.0 // indirect
112116
github.com/docker/distribution v2.8.3+incompatible // indirect
113-
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
114-
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
117+
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
115118
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
116-
github.com/fatih/color v1.18.0 // indirect
119+
github.com/fatih/color v1.19.0 // indirect
117120
github.com/felixge/httpsnoop v1.0.4 // indirect
118121
github.com/fsnotify/fsnotify v1.9.0 // indirect
119122
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
123+
github.com/georgysavva/scany/v2 v2.1.4 // indirect
120124
github.com/go-errors/errors v1.4.2 // indirect
121-
github.com/go-jose/go-jose/v3 v3.0.4 // indirect
122125
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
123-
github.com/go-openapi/jsonpointer v0.21.0 // indirect
124-
github.com/go-openapi/jsonreference v0.21.0 // indirect
125-
github.com/go-openapi/swag v0.23.0 // indirect
126-
github.com/go-sql-driver/mysql v1.8.1 // indirect
126+
github.com/go-openapi/jsonpointer v0.22.5 // indirect
127+
github.com/go-openapi/jsonreference v0.21.5 // indirect
128+
github.com/go-openapi/swag v0.25.5 // indirect
129+
github.com/go-openapi/swag/cmdutils v0.25.5 // indirect
130+
github.com/go-openapi/swag/conv v0.25.5 // indirect
131+
github.com/go-openapi/swag/fileutils v0.25.5 // indirect
132+
github.com/go-openapi/swag/jsonname v0.25.5 // indirect
133+
github.com/go-openapi/swag/jsonutils v0.25.5 // indirect
134+
github.com/go-openapi/swag/loading v0.25.5 // indirect
135+
github.com/go-openapi/swag/mangling v0.25.5 // indirect
136+
github.com/go-openapi/swag/netutils v0.25.5 // indirect
137+
github.com/go-openapi/swag/stringutils v0.25.5 // indirect
138+
github.com/go-openapi/swag/typeutils v0.25.5 // indirect
139+
github.com/go-openapi/swag/yamlutils v0.25.5 // indirect
140+
github.com/go-sql-driver/mysql v1.9.3 // indirect
127141
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
128-
github.com/gofrs/uuid v4.4.0+incompatible // indirect
129142
github.com/gogo/protobuf v1.3.2 // indirect
130143
github.com/golang/protobuf v1.5.4 // indirect
131144
github.com/gonvenience/bunt v1.3.5 // indirect
@@ -135,34 +148,30 @@ require (
135148
github.com/gonvenience/wrap v1.1.2 // indirect
136149
github.com/gonvenience/ytbx v1.4.4 // indirect
137150
github.com/google/btree v1.1.3 // indirect
138-
github.com/google/certificate-transparency-go v1.2.1 // indirect
139-
github.com/google/gnostic-models v0.7.0 // indirect
151+
github.com/google/certificate-transparency-go v1.3.3 // indirect
152+
github.com/google/gnostic-models v0.7.1 // indirect
140153
github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83 // indirect
141154
github.com/gorilla/css v1.0.0 // indirect
142-
github.com/gorilla/schema v1.4.1 // indirect
143155
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
144156
github.com/graph-gophers/graphql-go v1.5.0 // indirect
145-
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.0 // indirect
146-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
157+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.3 // indirect
158+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
147159
github.com/gruntwork-io/go-commons v0.8.0 // indirect
148160
github.com/hashicorp/errwrap v1.1.0 // indirect
149161
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
150162
github.com/homeport/dyff v1.6.0 // indirect
151163
github.com/inconshreveable/mousetrap v1.1.0 // indirect
152-
github.com/itchyny/gojq v0.12.17 // indirect
153164
github.com/jackc/pgpassfile v1.0.0 // indirect
154165
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
155-
github.com/jackc/pgx/v5 v5.7.1 // indirect
166+
github.com/jackc/pgx/v5 v5.9.1 // indirect
156167
github.com/jackc/puddle/v2 v2.2.2 // indirect
157168
github.com/jinzhu/inflection v1.0.0 // indirect
158169
github.com/jinzhu/now v1.1.5 // indirect
159-
github.com/jmespath/go-jmespath v0.4.0 // indirect
170+
github.com/jmespath/go-jmespath v0.4.1-0.20220621161143-b0104c826a24 // indirect
160171
github.com/jmoiron/sqlx v1.4.0 // indirect
161-
github.com/josharian/intern v1.0.0 // indirect
162172
github.com/json-iterator/go v1.1.12 // indirect
163173
github.com/kylelemons/godebug v1.1.0 // indirect
164174
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
165-
github.com/mailru/easyjson v0.7.7 // indirect
166175
github.com/mattn/go-ciede2000 v0.0.0-20170301095244-782e8c62fec3 // indirect
167176
github.com/mattn/go-colorable v0.1.14 // indirect
168177
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -173,7 +182,6 @@ require (
173182
github.com/mitchellh/go-ps v1.0.0 // indirect
174183
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
175184
github.com/mitchellh/hashstructure v1.1.0 // indirect
176-
github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect
177185
github.com/moby/spdystream v0.5.0 // indirect
178186
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
179187
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
@@ -182,53 +190,55 @@ require (
182190
github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6 // indirect
183191
github.com/olekukonko/errors v1.2.0 // indirect
184192
github.com/olekukonko/ll v0.1.6 // indirect
185-
github.com/openshift-online/ocm-api-model/clientapi v0.0.452 // indirect
186-
github.com/openshift-online/ocm-api-model/model v0.0.452 // indirect
187-
github.com/openshift/client-go v0.0.0-20250324153519-f0faeb0f2f2e // indirect
193+
github.com/opencontainers/go-digest v1.0.0 // indirect
194+
github.com/openshift-online/ocm-api-model/clientapi v0.0.453 // indirect
195+
github.com/openshift-online/ocm-api-model/model v0.0.453 // indirect
196+
github.com/openshift/client-go v0.0.0-20251123231646-4685125c2287 // indirect
188197
github.com/pelletier/go-toml v1.9.5 // indirect
189-
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
198+
github.com/planetscale/vtprotobuf v0.6.1-0.20240409071808-615f978279ca // indirect
190199
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
191200
github.com/pquerna/otp v1.4.0 // indirect
192-
github.com/prometheus/procfs v0.16.1 // indirect
201+
github.com/prometheus/procfs v0.17.0 // indirect
193202
github.com/russross/blackfriday/v2 v2.1.0 // indirect
194203
github.com/segmentio/analytics-go/v3 v3.3.0 // indirect
195204
github.com/segmentio/backo-go v1.0.1 // indirect
196-
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
197-
github.com/sirupsen/logrus v1.9.3 // indirect
205+
github.com/sergi/go-diff v1.4.0 // indirect
206+
github.com/sirupsen/logrus v1.9.4 // indirect
198207
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 // indirect
208+
github.com/stackrox/hashstructure v0.0.4 // indirect
199209
github.com/stackrox/scanner v0.0.0-20240830165150-d133ba942d59 // indirect
200210
github.com/texttheater/golang-levenshtein v1.0.1 // indirect
201211
github.com/tkuchiki/go-timezone v0.2.3 // indirect
202212
github.com/urfave/cli v1.22.16 // indirect
203213
github.com/virtuald/go-ordered-json v0.0.0-20170621173500-b18e6e673d74 // indirect
204-
github.com/weppos/publicsuffix-go v0.30.3-0.20240411085455-21202160c2ed // indirect
214+
github.com/weppos/publicsuffix-go v0.50.1-0.20250829105427-5340293a34a1 // indirect
205215
github.com/x448/float16 v0.8.4 // indirect
206-
github.com/zmap/zcrypto v0.0.0-20231219022726-a1f61fb1661c // indirect
207-
github.com/zmap/zlint/v3 v3.6.0 // indirect
216+
github.com/zmap/zcrypto v0.0.0-20250129210703-03c45d0bae98 // indirect
217+
github.com/zmap/zlint/v3 v3.6.6 // indirect
208218
go.uber.org/atomic v1.11.0 // indirect
219+
go.uber.org/mock v0.6.0 // indirect
209220
go.uber.org/multierr v1.11.0 // indirect
210-
go.uber.org/zap v1.27.0 // indirect
221+
go.uber.org/zap v1.27.1 // indirect
211222
go.yaml.in/yaml/v2 v2.4.3 // indirect
212223
go.yaml.in/yaml/v3 v3.0.4 // indirect
213-
golang.org/x/crypto v0.47.0 // indirect
214-
golang.org/x/exp/typeparams v0.0.0-20230307190834-24139beb5833 // indirect
215-
golang.org/x/lint v0.0.0-20241112194109-818c5a804067 // indirect
216-
golang.org/x/mod v0.32.0 // indirect
217-
golang.org/x/net v0.49.0 // indirect
218-
golang.org/x/term v0.39.0 // indirect
219-
golang.org/x/text v0.33.0 // indirect
220-
golang.org/x/time v0.9.0 // indirect
221-
golang.org/x/tools v0.41.0 // indirect
224+
golang.org/x/crypto v0.49.0 // indirect
225+
golang.org/x/mod v0.34.0 // indirect
226+
golang.org/x/net v0.52.0 // indirect
227+
golang.org/x/term v0.41.0 // indirect
228+
golang.org/x/text v0.35.0 // indirect
229+
golang.org/x/time v0.15.0 // indirect
230+
golang.org/x/tools v0.43.0 // indirect
231+
golang.stackrox.io/grpc-http1 v0.5.1 // indirect
222232
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
223-
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
224-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
233+
google.golang.org/genproto/googleapis/api v0.0.0-20260316180232-0b37fe3546d5 // indirect
234+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260316180232-0b37fe3546d5 // indirect
225235
google.golang.org/grpc v1.79.3 // indirect
226236
google.golang.org/protobuf v1.36.11 // indirect
227237
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
228238
gopkg.in/inf.v0 v0.9.1 // indirect
239+
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
229240
gopkg.in/yaml.v3 v3.0.1 // indirect
230-
honnef.co/go/tools v0.4.6 // indirect
231-
k8s.io/apiextensions-apiserver v0.35.0 // indirect
241+
k8s.io/apiextensions-apiserver v0.35.3 // indirect
232242
k8s.io/klog/v2 v2.130.1 // indirect
233243
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
234244
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
@@ -243,6 +253,6 @@ replace (
243253
github.com/gogo/protobuf => github.com/connorgorman/protobuf v1.2.2-0.20210115205927-b892c1b298f7
244254
github.com/heroku/docker-registry-client => github.com/stackrox/docker-registry-client v0.0.0-20230411213734-d75b95d65d28
245255
github.com/operator-framework/helm-operator-plugins => github.com/stackrox/helm-operator v0.0.12-0.20221003092512-fbf71229411f
246-
github.com/stackrox/rox => github.com/stackrox/stackrox v0.0.0-20241218141528-2037522bc808 // v4.6.1
247-
go.uber.org/zap => github.com/stackrox/zap v1.15.1-0.20230918235618-2bd149903d0e
256+
github.com/stackrox/rox => github.com/stackrox/stackrox v0.0.0-20260303034306-7b817fa511ac // v4.10.0
257+
go.uber.org/zap => github.com/stackrox/zap v1.18.2-0.20240314134248-5f932edd0404
248258
)

0 commit comments

Comments
 (0)