|
1 | 1 | module github.com/rancher/cli
|
2 | 2 |
|
3 |
| -go 1.22.0 |
| 3 | +go 1.23.0 |
4 | 4 |
|
5 |
| -toolchain go1.22.7 |
| 5 | +toolchain go1.23.7 |
6 | 6 |
|
7 | 7 | replace (
|
8 |
| - k8s.io/client-go => k8s.io/client-go v0.28.9 |
9 |
| - k8s.io/kubernetes => k8s.io/kubernetes v1.28.9 |
| 8 | + golang.org/x/net => golang.org/x/net v0.36.0 |
| 9 | + k8s.io/api => k8s.io/api v0.28.12 |
| 10 | + k8s.io/client-go => k8s.io/client-go v0.28.12 |
| 11 | + k8s.io/kubernetes => k8s.io/kubernetes v1.28.12 |
10 | 12 | )
|
11 | 13 |
|
12 | 14 | require (
|
13 | 15 | github.com/ghodss/yaml v1.0.0
|
14 | 16 | github.com/grantae/certinfo v0.0.0-20170412194111-59d56a35515b
|
15 | 17 | github.com/hashicorp/go-version v1.2.1
|
16 | 18 | github.com/pkg/errors v0.9.1
|
17 |
| - github.com/rancher/norman v0.0.0-20240522191341-a0c752c7fa37 |
18 |
| - github.com/rancher/rancher/pkg/apis v0.0.0-20240919204203-e61d915fb7af |
19 |
| - github.com/rancher/rancher/pkg/client v0.0.0-20240919204203-e61d915fb7af |
| 19 | + github.com/rancher/norman v0.2.0 |
| 20 | + github.com/rancher/rancher/pkg/apis v0.0.0-20250325203928-5edcfa885eda |
| 21 | + github.com/rancher/rancher/pkg/client v0.0.0-20250325203928-5edcfa885eda |
20 | 22 | github.com/sirupsen/logrus v1.9.3
|
21 |
| - github.com/stretchr/testify v1.9.0 |
| 23 | + github.com/stretchr/testify v1.10.0 |
22 | 24 | github.com/tidwall/gjson v1.17.0
|
23 | 25 | github.com/urfave/cli v1.22.5
|
24 |
| - golang.org/x/oauth2 v0.23.0 |
25 |
| - golang.org/x/sync v0.8.0 |
26 |
| - golang.org/x/term v0.24.0 |
27 |
| - golang.org/x/text v0.18.0 |
| 26 | + golang.org/x/oauth2 v0.25.0 |
| 27 | + golang.org/x/sync v0.11.0 |
| 28 | + golang.org/x/term v0.29.0 |
| 29 | + golang.org/x/text v0.22.0 |
28 | 30 | gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
|
29 | 31 | gopkg.in/yaml.v2 v2.4.0
|
30 | 32 | k8s.io/client-go v12.0.0+incompatible
|
@@ -63,34 +65,34 @@ require (
|
63 | 65 | github.com/prometheus/client_model v0.4.0 // indirect
|
64 | 66 | github.com/prometheus/common v0.44.0 // indirect
|
65 | 67 | github.com/prometheus/procfs v0.10.1 // indirect
|
66 |
| - github.com/rancher/aks-operator v1.2.5 // indirect |
67 |
| - github.com/rancher/eks-operator v1.3.5 // indirect |
68 |
| - github.com/rancher/fleet/pkg/apis v0.9.6 // indirect |
69 |
| - github.com/rancher/gke-operator v1.2.5 // indirect |
| 68 | + github.com/rancher/aks-operator v1.2.7 // indirect |
| 69 | + github.com/rancher/eks-operator v1.3.7 // indirect |
| 70 | + github.com/rancher/fleet/pkg/apis v0.9.13 // indirect |
| 71 | + github.com/rancher/gke-operator v1.2.7 // indirect |
70 | 72 | github.com/rancher/lasso v0.0.0-20240123150939-7055397d6dfa // indirect
|
71 |
| - github.com/rancher/rke v1.5.13 // indirect |
| 73 | + github.com/rancher/rke v1.5.15 // indirect |
72 | 74 | github.com/rancher/wrangler/v2 v2.1.4 // indirect
|
73 | 75 | github.com/rogpeppe/go-internal v1.10.0 // indirect
|
74 | 76 | github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
75 | 77 | github.com/spf13/pflag v1.0.5 // indirect
|
76 | 78 | github.com/tidwall/match v1.1.1 // indirect
|
77 | 79 | github.com/tidwall/pretty v1.2.0 // indirect
|
78 |
| - golang.org/x/net v0.29.0 // indirect |
79 |
| - golang.org/x/sys v0.25.0 // indirect |
| 80 | + golang.org/x/net v0.34.0 // indirect |
| 81 | + golang.org/x/sys v0.30.0 // indirect |
80 | 82 | golang.org/x/time v0.5.0 // indirect
|
81 |
| - google.golang.org/protobuf v1.34.1 // indirect |
| 83 | + google.golang.org/protobuf v1.36.1 // indirect |
82 | 84 | gopkg.in/inf.v0 v0.9.1 // indirect
|
83 | 85 | gopkg.in/yaml.v3 v3.0.1 // indirect
|
84 |
| - k8s.io/api v0.28.9 // indirect |
85 |
| - k8s.io/apimachinery v0.28.9 // indirect |
| 86 | + k8s.io/api v0.29.14 // indirect |
| 87 | + k8s.io/apimachinery v0.29.14 // indirect |
86 | 88 | k8s.io/apiserver v0.28.9 // indirect
|
87 | 89 | k8s.io/component-base v0.28.9 // indirect
|
88 |
| - k8s.io/klog/v2 v2.100.1 // indirect |
89 |
| - k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect |
90 |
| - k8s.io/kubernetes v1.28.8 // indirect |
91 |
| - k8s.io/utils v0.0.0-20230505201702-9f6742963106 // indirect |
| 90 | + k8s.io/klog/v2 v2.110.1 // indirect |
| 91 | + k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect |
| 92 | + k8s.io/kubernetes v1.28.9 // indirect |
| 93 | + k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect |
92 | 94 | sigs.k8s.io/cli-utils v0.28.0 // indirect
|
93 | 95 | sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
|
94 |
| - sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect |
| 96 | + sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect |
95 | 97 | sigs.k8s.io/yaml v1.4.0 // indirect
|
96 | 98 | )
|
0 commit comments