Skip to content

Commit e9e57f1

Browse files
authored
Updated the dependencies for 1.18 release (#388)
* Updated the dependencies for 1.18 release * Fixed the linter issue
1 parent a7b93fe commit e9e57f1

File tree

74 files changed

+3800
-3932
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+3800
-3932
lines changed

go.mod

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
module knative.dev/kn-plugin-operator
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/briandowns/spinner v1.18.1
77
github.com/ghodss/yaml v1.0.0
88
github.com/k14s/ytt v0.39.0
9-
github.com/manifestival/client-go-client v0.5.0
10-
github.com/spf13/cobra v1.3.0
11-
golang.org/x/mod v0.23.0
9+
github.com/manifestival/client-go-client v0.6.0
10+
github.com/spf13/cobra v1.8.1
11+
golang.org/x/mod v0.24.0
1212
k8s.io/api v0.32.2
1313
k8s.io/apimachinery v0.32.2
1414
k8s.io/client-go v0.32.2
15-
knative.dev/hack v0.0.0-20250217122557-ce4c934f30e5
16-
knative.dev/operator v0.44.1-0.20250218124051-7709bf7dbee2
17-
knative.dev/pkg v0.0.0-20250218011850-c925de2a3f07
15+
knative.dev/hack v0.0.0-20250331013814-c577ed9f7775
16+
knative.dev/operator v0.45.0
17+
knative.dev/pkg v0.0.0-20250415155312-ed3e2158b883
1818
)
1919

2020
require (
@@ -32,11 +32,11 @@ require (
3232
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3333
github.com/golang/protobuf v1.5.4 // indirect
3434
github.com/google/gnostic-models v0.6.9 // indirect
35-
github.com/google/go-cmp v0.6.0 // indirect
35+
github.com/google/go-cmp v0.7.0 // indirect
3636
github.com/google/gofuzz v1.2.0 // indirect
3737
github.com/google/uuid v1.6.0 // indirect
3838
github.com/hashicorp/go-version v1.4.0 // indirect
39-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
39+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4040
github.com/josharian/intern v1.0.0 // indirect
4141
github.com/json-iterator/go v1.1.12 // indirect
4242
github.com/k14s/starlark-go v0.0.0-20200720175618-3a5c849cc368 // indirect
@@ -54,15 +54,15 @@ require (
5454
go.opencensus.io v0.24.0 // indirect
5555
go.uber.org/multierr v1.11.0 // indirect
5656
go.uber.org/zap v1.27.0 // indirect
57-
golang.org/x/net v0.35.0 // indirect
57+
golang.org/x/net v0.39.0 // indirect
5858
golang.org/x/oauth2 v0.26.0 // indirect
59-
golang.org/x/sys v0.30.0 // indirect
60-
golang.org/x/term v0.29.0 // indirect
61-
golang.org/x/text v0.22.0 // indirect
59+
golang.org/x/sys v0.32.0 // indirect
60+
golang.org/x/term v0.31.0 // indirect
61+
golang.org/x/text v0.24.0 // indirect
6262
golang.org/x/time v0.10.0 // indirect
63-
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
63+
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
6464
google.golang.org/genproto/googleapis/api v0.0.0-20250207221924-e9438ea467c6 // indirect
65-
google.golang.org/protobuf v1.36.5 // indirect
65+
google.golang.org/protobuf v1.36.6 // indirect
6666
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
6767
gopkg.in/inf.v0 v0.9.1 // indirect
6868
gopkg.in/yaml.v2 v2.4.0 // indirect
@@ -71,7 +71,7 @@ require (
7171
k8s.io/klog/v2 v2.130.1 // indirect
7272
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
7373
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
74-
sigs.k8s.io/controller-runtime v0.7.2 // indirect
74+
sigs.k8s.io/controller-runtime v0.19.0 // indirect
7575
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
7676
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
7777
sigs.k8s.io/yaml v1.4.0 // indirect

go.sum

Lines changed: 372 additions & 348 deletions
Large diffs are not rendered by default.

pkg/command/uninstall/uninstall.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ func uninstallKnativeServing(uninstallFlags uninstallCmdFlags, p *pkg.OperatorPa
9999
}
100100

101101
if len(errstrings) != 0 {
102-
return fmt.Errorf(strings.Join(errstrings, "\n"))
102+
return fmt.Errorf("%s", strings.Join(errstrings, "\n"))
103103
}
104104
return nil
105105
}
@@ -124,7 +124,7 @@ func uninstallKnativeEventing(uninstallFlags uninstallCmdFlags, p *pkg.OperatorP
124124
}
125125

126126
if len(errstrings) != 0 {
127-
return fmt.Errorf(strings.Join(errstrings, "\n"))
127+
return fmt.Errorf("%s", strings.Join(errstrings, "\n"))
128128
}
129129
return nil
130130
}

test/e2e-common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ source "$(dirname "${BASH_SOURCE[0]}")/../vendor/knative.dev/hack/e2e-tests.sh"
2121
function install_istio() {
2222
echo ">> Installing Istio"
2323
curl -sL https://istio.io/downloadIstioctl | sh -
24-
$HOME/.istioctl/bin/istioctl install -y
24+
$HOME/.istioctl/bin/istioctl install --set values.cni.cniBinDir=/home/kubernetes/bin -y
2525
}

vendor/github.com/google/go-cmp/cmp/internal/function/func.go

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/go-cmp/cmp/options.go

Lines changed: 9 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/inconshreveable/mousetrap/LICENSE

Lines changed: 198 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/inconshreveable/mousetrap/trap_others.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)