Skip to content

Commit 220c39e

Browse files
committed
syntax fix
1 parent 951d5e4 commit 220c39e

File tree

3 files changed

+150
-141
lines changed

3 files changed

+150
-141
lines changed

go.mod

Lines changed: 45 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,68 @@
11
module github.com/spotahome/redis-operator
22

3-
go 1.22
3+
go 1.24
4+
5+
toolchain go1.24.0
46

57
require (
68
github.com/go-redis/redis/v8 v8.11.5
7-
github.com/prometheus/client_golang v1.16.0
9+
github.com/prometheus/client_golang v1.21.1
810
github.com/sirupsen/logrus v1.9.3
9-
github.com/spotahome/kooper/v2 v2.4.0
10-
github.com/stretchr/testify v1.8.4
11-
k8s.io/api v0.27.3
11+
github.com/spotahome/kooper/v2 v2.8.0
12+
github.com/stretchr/testify v1.10.0
13+
k8s.io/api v0.32.3
1214
k8s.io/apiextensions-apiserver v0.24.4
13-
k8s.io/apimachinery v0.27.3
14-
k8s.io/client-go v0.27.3
15+
k8s.io/apimachinery v0.32.3
16+
k8s.io/client-go v0.32.3
1517
)
1618

1719
require (
1820
github.com/beorn7/perks v1.0.1 // indirect
19-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
20-
github.com/davecgh/go-spew v1.1.1 // indirect
21+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
22+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2123
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
22-
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
23-
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
24-
github.com/go-logr/logr v1.2.3 // indirect
25-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
26-
github.com/go-openapi/jsonreference v0.20.1 // indirect
27-
github.com/go-openapi/swag v0.22.3 // indirect
24+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
25+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
26+
github.com/go-logr/logr v1.4.2 // indirect
27+
github.com/go-openapi/jsonpointer v0.21.1 // indirect
28+
github.com/go-openapi/jsonreference v0.21.0 // indirect
29+
github.com/go-openapi/swag v0.23.1 // indirect
2830
github.com/gogo/protobuf v1.3.2 // indirect
29-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
30-
github.com/golang/protobuf v1.5.3 // indirect
31-
github.com/google/gnostic v0.5.7-v3refs // indirect
32-
github.com/google/go-cmp v0.5.9 // indirect
31+
github.com/golang/protobuf v1.5.4 // indirect
32+
github.com/google/gnostic-models v0.6.9 // indirect
33+
github.com/google/go-cmp v0.7.0 // indirect
3334
github.com/google/gofuzz v1.2.0 // indirect
34-
github.com/google/uuid v1.3.0 // indirect
35-
github.com/imdario/mergo v0.3.12 // indirect
35+
github.com/google/uuid v1.6.0 // indirect
3636
github.com/josharian/intern v1.0.0 // indirect
3737
github.com/json-iterator/go v1.1.12 // indirect
38-
github.com/mailru/easyjson v0.7.7 // indirect
39-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
38+
github.com/klauspost/compress v1.18.0 // indirect
39+
github.com/mailru/easyjson v0.9.0 // indirect
4040
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4141
github.com/modern-go/reflect2 v1.0.2 // indirect
4242
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4343
github.com/pkg/errors v0.9.1 // indirect
44-
github.com/pmezard/go-difflib v1.0.0 // indirect
45-
github.com/prometheus/client_model v0.3.0 // indirect
46-
github.com/prometheus/common v0.42.0 // indirect
47-
github.com/prometheus/procfs v0.10.1 // indirect
48-
github.com/spf13/pflag v1.0.5 // indirect
49-
github.com/stretchr/objx v0.5.0 // indirect
50-
golang.org/x/net v0.23.0 // indirect
51-
golang.org/x/oauth2 v0.5.0 // indirect
52-
golang.org/x/sys v0.18.0 // indirect
53-
golang.org/x/term v0.18.0 // indirect
54-
golang.org/x/text v0.14.0 // indirect
55-
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
56-
google.golang.org/appengine v1.6.7 // indirect
57-
google.golang.org/protobuf v1.33.0 // indirect
44+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
45+
github.com/prometheus/client_model v0.6.1 // indirect
46+
github.com/prometheus/common v0.63.0 // indirect
47+
github.com/prometheus/procfs v0.16.0 // indirect
48+
github.com/spf13/pflag v1.0.6 // indirect
49+
github.com/stretchr/objx v0.5.2 // indirect
50+
github.com/x448/float16 v0.8.4 // indirect
51+
golang.org/x/net v0.37.0 // indirect
52+
golang.org/x/oauth2 v0.28.0 // indirect
53+
golang.org/x/sys v0.31.0 // indirect
54+
golang.org/x/term v0.30.0 // indirect
55+
golang.org/x/text v0.23.0 // indirect
56+
golang.org/x/time v0.11.0 // indirect
57+
google.golang.org/protobuf v1.36.5 // indirect
58+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
5859
gopkg.in/inf.v0 v0.9.1 // indirect
59-
gopkg.in/yaml.v2 v2.4.0 // indirect
6060
gopkg.in/yaml.v3 v3.0.1 // indirect
61-
k8s.io/klog/v2 v2.90.1 // indirect
62-
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect
63-
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
64-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
65-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
66-
sigs.k8s.io/yaml v1.3.0 // indirect
61+
k8s.io/klog/v2 v2.130.1 // indirect
62+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
63+
k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect
64+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
65+
sigs.k8s.io/randfill v1.0.0 // indirect
66+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
67+
sigs.k8s.io/yaml v1.4.0 // indirect
6768
)

0 commit comments

Comments
 (0)