aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEthan Lee <ethanalee@google.com>2026-03-23 20:01:34 +0000
committerGopher Robot <gobot@golang.org>2026-03-24 12:07:17 -0700
commit2a28a75de8607004c628480a40a1ecfc9d3cdfe1 (patch)
tree2debc304eab96ecf310e178eac8cc4a58638fbf1 /tests
parent9da8f15f1c5721ddc1866bda9091a7f49c63fa10 (diff)
downloadgo-x-pkgsite-2a28a75de8607004c628480a40a1ecfc9d3cdfe1.tar.xz
all: pgx/v4 to v5 and upgrade pq
- In preparation for upgrade to PostgreSQL 17, upgrade stale dependencies within pkgsite. Change-Id: Id54cbb46182711b9808ee3bbbe2f0d5d9a04583d Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/758121 Auto-Submit: Ethan Lee <ethanalee@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Jonathan Amsterdam <jba@google.com> kokoro-CI: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/screentest/seed.txt4
-rwxr-xr-xtests/search/main.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/screentest/seed.txt b/tests/screentest/seed.txt
index 445ab39c..aba7c57e 100644
--- a/tests/screentest/seed.txt
+++ b/tests/screentest/seed.txt
@@ -18,7 +18,7 @@ github.com/hashicorp/vault/api@v1.0.3
github.com/hashicorp/vault/api@v1.1.1
github.com/hashicorp/vault/api/auth/approle@latest
github.com/hashicorp/vault/api/auth/kubernetes@latest
-github.com/jackc/pgx/v4@v4.11.0
+github.com/jackc/pgx/v5@v4.11.0
github.com/jba/bit@v0.2.0
github.com/julieqiu/api-demo@all
github.com/stacklok/minder@v0.0.47
@@ -56,5 +56,5 @@ std@v1.16.3
std@v1.16.4
# This module is expected to return a 404, so that the path will redirect
-# to github.com/jackc/pgx/v4/pgxpool.
+# to github.com/jackc/pgx/v5/pgxpool.
github.com/jackc/pgx/pgxpool@v3.6.2+incompatible
diff --git a/tests/search/main.go b/tests/search/main.go
index 7ac47b46..587cab41 100755
--- a/tests/search/main.go
+++ b/tests/search/main.go
@@ -17,7 +17,7 @@ import (
"strconv"
"strings"
- _ "github.com/jackc/pgx/v4/stdlib" // for pgx driver
+ _ "github.com/jackc/pgx/v5/stdlib" // for pgx driver
"golang.org/x/pkgsite/internal/config/serverconfig"
"golang.org/x/pkgsite/internal/database"
"golang.org/x/pkgsite/internal/derrors"