Skip to content

Commit 97e3854

Browse files
committed
implementation of pgxutils
1 parent 286a156 commit 97e3854

File tree

6 files changed

+206
-198
lines changed

6 files changed

+206
-198
lines changed

go.mod

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ go 1.20
44

55
require (
66
github.com/DATA-DOG/go-sqlmock v1.5.2
7-
github.com/acronis/go-appkit v1.17.0
7+
github.com/acronis/go-appkit v1.24.0
88
github.com/cenkalti/backoff/v4 v4.3.0
99
github.com/doug-martin/goqu/v9 v9.19.0
1010
github.com/go-sql-driver/mysql v1.8.1
1111
github.com/gocraft/dbr/v2 v2.7.6
1212
github.com/google/uuid v1.6.0
13-
github.com/jackc/pgx/v5 v5.6.0
13+
github.com/jackc/pgx/v5 v5.7.6
1414
github.com/lib/pq v1.10.9
1515
github.com/mattn/go-sqlite3 v1.14.24
1616
github.com/microsoft/go-mssqldb v1.8.1-0.20250219145450-ba24acc31dbe
1717
github.com/mitchellh/mapstructure v1.5.0
1818
github.com/prometheus/client_golang v1.20.5
19-
github.com/rubenv/sql-migrate v1.0.0
19+
github.com/rubenv/sql-migrate v1.8.0
2020
github.com/spf13/viper v1.19.0
2121
github.com/stretchr/testify v1.10.0
2222
github.com/testcontainers/testcontainers-go v0.33.0
@@ -46,6 +46,7 @@ require (
4646
github.com/docker/go-units v0.5.0 // indirect
4747
github.com/felixge/httpsnoop v1.0.4 // indirect
4848
github.com/fsnotify/fsnotify v1.7.0 // indirect
49+
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
4950
github.com/go-logr/logr v1.4.2 // indirect
5051
github.com/go-logr/stdr v1.2.2 // indirect
5152
github.com/go-ole/go-ole v1.2.6 // indirect
@@ -55,8 +56,8 @@ require (
5556
github.com/hashicorp/golang-lru v1.0.2 // indirect
5657
github.com/hashicorp/hcl v1.0.0 // indirect
5758
github.com/jackc/pgpassfile v1.0.0 // indirect
58-
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
59-
github.com/jackc/puddle/v2 v2.2.1 // indirect
59+
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
60+
github.com/jackc/puddle/v2 v2.2.2 // indirect
6061
github.com/klauspost/compress v1.17.9 // indirect
6162
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
6263
github.com/magiconair/properties v1.8.7 // indirect
@@ -93,19 +94,17 @@ require (
9394
github.com/tklauser/go-sysconf v0.3.12 // indirect
9495
github.com/tklauser/numcpus v0.6.1 // indirect
9596
github.com/yusufpapurcu/wmi v1.2.3 // indirect
96-
github.com/ziutek/mymysql v1.5.4 // indirect
9797
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
9898
go.opentelemetry.io/otel v1.24.0 // indirect
9999
go.opentelemetry.io/otel/metric v1.24.0 // indirect
100100
go.opentelemetry.io/otel/trace v1.24.0 // indirect
101101
go.uber.org/multierr v1.11.0 // indirect
102-
golang.org/x/crypto v0.33.0 // indirect
102+
golang.org/x/crypto v0.37.0 // indirect
103103
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
104-
golang.org/x/sync v0.11.0 // indirect
105-
golang.org/x/sys v0.30.0 // indirect
106-
golang.org/x/text v0.22.0 // indirect
104+
golang.org/x/sync v0.13.0 // indirect
105+
golang.org/x/sys v0.32.0 // indirect
106+
golang.org/x/text v0.24.0 // indirect
107107
google.golang.org/protobuf v1.34.2 // indirect
108-
gopkg.in/gorp.v1 v1.7.2 // indirect
109108
gopkg.in/ini.v1 v1.67.0 // indirect
110109
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
111110
)

0 commit comments

Comments
 (0)