What changed, and why it matters
This commit updates the PostgreSQL database version used only in BTCPay Server's automated test environment from version 13.23 to 18.1. It also changes the data directory mount path inside the container. There is no indication this affects production systems or fixes a security vulnerability.
No security action required. Treat as routine test dependency maintenance. If upgrading production PostgreSQL deployments, follow normal release planning and backup procedures separately.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies BTCPayServer.Tests/docker-compose.yml, changing the test PostgreSQL container image from postgres:13.23 to postgres:18.1 and adjusting the volume mount from /var/lib/postgresql/data to /var/lib/postgresql. This is a test infrastructure dependency bump. No application code, authentication logic, or production configuration is changed. The commit message provides no security context.
Changed components
BTCPayServer.Tests/docker-compose.yml (test-only PostgreSQL service)Inspect captured patch +2 / −2
diff --git a/BTCPayServer.Tests/docker-compose.yml b/BTCPayServer.Tests/docker-compose.yml
index c0e3495..8a7b1c1 100644
--- a/BTCPayServer.Tests/docker-compose.yml
+++ b/BTCPayServer.Tests/docker-compose.yml
@@ -222,7 +222,7 @@ services:
- bitcoind
postgres:
- image: postgres:13.23
+ image: postgres:18.1
environment:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
@@ -230,7 +230,7 @@ services:
expose:
- "5432"
volumes:
- - "postgres_test_datadir:/var/lib/postgresql/data"
+ - "postgres_test_datadir:/var/lib/postgresql"
merchant_lnd:
image: btcpayserver/lnd:v0.19.3-beta
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.