Skip to content

Commit

Permalink
Merge pull request #205 from yoyofx/dev
Browse files Browse the repository at this point in the history
Fixed vulnerability of CVE-***
  • Loading branch information
yoyofx authored Aug 2, 2022
2 parents df28728 + e9eae16 commit 01b3cc9
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 13 deletions.
9 changes: 7 additions & 2 deletions cli/yygctl/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
module yygctl

go 1.16
go 1.18

require github.com/spf13/cobra v1.2.0
require github.com/spf13/cobra v1.5.0

require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
)
4 changes: 3 additions & 1 deletion examples/console/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
module console

go 1.16
go 1.18

require (
github.com/yoyofx/yoyogo v0.0.0
github.com/yoyofxteam/dependencyinjection v1.0.1
gopkg.in/yaml.v3 v3.0.1 // indirect

)

replace github.com/yoyofx/yoyogo => ../../
4 changes: 3 additions & 1 deletion examples/grafanaalertwebhook/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
module grafanaalertwebhook

go 1.16
go 1.18

require (
github.com/yoyofx/yoyogo v0.0.0
gopkg.in/go-playground/assert.v1 v1.2.1
gopkg.in/yaml.v3 v3.0.1 // indirect

)

replace github.com/yoyofx/yoyogo => ../../
8 changes: 5 additions & 3 deletions examples/grpc-demo/go.mod
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
module grpc-demo

go 1.16
go 1.18

require (
github.com/yoyofx/yoyogo v0.0.0
github.com/yoyofxteam/dependencyinjection v1.0.1
google.golang.org/grpc v1.45.0
google.golang.org/protobuf v1.26.0
google.golang.org/grpc v1.46.2
google.golang.org/protobuf v1.28.0
gopkg.in/yaml.v3 v3.0.1 // indirect

)

replace github.com/yoyofx/yoyogo => ../../
1 change: 1 addition & 0 deletions examples/mvc/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ go 1.16
require (
github.com/yoyofx/yoyogo v0.0.0
github.com/yoyofxteam/dependencyinjection v1.0.1
gopkg.in/yaml.v3 v3.0.1 // indirect
)

replace github.com/yoyofx/yoyogo => ../../
2 changes: 1 addition & 1 deletion examples/simpleweb/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ require (
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/driver/mysql v1.1.1 // indirect
skywalking.apache.org/repo/goapi v0.0.0-20210401062122-a049ca15c62d // indirect
)
Expand Down
7 changes: 5 additions & 2 deletions examples/standardwebapi/go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
module standardwebapi

go 1.16
go 1.18

require github.com/yoyofx/yoyogo v0.0.0
require (
github.com/yoyofx/yoyogo v0.0.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)

replace github.com/yoyofx/yoyogo => ../../
3 changes: 2 additions & 1 deletion examples/wetodohub/go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
module websockethub

go 1.16
go 1.18

require (
github.com/fasthttp/websocket v1.5.0
github.com/yoyofx/yoyogo v0.0.0
github.com/yoyofxteam/dependencyinjection v1.0.1
gopkg.in/yaml.v3 v3.0.1 // indirect
)

replace github.com/yoyofx/yoyogo => ../../
3 changes: 2 additions & 1 deletion examples/xxl-job-console/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
module xxl-job-console

go 1.16
go 1.18

require (
github.com/yoyofx/yoyogo v0.0.0
github.com/yoyofxteam/dependencyinjection v1.0.1
gopkg.in/yaml.v3 v3.0.1 // indirect
)

replace github.com/yoyofx/yoyogo => ../../
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,6 @@ require (
gopkg.in/gcfg.v1 v1.2.3 // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
skywalking.apache.org/repo/goapi v0.0.0-20210401062122-a049ca15c62d // indirect
)

0 comments on commit 01b3cc9

Please sign in to comment.