Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.

Commit cd4ecc5

Browse files
committed
chore: update depdencies to fix depdendabot alerts
Change-Id: I8715a31f00df56a0ea79d5d6775ef3159890eeec
1 parent a626d93 commit cd4ecc5

File tree

4 files changed

+132
-357
lines changed

4 files changed

+132
-357
lines changed

go.mod

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,30 @@ go 1.18
44

55
require (
66
github.com/Masterminds/sprig/v3 v3.2.3
7-
github.com/cloudwego/hertz/cmd/hz v0.8.1
8-
github.com/cloudwego/kitex v0.9.1
9-
github.com/cloudwego/thriftgo v0.3.10
7+
github.com/apache/thrift v0.13.0
8+
github.com/cloudwego/hertz/cmd/hz v0.9.1
9+
github.com/cloudwego/kitex v0.11.3
10+
github.com/cloudwego/thriftgo v0.4.1
1011
github.com/fatih/camelcase v1.0.0
11-
github.com/stretchr/testify v1.8.4
12+
github.com/stretchr/testify v1.9.0
1213
github.com/urfave/cli/v2 v2.27.1
13-
golang.org/x/tools v0.20.0
14-
gorm.io/driver/mysql v1.5.6
15-
gorm.io/driver/postgres v1.5.7
16-
gorm.io/driver/sqlite v1.5.5
17-
gorm.io/driver/sqlserver v1.5.3
14+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d
15+
gopkg.in/yaml.v3 v3.0.1
16+
gorm.io/driver/mysql v1.5.7
17+
gorm.io/driver/postgres v1.5.11
18+
gorm.io/driver/sqlite v1.5.7
19+
gorm.io/driver/sqlserver v1.5.4
1820
gorm.io/gen v0.3.26
19-
gorm.io/gorm v1.25.9
21+
gorm.io/gorm v1.25.12
2022
gorm.io/rawsql v1.0.2
2123
)
2224

2325
require (
2426
github.com/Masterminds/goutils v1.1.1 // indirect
2527
github.com/Masterminds/semver/v3 v3.2.0 // indirect
26-
github.com/apache/thrift v0.13.0 // indirect
2728
github.com/benbjohnson/clock v1.1.0 // indirect
28-
github.com/cloudwego/fastpb v0.0.4 // indirect
29+
github.com/bytedance/gopkg v0.1.1 // indirect
30+
github.com/cloudwego/fastpb v0.0.5 // indirect
2931
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
3032
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect
3133
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
@@ -34,20 +36,20 @@ require (
3436
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
3537
github.com/golang-sql/sqlexp v0.1.0 // indirect
3638
github.com/golang/protobuf v1.5.3 // indirect
37-
github.com/google/go-cmp v0.6.0 // indirect
38-
github.com/google/uuid v1.4.0 // indirect
39+
github.com/google/uuid v1.6.0 // indirect
3940
github.com/hashicorp/go-version v1.5.0 // indirect
4041
github.com/huandu/xstrings v1.3.3 // indirect
4142
github.com/imdario/mergo v0.3.11 // indirect
4243
github.com/jackc/pgpassfile v1.0.0 // indirect
4344
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
44-
github.com/jackc/pgx/v5 v5.4.3 // indirect
45+
github.com/jackc/pgx/v5 v5.5.5 // indirect
46+
github.com/jackc/puddle/v2 v2.2.1 // indirect
4547
github.com/jhump/protoreflect v1.12.0 // indirect
4648
github.com/jinzhu/inflection v1.0.0 // indirect
4749
github.com/jinzhu/now v1.1.5 // indirect
4850
github.com/kr/text v0.2.0 // indirect
49-
github.com/mattn/go-sqlite3 v1.14.17 // indirect
50-
github.com/microsoft/go-mssqldb v1.6.0 // indirect
51+
github.com/mattn/go-sqlite3 v1.14.22 // indirect
52+
github.com/microsoft/go-mssqldb v1.7.2 // indirect
5153
github.com/mitchellh/copystructure v1.0.0 // indirect
5254
github.com/mitchellh/reflectwalk v1.0.0 // indirect
5355
github.com/pingcap/errors v0.11.5-0.20210425183316-da1aaba5fb63 // indirect
@@ -63,17 +65,16 @@ require (
6365
go.uber.org/atomic v1.7.0 // indirect
6466
go.uber.org/multierr v1.6.0 // indirect
6567
go.uber.org/zap v1.24.0 // indirect
66-
golang.org/x/crypto v0.18.0 // indirect
68+
golang.org/x/crypto v0.31.0 // indirect
6769
golang.org/x/exp v0.0.0-20220428152302-39d4317da171 // indirect
6870
golang.org/x/mod v0.17.0 // indirect
69-
golang.org/x/sync v0.7.0 // indirect
70-
golang.org/x/text v0.14.0 // indirect
71+
golang.org/x/sync v0.10.0 // indirect
72+
golang.org/x/text v0.21.0 // indirect
7173
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
7274
google.golang.org/grpc v1.55.0-dev // indirect
7375
google.golang.org/protobuf v1.28.1 // indirect
7476
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
7577
gopkg.in/yaml.v2 v2.4.0 // indirect
76-
gopkg.in/yaml.v3 v3.0.1 // indirect
7778
gorm.io/datatypes v1.1.1-0.20230130040222-c43177d3cf8c // indirect
7879
gorm.io/hints v1.1.0 // indirect
7980
gorm.io/plugin/dbresolver v1.5.0 // indirect

0 commit comments

Comments
 (0)