From 2e3baa842e779106487605b48de45de95df2774c Mon Sep 17 00:00:00 2001 From: ziggie Date: Thu, 30 Jul 2026 12:11:53 -0300 Subject: [PATCH] kvdb: mark pgx/v5 as direct dependency Backport PR #10977 added direct pgx/v5 imports in commit e7f9a9220 without updating kvdb/go.mod. Regenerate the module metadata with go mod tidy. --- kvdb/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kvdb/go.mod b/kvdb/go.mod index cc7544098..9a5927f90 100644 --- a/kvdb/go.mod +++ b/kvdb/go.mod @@ -7,6 +7,7 @@ require ( github.com/fergusstrange/embedded-postgres v1.25.0 github.com/google/btree v1.0.1 github.com/jackc/pgx/v4 v4.18.3 + github.com/jackc/pgx/v5 v5.7.4 github.com/lightningnetwork/lnd/healthcheck v1.2.4 github.com/lightningnetwork/lnd/sqldb v1.0.6 github.com/stretchr/testify v1.11.1 @@ -63,7 +64,6 @@ require ( github.com/jackc/pgproto3/v2 v2.3.3 // indirect github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect github.com/jackc/pgtype v1.14.4 // indirect - github.com/jackc/pgx/v5 v5.7.4 // indirect github.com/jackc/puddle/v2 v2.2.2 // indirect github.com/jonboulle/clockwork v0.2.2 // indirect github.com/json-iterator/go v1.1.11 // indirect