From 652c4fd2f55ba5bac823031208fb7142bc622ff6 Mon Sep 17 00:00:00 2001 From: Julian Speckmann <176780813+KingIronMan2011@users.noreply.github.com> Date: Mon, 29 Dec 2025 03:32:41 +0100 Subject: [PATCH 1/3] Update auto-test.yml --- .github/workflows/auto-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-test.yml b/.github/workflows/auto-test.yml index f0dfdfa55..d08a7f3e0 100644 --- a/.github/workflows/auto-test.yml +++ b/.github/workflows/auto-test.yml @@ -123,8 +123,8 @@ jobs: node-version: 22 - run: npm install - - name: Install Playwright ${{ env.PLAYWRIGHT_VERSION }} - run: npx playwright@${{ env.PLAYWRIGHT_VERSION }} install + - name: Install Playwright + run: npx playwright install - run: npm run build - run: npm run test-e2e From d8cae1f7f347e7b3fc8568c518715f3011ad5505 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 00:39:29 +0000 Subject: [PATCH 2/3] Bump qs from 6.10.4 to 6.14.1 Bumps [qs](https://github.com/ljharb/qs) from 6.10.4 to 6.14.1. - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md) - [Commits](https://github.com/ljharb/qs/compare/v6.10.4...v6.14.1) --- updated-dependencies: - dependency-name: qs dependency-version: 6.14.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- package-lock.json | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1df648a9c..e6950555a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -74,7 +74,7 @@ "prometheus-api-metrics": "~3.2.1", "promisify-child-process": "~4.1.2", "protobufjs": "~7.2.4", - "qs": "~6.10.4", + "qs": "~6.14.1", "radius": "~1.1.4", "redbean-node": "~0.3.0", "redis": "~5.9.0", @@ -15668,12 +15668,12 @@ } }, "node_modules/qs": { - "version": "6.10.4", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", - "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", + "version": "6.14.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz", + "integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==", "license": "BSD-3-Clause", "dependencies": { - "side-channel": "^1.0.4" + "side-channel": "^1.1.0" }, "engines": { "node": ">=0.6" diff --git a/package.json b/package.json index 04247d031..724ff1e65 100644 --- a/package.json +++ b/package.json @@ -135,7 +135,7 @@ "prometheus-api-metrics": "~3.2.1", "promisify-child-process": "~4.1.2", "protobufjs": "~7.2.4", - "qs": "~6.10.4", + "qs": "~6.14.1", "radius": "~1.1.4", "redbean-node": "~0.3.0", "redis": "~5.9.0", From 4002d86c28b4b81bc74f046fdce6e0f184c5b714 Mon Sep 17 00:00:00 2001 From: Julian Speckmann <176780813+KingIronMan2011@users.noreply.github.com> Date: Fri, 2 Jan 2026 04:34:10 +0100 Subject: [PATCH 3/3] Update Playwright installation to use version variable --- .github/workflows/auto-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-test.yml b/.github/workflows/auto-test.yml index d08a7f3e0..f0dfdfa55 100644 --- a/.github/workflows/auto-test.yml +++ b/.github/workflows/auto-test.yml @@ -123,8 +123,8 @@ jobs: node-version: 22 - run: npm install - - name: Install Playwright - run: npx playwright install + - name: Install Playwright ${{ env.PLAYWRIGHT_VERSION }} + run: npx playwright@${{ env.PLAYWRIGHT_VERSION }} install - run: npm run build - run: npm run test-e2e