From c6ea6b3b343fd4aa580418d88ad59db4ddc48972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Thu, 13 Aug 2026 13:53:20 +0200 Subject: [PATCH 1/2] chore: Fix PHP 7.3 support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- lib/private/User/Session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/User/Session.php b/lib/private/User/Session.php index 7ee798a141402..ca50f8daa333b 100644 --- a/lib/private/User/Session.php +++ b/lib/private/User/Session.php @@ -631,7 +631,7 @@ public function tryBasicAuthLogin(IRequest $request, throw new LoginException(); } catch (PasswordLoginForbiddenException $ex) { // If credentials were provided, they need to be valid, otherwise we do boom - throw new LoginException(previous: $ex); + throw new LoginException('', 0, $ex); } } return false; From 975d44e8483ec071340eed52ef5a862ac9c03895 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 13 Aug 2026 14:13:13 +0200 Subject: [PATCH 2/2] ci: run jsunit on self-hosted Signed-off-by: Arthur Schiwon --- .github/workflows/node-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node-tests.yml b/.github/workflows/node-tests.yml index 402485f2c9c3b..3f969a32ee147 100644 --- a/.github/workflows/node-tests.yml +++ b/.github/workflows/node-tests.yml @@ -51,7 +51,7 @@ jobs: run: npm run test jsunit: - runs-on: ubuntu-latest + runs-on: [ubuntu-latest, self-hosted] needs: versions steps: