Skip to content

Commit 114bc29

Browse files
authored
Merge pull request #320 from akrejcir/update-deps-on-stable
deps: Update dependencies to more align with "main" branch
2 parents 0a1fda6 + e2de4b0 commit 114bc29

File tree

141 files changed

+6105
-1819
lines changed

Some content is hidden

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

141 files changed

+6105
-1819
lines changed

Diff for: go.mod

+18-18
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ module kubevirt.io/vm-console-proxy
33
go 1.22.4
44

55
require (
6-
github.com/emicklei/go-restful/v3 v3.12.1
6+
github.com/emicklei/go-restful/v3 v3.12.2
77
github.com/fsnotify/fsnotify v1.8.0
8-
github.com/golang-jwt/jwt/v4 v4.5.1
8+
github.com/golang-jwt/jwt/v4 v4.5.2
99
github.com/golang/mock v1.6.0
1010
github.com/onsi/ginkgo/v2 v2.21.0
1111
github.com/onsi/gomega v1.35.1
1212
k8s.io/api v0.30.3
13-
k8s.io/apimachinery v0.31.2
13+
k8s.io/apimachinery v0.31.7
1414
k8s.io/client-go v0.30.3
1515
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
1616
kubevirt.io/api v1.3.1
@@ -27,15 +27,15 @@ require (
2727
github.com/go-kit/log v0.2.1 // indirect
2828
github.com/go-logfmt/logfmt v0.6.0 // indirect
2929
github.com/go-logr/logr v1.4.2 // indirect
30-
github.com/go-openapi/jsonpointer v0.21.0 // indirect
30+
github.com/go-openapi/jsonpointer v0.21.1 // indirect
3131
github.com/go-openapi/jsonreference v0.21.0 // indirect
32-
github.com/go-openapi/swag v0.23.0 // indirect
32+
github.com/go-openapi/swag v0.23.1 // indirect
3333
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3434
github.com/gogo/protobuf v1.3.2 // indirect
3535
github.com/golang/glog v1.2.4 // indirect
3636
github.com/golang/protobuf v1.5.4 // indirect
3737
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
38-
github.com/google/go-cmp v0.6.0 // indirect
38+
github.com/google/go-cmp v0.7.0 // indirect
3939
github.com/google/gofuzz v1.2.0 // indirect
4040
github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect
4141
github.com/google/uuid v1.6.0 // indirect
@@ -45,7 +45,7 @@ require (
4545
github.com/json-iterator/go v1.1.12 // indirect
4646
github.com/k8snetworkplumbingwg/network-attachment-definition-client v1.7.5 // indirect
4747
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.2.0 // indirect
48-
github.com/mailru/easyjson v0.7.7 // indirect
48+
github.com/mailru/easyjson v0.9.0 // indirect
4949
github.com/moby/spdystream v0.5.0 // indirect
5050
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5151
github.com/modern-go/reflect2 v1.0.2 // indirect
@@ -56,26 +56,26 @@ require (
5656
github.com/openshift/custom-resource-status v1.1.2 // indirect
5757
github.com/pkg/errors v0.9.1 // indirect
5858
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.76.2 // indirect
59-
github.com/spf13/pflag v1.0.5 // indirect
59+
github.com/spf13/pflag v1.0.6 // indirect
6060
github.com/x448/float16 v0.8.4 // indirect
61-
golang.org/x/net v0.33.0 // indirect
62-
golang.org/x/oauth2 v0.25.0 // indirect
63-
golang.org/x/sys v0.29.0 // indirect
64-
golang.org/x/term v0.28.0 // indirect
65-
golang.org/x/text v0.21.0 // indirect
66-
golang.org/x/time v0.9.0 // indirect
67-
golang.org/x/tools v0.28.0 // indirect
68-
google.golang.org/protobuf v1.35.1 // indirect
61+
golang.org/x/net v0.34.0 // indirect
62+
golang.org/x/oauth2 v0.26.0 // indirect
63+
golang.org/x/sys v0.30.0 // indirect
64+
golang.org/x/term v0.29.0 // indirect
65+
golang.org/x/text v0.22.0 // indirect
66+
golang.org/x/time v0.10.0 // indirect
67+
golang.org/x/tools v0.29.0 // indirect
68+
google.golang.org/protobuf v1.36.5 // indirect
6969
gopkg.in/inf.v0 v0.9.1 // indirect
7070
gopkg.in/yaml.v2 v2.4.0 // indirect
7171
gopkg.in/yaml.v3 v3.0.1 // indirect
7272
k8s.io/apiextensions-apiserver v0.30.3 // indirect
7373
k8s.io/klog/v2 v2.130.1 // indirect
7474
k8s.io/kube-openapi v0.30.1 // indirect
75-
kubevirt.io/containerized-data-importer-api v1.60.3 // indirect
75+
kubevirt.io/containerized-data-importer-api v1.60.5 // indirect
7676
kubevirt.io/controller-lifecycle-operator-sdk/api v0.2.4 // indirect
7777
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
78-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
78+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
7979
)
8080

8181
replace (

Diff for: go.sum

+40-37
Large diffs are not rendered by default.

Diff for: vendor/github.com/emicklei/go-restful/v3/CHANGES.md

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/emicklei/go-restful/v3/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/emicklei/go-restful/v3/jsr311.go

+3-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/emicklei/go-restful/v3/route.go

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/go-openapi/jsonpointer/.golangci.yml

+13-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/go-openapi/jsonpointer/errors.go

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)