chore(deps): update mcr.microsoft.com/playwright docker tag to v1.62.1 #57

Open
renovate wants to merge 1 commit from renovate/mcr.microsoft.com-playwright-1.x into master
Collaborator

This PR contains the following updates:

Package Type Update Change
mcr.microsoft.com/playwright final minor v1.61.1-jammyv1.62.1-jammy

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | mcr.microsoft.com/playwright | final | minor | `v1.61.1-jammy` → `v1.62.1-jammy` | --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDQuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEwNC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
Update mcr.microsoft.com/playwright Docker tag to v1.62.0
Some checks failed
nuxt-clients-e2e/pipeline/pr-master This commit looks good
agent/review Blocker: Playwright image 1.62.0 vs @playwright/test 1.61.1 mismatch
91843816c4
Collaborator

Review verdict: blockers

Renovate bump of the Playwright base image alone leaves the e2e toolchain on mismatched versions. Playwright requires the Docker browser image and @playwright/test to match; this PR introduces that skew in the same Dockerfile.

Blockers

  1. tests/e2e/Dockerfile:1 vs tests/e2e/Dockerfile:7FROM …:v1.62.0-jammy but still npm install -g @playwright/test@1.61.1. Image browsers and the npm runner must be the same major.minor.patch (Playwright’s documented contract). Expect install/browser mismatch or flaky e2e under docker compose builds.

Suggestions / nits

  1. tests/e2e/package.json / lockfile still pin @playwright/test@1.61.1 — bump together with the image (and the global install in the Dockerfile).
  2. tests/e2e/Jenkinsfile:14 still uses mcr.microsoft.com/playwright:v1.61.1-jammy (CI agent image). CI path is unchanged; Dockerfile-only bump does not update Jenkins e2e. Align Jenkinsfile when intentionally moving to 1.62.0.
  3. No secrets or layering issues in this one-line change.
## Review verdict: **blockers** Renovate bump of the Playwright base image alone leaves the e2e toolchain on mismatched versions. Playwright requires the Docker browser image and `@playwright/test` to match; this PR introduces that skew in the same Dockerfile. ### Blockers 1. **`tests/e2e/Dockerfile:1` vs `tests/e2e/Dockerfile:7`** — `FROM …:v1.62.0-jammy` but still `npm install -g @playwright/test@1.61.1`. Image browsers and the npm runner must be the same major.minor.patch (Playwright’s documented contract). Expect install/browser mismatch or flaky e2e under `docker compose` builds. ### Suggestions / nits 1. **`tests/e2e/package.json`** / lockfile still pin `@playwright/test@1.61.1` — bump together with the image (and the global install in the Dockerfile). 2. **`tests/e2e/Jenkinsfile:14`** still uses `mcr.microsoft.com/playwright:v1.61.1-jammy` (CI agent image). CI path is unchanged; Dockerfile-only bump does not update Jenkins e2e. Align Jenkinsfile when intentionally moving to 1.62.0. 3. No secrets or layering issues in this one-line change. <!-- agent-review:91843816c44f06402c730d40b5a18a2ec5dcaafe -->
renovate changed title from Update mcr.microsoft.com/playwright Docker tag to v1.62.0 to Update mcr.microsoft.com/playwright Docker tag to v1.62.1 2026-07-31 06:00:40 +00:00
renovate force-pushed renovate/mcr.microsoft.com-playwright-1.x from 91843816c4
Some checks failed
nuxt-clients-e2e/pipeline/pr-master This commit looks good
agent/review Blocker: Playwright image 1.62.0 vs @playwright/test 1.61.1 mismatch
to 5b687f1d2c
Some checks failed
agent/review Blocker: Playwright image 1.62.1 vs @playwright/test 1.61.1 mismatch
nuxt-clients-e2e/pipeline/pr-master This commit looks good
2026-07-31 06:00:41 +00:00
Compare
Collaborator

Review: blocked

Renovate bump of the Playwright image to v1.62.1 leaves @playwright/test and CI image pins on 1.61.1. Repo contract (README) requires the Docker tag to match @playwright/test in tests/e2e/package.json and the Dockerfile install — mismatch risks browser/driver skew in e2e.

Blockers

  1. tests/e2e/Dockerfile:1FROM ...:v1.62.1-jammy while line 7 still installs @playwright/test@1.61.1
  2. tests/e2e/package.json"@playwright/test": "1.61.1" not bumped with the image
  3. tests/e2e/Jenkinsfile — pod still uses mcr.microsoft.com/playwright:v1.61.1-jammy (CI path unchanged by this PR)

Fix: bump image + @playwright/test (+ lockfile) + Jenkinsfile (and README pin) to the same version in one change, or revert the Dockerfile-only bump until Renovate updates the npm dep.

Suggestions / nits

  • Prefer a single Renovate group / regex so Playwright Docker + npm stay in lockstep.
## Review: blocked Renovate bump of the Playwright **image** to `v1.62.1` leaves `@playwright/test` and CI image pins on **1.61.1**. Repo contract (README) requires the Docker tag to match `@playwright/test` in `tests/e2e/package.json` and the Dockerfile install — mismatch risks browser/driver skew in e2e. ### Blockers 1. `tests/e2e/Dockerfile:1` — `FROM ...:v1.62.1-jammy` while line 7 still installs `@playwright/test@1.61.1` 2. `tests/e2e/package.json` — `"@playwright/test": "1.61.1"` not bumped with the image 3. `tests/e2e/Jenkinsfile` — pod still uses `mcr.microsoft.com/playwright:v1.61.1-jammy` (CI path unchanged by this PR) **Fix:** bump image + `@playwright/test` (+ lockfile) + Jenkinsfile (and README pin) to the same version in one change, or revert the Dockerfile-only bump until Renovate updates the npm dep. ### Suggestions / nits - Prefer a single Renovate group / regex so Playwright Docker + npm stay in lockstep. <!-- agent-review:5b687f1d2ccf93e27389d74059d6ff210dc1080c -->
renovate changed title from Update mcr.microsoft.com/playwright Docker tag to v1.62.1 to chore(deps): update mcr.microsoft.com/playwright docker tag to v1.62.1 2026-08-09 06:00:25 +00:00
Some checks failed
agent/review Blocker: Playwright image 1.62.1 vs @playwright/test 1.61.1 mismatch
Required
nuxt-clients-e2e/pipeline/pr-master This commit looks good
Required
Details
This pull request is blocked because it's outdated.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/mcr.microsoft.com-playwright-1.x:renovate/mcr.microsoft.com-playwright-1.x
git switch renovate/mcr.microsoft.com-playwright-1.x
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
sunsay/nuxt-clients!57
No description provided.