Skip to content

Commit 415593c

Browse files
authored
Chore: update dependencies and fix test cases (#214)
* chore: update dependencies and fix test cases - Updated cuelang.org/go from v0.9.2 to v0.14.1 - Updated github.com/google/go-cmp from v0.6.0 to v0.7.0 - Updated github.com/spf13/pflag from v1.0.5 to v1.0.7 - Added indirect dependency github.com/emicklei/proto v1.14.2 - Updated indirect dependencies including golang.org/x/crypto, golang.org/x/net, golang.org/x/oauth2, golang.org/x/sync, golang.org/x/sys, golang.org/x/term, and golang.org/x/text to their latest versions - Fixed test cases in operation_test.go to correct patchKey and patchStrategy annotations Signed-off-by: Ayush Kumar <[email protected]> * Fix: reorder expected output in TestToString for clarity Signed-off-by: Ayush Kumar <[email protected]> * Fix: reorder expected output in TestToString for consistency Signed-off-by: Ayush Kumar <[email protected]> --------- Signed-off-by: Ayush Kumar <[email protected]>
1 parent 56b80ce commit 415593c

File tree

4 files changed

+63
-56
lines changed

4 files changed

+63
-56
lines changed

go.mod

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ module github.com/kubevela/workflow
33
go 1.23.8
44

55
require (
6-
cuelang.org/go v0.9.2
6+
cuelang.org/go v0.14.1
77
github.com/agiledragon/gomonkey/v2 v2.4.0
88
github.com/aliyun/aliyun-log-go-sdk v0.1.38
99
github.com/crossplane/crossplane-runtime v1.16.0
1010
github.com/evanphx/json-patch v5.6.0+incompatible
1111
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
12-
github.com/google/go-cmp v0.6.0
12+
github.com/google/go-cmp v0.7.0
1313
github.com/hashicorp/go-version v1.6.0
1414
github.com/kubevela/kube-trigger v0.1.1-0.20250711201929-51c837aa9bd2
1515
github.com/kubevela/pkg v1.9.3-0.20250625225831-a2894a62a307
@@ -19,7 +19,7 @@ require (
1919
github.com/prometheus/client_golang v1.20.5
2020
github.com/prometheus/common v0.55.0
2121
github.com/robfig/cron/v3 v3.0.1
22-
github.com/spf13/pflag v1.0.5
22+
github.com/spf13/pflag v1.0.7
2323
github.com/stretchr/testify v1.9.0
2424
golang.org/x/time v0.5.0
2525
gomodules.xyz/jsonpatch/v2 v2.4.0
@@ -51,6 +51,7 @@ require (
5151
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
5252
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5353
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
54+
github.com/emicklei/proto v1.14.2 // indirect
5455
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
5556
github.com/felixge/httpsnoop v1.0.4 // indirect
5657
github.com/frankban/quicktest v1.11.3 // indirect
@@ -84,17 +85,20 @@ require (
8485
github.com/klauspost/compress v1.17.10 // indirect
8586
github.com/kylelemons/godebug v1.1.0 // indirect
8687
github.com/mailru/easyjson v0.7.7 // indirect
88+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
8789
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8890
github.com/modern-go/reflect2 v1.0.2 // indirect
8991
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
9092
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
9193
github.com/oam-dev/cluster-gateway v1.9.2-0.20250629203450-2b04dd452b7a // indirect
9294
github.com/openshift/library-go v0.0.0-20230327085348-8477ec72b725 // indirect
95+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
9396
github.com/pierrec/lz4 v2.6.0+incompatible // indirect
9497
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
9598
github.com/prometheus/client_model v0.6.1 // indirect
9699
github.com/prometheus/procfs v0.15.1 // indirect
97-
github.com/spf13/cobra v1.8.1 // indirect
100+
github.com/protocolbuffers/txtpbfmt v0.0.0-20250627152318-f293424e46b5 // indirect
101+
github.com/spf13/cobra v1.9.1 // indirect
98102
github.com/stoewer/go-strcase v1.2.0 // indirect
99103
github.com/x448/float16 v0.8.4 // indirect
100104
go.etcd.io/etcd/api/v3 v3.5.16 // indirect
@@ -112,15 +116,15 @@ require (
112116
go.uber.org/atomic v1.11.0 // indirect
113117
go.uber.org/multierr v1.11.0 // indirect
114118
go.uber.org/zap v1.26.0 // indirect
115-
golang.org/x/crypto v0.36.0 // indirect
119+
golang.org/x/crypto v0.40.0 // indirect
116120
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
117-
golang.org/x/net v0.37.0 // indirect
118-
golang.org/x/oauth2 v0.22.0 // indirect
119-
golang.org/x/sync v0.12.0 // indirect
120-
golang.org/x/sys v0.32.0 // indirect
121-
golang.org/x/term v0.30.0 // indirect
122-
golang.org/x/text v0.23.0 // indirect
123-
golang.org/x/tools v0.31.0 // indirect
121+
golang.org/x/net v0.42.0 // indirect
122+
golang.org/x/oauth2 v0.30.0 // indirect
123+
golang.org/x/sync v0.16.0 // indirect
124+
golang.org/x/sys v0.34.0 // indirect
125+
golang.org/x/term v0.33.0 // indirect
126+
golang.org/x/text v0.27.0 // indirect
127+
golang.org/x/tools v0.35.0 // indirect
124128
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect
125129
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
126130
google.golang.org/grpc v1.67.1 // indirect

0 commit comments

Comments
 (0)