-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from pashagolub/97-update-pgx-to-v5
[!] add support for `jackc/pgx/v5`, closes #97
- Loading branch information
Showing
16 changed files
with
91 additions
and
561 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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,21 +1,13 @@ | ||
module github.com/pashagolub/pgxmock | ||
module github.com/pashagolub/pgxmock/v2 | ||
|
||
go 1.17 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/jackc/pgconn v1.13.0 | ||
github.com/jackc/pgproto3/v2 v2.3.1 | ||
github.com/jackc/pgtype v1.12.0 | ||
github.com/jackc/pgx/v4 v4.17.2 | ||
github.com/pashagolub/pgxstruct v0.0.0-20210217101842-40d357eec200 | ||
) | ||
require github.com/jackc/pgx/v5 v5.0.0 | ||
|
||
require ( | ||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect | ||
github.com/jackc/puddle v1.3.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect | ||
github.com/jackc/puddle/v2 v2.0.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220919173607-35f4265a4bc0 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
) |
Oops, something went wrong.