-
Notifications
You must be signed in to change notification settings - Fork 98
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 #124 from montaguethomas/tm/update-modules
Update modules and golang version in order to resolve CVEs.
- Loading branch information
Showing
2 changed files
with
138 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,33 @@ | ||
module github.com/lesovsky/pgcenter | ||
|
||
go 1.22.3 | ||
|
||
require ( | ||
github.com/jackc/pgconn v1.6.4 | ||
github.com/jackc/pgx/v4 v4.8.1 | ||
github.com/jackc/pgconn v1.14.3 | ||
github.com/jackc/pgx/v4 v4.18.3 | ||
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 | ||
github.com/jroimartin/gocui v0.4.0 | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/stretchr/testify v1.5.1 | ||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 | ||
github.com/jroimartin/gocui v0.5.0 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/crypto v0.23.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
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/pgproto3/v2 v2.0.2 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect | ||
github.com/jackc/pgtype v1.4.2 // indirect | ||
github.com/mattn/go-runewidth v0.0.3 // indirect | ||
github.com/nsf/termbox-go v0.0.0-20180819125858-b66b20ab708e // indirect | ||
github.com/jackc/pgproto3/v2 v2.3.3 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect | ||
github.com/jackc/pgtype v1.14.3 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/nsf/termbox-go v1.1.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.2 // indirect | ||
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect | ||
gopkg.in/yaml.v2 v2.2.8 // indirect | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/term v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
go 1.17 |
Oops, something went wrong.