-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: pgx cve issue * fix: update go version * ci: remove 1.18 test case because the dependencis requres go1.19
- Loading branch information
1 parent
4fe602c
commit 6a271a4
Showing
3 changed files
with
35 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
module gorm.io/datatypes | ||
|
||
go 1.18 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/jinzhu/now v1.1.5 | ||
gorm.io/driver/mysql v1.5.2 | ||
gorm.io/driver/mysql v1.5.6 | ||
gorm.io/driver/postgres v1.5.0 | ||
gorm.io/driver/sqlite v1.4.3 | ||
gorm.io/driver/sqlserver v1.4.1 | ||
gorm.io/gorm v1.25.5 | ||
gorm.io/gorm v1.25.9 | ||
) | ||
|
||
require ( | ||
github.com/go-sql-driver/mysql v1.7.1 // indirect | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/go-sql-driver/mysql v1.8.1 // indirect | ||
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect | ||
github.com/golang-sql/sqlexp v0.1.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect | ||
github.com/jackc/pgx/v5 v5.3.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect | ||
github.com/jackc/pgx/v5 v5.5.5 // indirect | ||
github.com/jackc/puddle/v2 v2.2.1 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.15 // indirect | ||
github.com/microsoft/go-mssqldb v0.17.0 // indirect | ||
golang.org/x/crypto v0.6.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
golang.org/x/crypto v0.22.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters