From 1e9504271233029fe4b2e7d7b085524ecec0e412 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 ca3db536fb05e..432104f5ebfba 100644 --- a/lib/private/User/Session.php +++ b/lib/private/User/Session.php @@ -623,7 +623,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 4ad4de620e0755687441e1571b4b2226d102582c 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 0aa3ae482fd00..f02163e3150fe 100644 --- a/.github/workflows/node-tests.yml +++ b/.github/workflows/node-tests.yml @@ -54,7 +54,7 @@ jobs: run: npm run test jsunit: - runs-on: ubuntu-latest + runs-on: [ubuntu-latest, self-hosted] needs: versions steps: