From cdf9bf5390d72c36c41466c937ff73159e2c8b44 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 958bbf97acf8d..7acfa566fb161 100644 --- a/lib/private/User/Session.php +++ b/lib/private/User/Session.php @@ -635,7 +635,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 fbb4a8d59d3074c3437e762c63a289040c2eaa68 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 8a544b6898b6a..03ab2ba3764ab 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: