From 453ae998e43f34876fa046c4efe90a316e53e5eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 5 Sep 2026 06:52:48 +0000 Subject: [PATCH 1/2] chore(deps): bump playwright in /docker Bumps playwright from v1.62.1-noble to v1.63.0-noble. --- updated-dependencies: - dependency-name: playwright dependency-version: v1.63.0-noble dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 2ed697ea..1bd916c7 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/playwright:v1.62.1-noble AS base +FROM mcr.microsoft.com/playwright:v1.63.0-noble AS base RUN npm install -g bun@1.3.11 ADD . /app WORKDIR /app From 0a7a8a903d1ecd1b0a50841b17b7cd3a009e95dd Mon Sep 17 00:00:00 2001 From: kitsuyui Date: Sat, 12 Sep 2026 12:24:42 +0900 Subject: [PATCH 2/2] fix: bump playwright npm package to match Docker image bump The dependabot PR only bumped docker/Dockerfile to mcr.microsoft.com/playwright:v1.63.0-noble, leaving the playwright/ playwright-core npm packages pinned at 1.62.1, which breaks browser-version-locked tests. --- bun.lock | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bun.lock b/bun.lock index b123f66c..4632bf1b 100644 --- a/bun.lock +++ b/bun.lock @@ -5,7 +5,7 @@ "": { "name": "rendering-proxy", "dependencies": { - "playwright": "1.62.1", + "playwright": "1.63.0", "with-defer": "^1.0.0", "yargs": "^18.0.0", }, @@ -490,9 +490,9 @@ "pkg-types": ["pkg-types@1.3.1", "", { "dependencies": { "confbox": "^0.1.8", "mlly": "^1.7.4", "pathe": "^2.0.1" } }, "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ=="], - "playwright": ["playwright@1.62.1", "", { "dependencies": { "playwright-core": "1.62.1" }, "optionalDependencies": { "fsevents": "2.3.2" }, "bin": { "playwright": "cli.js" } }, "sha512-0M+L3LAD8/nm554LOla9Ayx0j0tmFZ0FBcoQ7F1VuVHpM/XpiC8RcDzBQB8W5+hA8L22THxELzeF+2WcUzvcLg=="], + "playwright": ["playwright@1.63.0", "", { "dependencies": { "playwright-core": "1.63.0" }, "optionalDependencies": { "fsevents": "2.3.2" }, "bin": { "playwright": "cli.js" } }, "sha512-+7ziBLidS4NaNCdt57SUDT+wYmmd5fmiQejUic/kb+YsYSCPyOOE9sebzMjNmQrsnNpDJqd4WHvV/8lfKfUDUg=="], - "playwright-core": ["playwright-core@1.62.1", "", { "bin": { "playwright-core": "cli.js" } }, "sha512-wPYSwEBJY9GHraISXqyqtx0na0LpO3XEX7jNDhntbex7tzUS7kLnZsOlFruFJB4Hi/rhDMjXGqHewDZ68nYZVw=="], + "playwright-core": ["playwright-core@1.63.0", "", { "bin": { "playwright-core": "cli.js" } }, "sha512-rYCsBF/M5HjUch52bbtVONEFjv6Xu8sm8h72dNlR5bzIE1fvC/bxgspzkjSfU+MweEMmPM8KJebG6nnyxo5mCg=="], "portfinder": ["portfinder@1.0.38", "", { "dependencies": { "async": "^3.2.6", "debug": "^4.3.6" } }, "sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg=="], diff --git a/package.json b/package.json index d96a8a91..3dcd99f8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "dependencies": { - "playwright": "1.62.1", + "playwright": "1.63.0", "with-defer": "^1.0.0", "yargs": "^18.0.0" },