From 16c9f756305e91ff6d919e8fa31f3872a1e74e98 Mon Sep 17 00:00:00 2001 From: Dawid Parafinski Date: Fri, 4 Sep 2026 09:34:38 +0200 Subject: [PATCH 1/2] Rename CI's server_version param to serverVersion for DBAL 4 compatibility --- .github/workflows/backend-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backend-ci.yaml b/.github/workflows/backend-ci.yaml index e65b3db..d439845 100644 --- a/.github/workflows/backend-ci.yaml +++ b/.github/workflows/backend-ci.yaml @@ -145,7 +145,7 @@ jobs: - name: Run integration test suite vs Postgresql run: composer run-script --timeout=600 test -- --testsuite integration env: - DATABASE_URL: "pgsql://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/testdb?server_version=10" + DATABASE_URL: "pgsql://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/testdb?serverVersion=10" integration-tests-mysql: name: MySQL integration tests From f09193f6c861288a223d8e3fa7f68ce687014519 Mon Sep 17 00:00:00 2001 From: Dawid Parafinski Date: Fri, 4 Sep 2026 09:36:40 +0200 Subject: [PATCH 2/2] Bump CI PostgreSQL serverVersion pin from 10 to 14 --- .github/workflows/backend-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backend-ci.yaml b/.github/workflows/backend-ci.yaml index d439845..38ad375 100644 --- a/.github/workflows/backend-ci.yaml +++ b/.github/workflows/backend-ci.yaml @@ -145,7 +145,7 @@ jobs: - name: Run integration test suite vs Postgresql run: composer run-script --timeout=600 test -- --testsuite integration env: - DATABASE_URL: "pgsql://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/testdb?serverVersion=10" + DATABASE_URL: "pgsql://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/testdb?serverVersion=14" integration-tests-mysql: name: MySQL integration tests