Skip to content

Commit 083334c

Browse files
fix(deps): update module github.com/jackc/pgx/v4 to v5
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
1 parent ef7724a commit 083334c

File tree

4 files changed

+26
-94
lines changed

4 files changed

+26
-94
lines changed

cmd/gabi/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/app-sre/gabi/pkg/cmd"
77
_ "github.com/go-sql-driver/mysql"
8-
_ "github.com/jackc/pgx/v4/stdlib"
8+
_ "github.com/jackc/pgx/v5/stdlib"
99
"go.uber.org/zap"
1010
)
1111

go.mod

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,40 @@
11
module github.com/app-sre/gabi
22

3-
go 1.22
3+
go 1.23.0
44

55
require (
66
github.com/DATA-DOG/go-sqlmock v1.5.0
77
github.com/etherlabsio/healthcheck/v2 v2.0.0
88
github.com/go-sql-driver/mysql v1.7.0
99
github.com/gorilla/handlers v1.5.1
1010
github.com/gorilla/mux v1.8.0
11-
github.com/jackc/pgx/v4 v4.18.3
11+
github.com/jackc/pgx/v4 v4.12.1-0.20210724153913-640aa07df17c
12+
github.com/jackc/pgx/v5 v5.7.6
1213
github.com/justinas/alice v1.2.0
1314
github.com/stretchr/testify v1.8.1
1415
go.uber.org/zap v1.24.0
1516
)
1617

1718
require (
18-
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
19-
github.com/Microsoft/go-winio v0.5.2 // indirect
2019
github.com/davecgh/go-spew v1.1.1 // indirect
21-
github.com/docker/distribution v2.8.0+incompatible // indirect
22-
github.com/docker/docker v20.10.21+incompatible // indirect
23-
github.com/docker/go-connections v0.4.0 // indirect
24-
github.com/docker/go-units v0.4.0 // indirect
2520
github.com/felixge/httpsnoop v1.0.3 // indirect
26-
github.com/gogo/protobuf v1.3.2 // indirect
27-
github.com/google/go-cmp v0.5.9 // indirect
28-
github.com/google/uuid v1.3.0 // indirect
2921
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
3022
github.com/jackc/pgconn v1.14.3 // indirect
3123
github.com/jackc/pgio v1.0.0 // indirect
3224
github.com/jackc/pgpassfile v1.0.0 // indirect
3325
github.com/jackc/pgproto3/v2 v2.3.3 // indirect
34-
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
26+
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
3527
github.com/jackc/pgtype v1.14.0 // indirect
36-
github.com/kr/pretty v0.3.0 // indirect
28+
github.com/jackc/puddle/v2 v2.2.2 // indirect
29+
github.com/kr/text v0.2.0 // indirect
3730
github.com/lib/pq v1.10.7 // indirect
38-
github.com/opencontainers/go-digest v1.0.0 // indirect
39-
github.com/opencontainers/image-spec v1.0.2 // indirect
4031
github.com/pkg/errors v0.9.1 // indirect
4132
github.com/pmezard/go-difflib v1.0.0 // indirect
4233
github.com/rogpeppe/go-internal v1.9.0 // indirect
43-
github.com/sirupsen/logrus v1.9.0 // indirect
4434
go.uber.org/atomic v1.10.0 // indirect
4535
go.uber.org/multierr v1.9.0 // indirect
46-
golang.org/x/crypto v0.33.0 // indirect
47-
golang.org/x/net v0.21.0 // indirect
48-
golang.org/x/sync v0.11.0 // indirect
49-
golang.org/x/sys v0.30.0 // indirect
50-
golang.org/x/text v0.22.0 // indirect
51-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
36+
golang.org/x/crypto v0.37.0 // indirect
37+
golang.org/x/sync v0.13.0 // indirect
38+
golang.org/x/text v0.24.0 // indirect
5239
gopkg.in/yaml.v3 v3.0.1 // indirect
5340
)

0 commit comments

Comments
 (0)