Skip to content

Commit 93b0353

Browse files
c3y1huangderekbit
authored andcommitted
chore: update vendor
longhorn/longhorn-10584 Signed-off-by: Chin-Ya Huang <[email protected]>
1 parent 35e69c7 commit 93b0353

File tree

114 files changed

+4846
-5242
lines changed

Some content is hidden

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

114 files changed

+4846
-5242
lines changed

go.mod

+20-19
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ replace (
5252

5353
require (
5454
github.com/google/fscrypt v0.3.5
55-
github.com/longhorn/go-common-libs v0.0.0-20250312065002-72871a09bee0
55+
github.com/longhorn/go-common-libs v0.0.0-20250319033109-764d1dea35f3
5656
github.com/longhorn/types v0.0.0-20250311092239-23a07a51e0ba
5757
github.com/mitchellh/go-ps v1.0.0
5858
github.com/pkg/errors v0.9.1
@@ -64,56 +64,57 @@ require (
6464
google.golang.org/protobuf v1.36.5
6565
k8s.io/api v0.32.3
6666
k8s.io/apimachinery v0.32.3
67-
k8s.io/client-go v0.32.3
67+
k8s.io/client-go v1.5.2
6868
k8s.io/kubernetes v1.32.3
6969
k8s.io/mount-utils v0.32.3
7070
k8s.io/utils v0.0.0-20241210054802-24370beab758
7171
)
7272

7373
require (
7474
github.com/c9s/goprocinfo v0.0.0-20210130143923-c95fcf8c64a8 // indirect
75-
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
75+
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
7676
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
77-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
78-
github.com/fsnotify/fsnotify v1.7.0 // indirect
77+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
78+
github.com/fsnotify/fsnotify v1.8.0 // indirect
7979
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
8080
github.com/go-logr/logr v1.4.2 // indirect
81-
github.com/go-ole/go-ole v1.2.6 // indirect
82-
github.com/go-openapi/jsonpointer v0.21.0 // indirect
83-
github.com/go-openapi/jsonreference v0.20.2 // indirect
84-
github.com/go-openapi/swag v0.23.0 // indirect
81+
github.com/go-ole/go-ole v1.3.0 // indirect
82+
github.com/go-openapi/jsonpointer v0.21.1 // indirect
83+
github.com/go-openapi/jsonreference v0.21.0 // indirect
84+
github.com/go-openapi/swag v0.23.1 // indirect
8585
github.com/gogo/protobuf v1.3.2 // indirect
8686
github.com/golang/protobuf v1.5.4 // indirect
87-
github.com/google/gnostic-models v0.6.8 // indirect
88-
github.com/google/go-cmp v0.6.0 // indirect
87+
github.com/google/gnostic-models v0.6.9 // indirect
88+
github.com/google/go-cmp v0.7.0 // indirect
8989
github.com/google/gofuzz v1.2.0 // indirect
9090
github.com/google/uuid v1.6.0 // indirect
9191
github.com/josharian/intern v1.0.0 // indirect
9292
github.com/json-iterator/go v1.1.12 // indirect
93-
github.com/mailru/easyjson v0.7.7 // indirect
93+
github.com/mailru/easyjson v0.9.0 // indirect
9494
github.com/moby/sys/mountinfo v0.7.2 // indirect
9595
github.com/moby/sys/userns v0.1.0 // indirect
9696
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
9797
github.com/modern-go/reflect2 v1.0.2 // indirect
9898
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
9999
github.com/opencontainers/selinux v1.11.1 // indirect
100-
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
100+
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
101101
github.com/russross/blackfriday/v2 v2.1.0 // indirect
102102
github.com/shirou/gopsutil/v3 v3.24.5 // indirect
103103
github.com/x448/float16 v0.8.4 // indirect
104104
github.com/yusufpapurcu/wmi v1.2.4 // indirect
105105
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
106-
golang.org/x/oauth2 v0.25.0 // indirect
106+
golang.org/x/oauth2 v0.28.0 // indirect
107107
golang.org/x/term v0.30.0 // indirect
108108
golang.org/x/text v0.23.0 // indirect
109-
golang.org/x/time v0.7.0 // indirect
110-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect
109+
golang.org/x/time v0.11.0 // indirect
110+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
111111
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
112112
gopkg.in/inf.v0 v0.9.1 // indirect
113113
gopkg.in/yaml.v3 v3.0.1 // indirect
114114
k8s.io/klog/v2 v2.130.1 // indirect
115-
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
116-
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
117-
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
115+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
116+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
117+
sigs.k8s.io/randfill v1.0.0 // indirect
118+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
118119
sigs.k8s.io/yaml v1.4.0 // indirect
119120
)

go.sum

+42-42
Large diffs are not rendered by default.

vendor/github.com/cpuguy83/go-md2man/v2/md2man/roff.go

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

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

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

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

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

vendor/github.com/emicklei/go-restful/v3/compress.go

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

vendor/github.com/emicklei/go-restful/v3/curly.go

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

vendor/github.com/emicklei/go-restful/v3/entity_accessors.go

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

vendor/github.com/emicklei/go-restful/v3/json.go

-11
This file was deleted.

vendor/github.com/emicklei/go-restful/v3/jsoniter.go

-12
This file was deleted.

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.

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.

vendor/github.com/fsnotify/fsnotify/.cirrus.yml

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

vendor/github.com/fsnotify/fsnotify/.editorconfig

-12
This file was deleted.

vendor/github.com/fsnotify/fsnotify/.gitattributes

-1
This file was deleted.

vendor/github.com/fsnotify/fsnotify/.gitignore

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

0 commit comments

Comments
 (0)