Skip to content

Commit 6c774cf

Browse files
Bump dependencies for v2.11 (#414)
1 parent 265074f commit 6c774cf

10 files changed

+153
-151
lines changed

cliclient/cliclient.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"fmt"
66
"strings"
77

8-
errorsPkg "github.com/pkg/errors"
98
"github.com/rancher/cli/config"
109
"github.com/rancher/norman/clientbase"
1110
ntypes "github.com/rancher/norman/types"
@@ -120,7 +119,7 @@ func (mc *MasterClient) newClusterClient() error {
120119
cc, err := clusterClient.NewClient(options)
121120
if err != nil {
122121
if clientbase.IsNotFound(err) {
123-
err = errorsPkg.WithMessage(err, "Current cluster not available, try running `rancher context switch`. Error")
122+
err = fmt.Errorf("current cluster not available, try running `rancher context switch`: %w", err)
124123
}
125124
return err
126125
}
@@ -137,7 +136,7 @@ func (mc *MasterClient) newProjectClient() error {
137136
pc, err := projectClient.NewClient(options)
138137
if err != nil {
139138
if clientbase.IsNotFound(err) {
140-
err = errorsPkg.WithMessage(err, "Current project not available, try running `rancher context switch`. Error")
139+
err = fmt.Errorf("current project not available, try running `rancher context switch: %w", err)
141140
}
142141
return err
143142
}

cmd/common.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"crypto/tls"
77
"crypto/x509"
88
"encoding/pem"
9+
"errors"
910
"fmt"
1011
"io"
1112
"math/rand"
@@ -23,7 +24,6 @@ import (
2324
"unicode"
2425

2526
"github.com/ghodss/yaml"
26-
"github.com/pkg/errors"
2727
"github.com/rancher/cli/cliclient"
2828
"github.com/rancher/cli/config"
2929
"github.com/rancher/norman/clientbase"
@@ -266,7 +266,7 @@ func verifyCert(caCert []byte) (string, error) {
266266
block, _ := pem.Decode(caCert)
267267

268268
if nil == block {
269-
return "", errors.New("No cert was found")
269+
return "", errors.New("no cert was found")
270270
}
271271

272272
parsedCert, err := x509.ParseCertificate(block.Bytes)
@@ -275,7 +275,7 @@ func verifyCert(caCert []byte) (string, error) {
275275
}
276276

277277
if !parsedCert.IsCA {
278-
return "", errors.New("CACerts is not valid")
278+
return "", errors.New("caCerts is not valid")
279279
}
280280
return string(caCert), nil
281281
}

cmd/kubectl_token_oauth.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import (
88
"net/http"
99
"strings"
1010

11-
"github.com/pkg/errors"
1211
apiv3 "github.com/rancher/rancher/pkg/apis/management.cattle.io/v3"
1312
managementClient "github.com/rancher/rancher/pkg/client/generated/management/v3"
1413
"golang.org/x/oauth2"
@@ -53,7 +52,7 @@ func newOauthConfig(provider TypedProvider) (*oauth2.Config, error) {
5352
case *apiv3.AzureADProvider:
5453
oauthProvider = p.OAuthProvider
5554
default:
56-
return nil, errors.New("provider is not a supported OAuth provider")
55+
return nil, fmt.Errorf("provider %s is not a supported OAuth provider", provider.GetType())
5756
}
5857

5958
return &oauth2.Config{

cmd/namespace.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package cmd
33
import (
44
"fmt"
55

6-
"github.com/pkg/errors"
76
"github.com/rancher/cli/cliclient"
87
clusterClient "github.com/rancher/rancher/pkg/client/generated/cluster/v3"
98
"github.com/urfave/cli"
@@ -200,7 +199,7 @@ func namespaceMove(ctx *cli.Context) error {
200199
}
201200

202201
if anno, ok := namespace.Annotations["cattle.io/appIds"]; ok && anno != "" {
203-
return errors.Errorf("Namespace %v cannot be moved", namespace.Name)
202+
return fmt.Errorf("namespace %s cannot be moved", namespace.Name)
204203
}
205204

206205
if _, ok := namespace.Actions["move"]; ok {

cmd/server.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ package cmd
22

33
import (
44
"bufio"
5+
"errors"
56
"fmt"
67
"io"
78
"os"
89
"sort"
910
"strconv"
1011
"strings"
1112

12-
"github.com/pkg/errors"
1313
"github.com/rancher/cli/config"
1414
"github.com/sirupsen/logrus"
1515
"github.com/urfave/cli"
@@ -98,7 +98,7 @@ func serverCurrent(out io.Writer, cfg *config.Config) error {
9898

9999
currentServer, found := cfg.Servers[serverName]
100100
if !found {
101-
return errors.New("Current server not set")
101+
return errors.New("current server not set")
102102
}
103103

104104
fmt.Fprintf(out, "Name: %s URL: %s\n", serverName, currentServer.URL)
@@ -109,7 +109,7 @@ func serverCurrent(out io.Writer, cfg *config.Config) error {
109109
func serverDelete(cfg *config.Config, serverName string) error {
110110
_, ok := cfg.Servers[serverName]
111111
if !ok {
112-
return errors.New("Server not found")
112+
return errors.New("server not found")
113113
}
114114
delete(cfg.Servers, serverName)
115115

@@ -152,7 +152,7 @@ func serverLs(out io.Writer, cfg *config.Config, format string) error {
152152
func serverSwitch(cf *config.Config, serverName string) error {
153153
_, ok := cf.Servers[serverName]
154154
if !ok {
155-
return errors.New("Server not found")
155+
return errors.New("server not found")
156156
}
157157

158158
if len(cf.Servers[serverName].Project) == 0 {

cmd/server_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func TestServerCurrentCommand(t *testing.T) {
2828
cfg.CurrentServer = ""
2929
return cfg
3030
}(),
31-
expectedErr: "Current server not set",
31+
expectedErr: "current server not set",
3232
},
3333
{
3434
name: "non existing current server set",
@@ -38,7 +38,7 @@ func TestServerCurrentCommand(t *testing.T) {
3838
"my-server": {URL: "https://myserver.com"},
3939
},
4040
},
41-
expectedErr: "Current server not set",
41+
expectedErr: "current server not set",
4242
},
4343
}
4444
for _, tc := range tt {
@@ -84,7 +84,7 @@ func TestServerDelete(t *testing.T) {
8484
actualCurrentServer: "server1",
8585
serverToDelete: "server-nope",
8686
expectedCurrentServer: "server1",
87-
expectedErr: "Server not found",
87+
expectedErr: "server not found",
8888
},
8989
}
9090
for _, tc := range tt {
@@ -140,14 +140,14 @@ func TestServerSwitch(t *testing.T) {
140140
actualCurrentServer: "server1",
141141
serverName: "server-nope",
142142
expectedCurrentServer: "server1",
143-
expectedErr: "Server not found",
143+
expectedErr: "server not found",
144144
},
145145
{
146146
name: "switch to empty server fails",
147147
actualCurrentServer: "server1",
148148
serverName: "",
149149
expectedCurrentServer: "server1",
150-
expectedErr: "Server not found",
150+
expectedErr: "server not found",
151151
},
152152
}
153153
for _, tc := range tt {

cmd/ssh.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"crypto/tls"
77
"crypto/x509"
88
"encoding/json"
9+
"errors"
910
"fmt"
1011
"io"
1112
"net/http"
@@ -14,7 +15,6 @@ import (
1415
"path"
1516
"strings"
1617

17-
"github.com/pkg/errors"
1818
"github.com/rancher/cli/cliclient"
1919
managementClient "github.com/rancher/rancher/pkg/client/generated/management/v3"
2020
"github.com/urfave/cli"

go.mod

+40-36
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,23 @@ go 1.23.4
44

55
toolchain go1.23.7
66

7-
replace k8s.io/client-go => k8s.io/client-go v0.31.1
7+
replace k8s.io/client-go => k8s.io/client-go v0.32.2
88

99
require (
1010
github.com/ghodss/yaml v1.0.0
1111
github.com/grantae/certinfo v0.0.0-20170412194111-59d56a35515b
12-
github.com/pkg/errors v0.9.1
13-
github.com/rancher/norman v0.0.0-20241001183610-78a520c160ab
14-
github.com/rancher/rancher/pkg/apis v0.0.0-20241119163817-d801b4924311
15-
github.com/rancher/rancher/pkg/client v0.0.0-20241119163817-d801b4924311
12+
github.com/rancher/norman v0.5.2
13+
github.com/rancher/rancher/pkg/apis v0.0.0-20250312180415-94853c35bd1e
14+
github.com/rancher/rancher/pkg/client v0.0.0-20250312180415-94853c35bd1e
1615
github.com/sirupsen/logrus v1.9.3
17-
github.com/stretchr/testify v1.9.0
16+
github.com/stretchr/testify v1.10.0
1817
github.com/tidwall/gjson v1.17.0
19-
github.com/urfave/cli v1.22.5
20-
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a
21-
golang.org/x/oauth2 v0.23.0
22-
golang.org/x/sync v0.8.0
23-
golang.org/x/term v0.25.0
24-
golang.org/x/text v0.19.0
18+
github.com/urfave/cli v1.22.14
19+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
20+
golang.org/x/oauth2 v0.26.0
21+
golang.org/x/sync v0.11.0
22+
golang.org/x/term v0.29.0
23+
golang.org/x/text v0.22.0
2524
k8s.io/client-go v12.0.0+incompatible
2625
)
2726

@@ -35,55 +34,60 @@ require (
3534
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
3635
github.com/go-logr/logr v1.4.2 // indirect
3736
github.com/go-openapi/jsonpointer v0.21.0 // indirect
38-
github.com/go-openapi/jsonreference v0.20.2 // indirect
37+
github.com/go-openapi/jsonreference v0.21.0 // indirect
3938
github.com/go-openapi/swag v0.23.0 // indirect
4039
github.com/gogo/protobuf v1.3.2 // indirect
4140
github.com/golang/protobuf v1.5.4 // indirect
42-
github.com/google/gnostic-models v0.6.8 // indirect
41+
github.com/google/gnostic-models v0.6.9 // indirect
4342
github.com/google/go-cmp v0.6.0 // indirect
4443
github.com/google/gofuzz v1.2.0 // indirect
4544
github.com/google/uuid v1.6.0 // indirect
4645
github.com/gorilla/websocket v1.5.3 // indirect
47-
github.com/imdario/mergo v0.3.16 // indirect
46+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4847
github.com/josharian/intern v1.0.0 // indirect
4948
github.com/json-iterator/go v1.1.12 // indirect
49+
github.com/klauspost/compress v1.17.9 // indirect
5050
github.com/mailru/easyjson v0.7.7 // indirect
5151
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5252
github.com/modern-go/reflect2 v1.0.2 // indirect
5353
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
54+
github.com/pkg/errors v0.9.1 // indirect
5455
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
55-
github.com/prometheus/client_golang v1.19.1 // indirect
56+
github.com/prometheus/client_golang v1.20.5 // indirect
5657
github.com/prometheus/client_model v0.6.1 // indirect
5758
github.com/prometheus/common v0.55.0 // indirect
5859
github.com/prometheus/procfs v0.15.1 // indirect
59-
github.com/rancher/aks-operator v1.10.0 // indirect
60-
github.com/rancher/eks-operator v1.10.0 // indirect
61-
github.com/rancher/fleet/pkg/apis v0.11.0 // indirect
62-
github.com/rancher/gke-operator v1.10.0 // indirect
63-
github.com/rancher/lasso v0.0.0-20240924233157-8f384efc8813 // indirect
64-
github.com/rancher/rke v1.7.0-rc.5 // indirect
65-
github.com/rancher/wrangler/v3 v3.1.0 // indirect
60+
github.com/rancher/aks-operator v1.11.0-rc.5 // indirect
61+
github.com/rancher/eks-operator v1.11.0-rc.4 // indirect
62+
github.com/rancher/fleet/pkg/apis v0.12.0-alpha.2.0.20250307143218-68772e96751c // indirect
63+
github.com/rancher/gke-operator v1.11.0-rc.4 // indirect
64+
github.com/rancher/lasso v0.2.1 // indirect
65+
github.com/rancher/rke v1.8.0-rc.4 // indirect
66+
github.com/rancher/wrangler/v3 v3.2.0-rc.3 // indirect
6667
github.com/russross/blackfriday/v2 v2.1.0 // indirect
68+
github.com/spf13/cobra v1.8.1 // indirect
6769
github.com/spf13/pflag v1.0.5 // indirect
6870
github.com/tidwall/match v1.1.1 // indirect
6971
github.com/tidwall/pretty v1.2.0 // indirect
7072
github.com/x448/float16 v0.8.4 // indirect
71-
golang.org/x/net v0.30.0 // indirect
72-
golang.org/x/sys v0.26.0 // indirect
73-
golang.org/x/time v0.7.0 // indirect
74-
google.golang.org/protobuf v1.35.1 // indirect
73+
go.opentelemetry.io/otel v1.34.0 // indirect
74+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
75+
golang.org/x/net v0.35.0 // indirect
76+
golang.org/x/sys v0.30.0 // indirect
77+
golang.org/x/time v0.10.0 // indirect
78+
google.golang.org/protobuf v1.36.5 // indirect
7579
gopkg.in/inf.v0 v0.9.1 // indirect
7680
gopkg.in/yaml.v2 v2.4.0 // indirect
7781
gopkg.in/yaml.v3 v3.0.1 // indirect
78-
k8s.io/api v0.31.1 // indirect
79-
k8s.io/apimachinery v0.31.1 // indirect
80-
k8s.io/apiserver v0.31.1 // indirect
81-
k8s.io/component-base v0.31.1 // indirect
82+
k8s.io/api v0.32.2 // indirect
83+
k8s.io/apimachinery v0.32.2 // indirect
84+
k8s.io/apiserver v0.32.2 // indirect
85+
k8s.io/component-base v0.32.2 // indirect
8286
k8s.io/klog/v2 v2.130.1 // indirect
83-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
84-
k8s.io/kubernetes v1.31.1 // indirect
85-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
86-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
87-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
87+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
88+
k8s.io/kubernetes v1.32.1 // indirect
89+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
90+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
91+
sigs.k8s.io/structured-merge-diff/v4 v4.4.3 // indirect
8892
sigs.k8s.io/yaml v1.4.0 // indirect
8993
)

0 commit comments

Comments
 (0)