chore(deps-dev): bump @playwright/test from 1.59.0-alpha-2026-03-01 to 1.59.0-alpha-1773706743000#201
Conversation
Bumps [@playwright/test](https://github.com/microsoft/playwright) from 1.59.0-alpha-2026-03-01 to 1.59.0-alpha-1773706743000. - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/commits) --- updated-dependencies: - dependency-name: "@playwright/test" dependency-version: 1.59.0-alpha-1773706743000 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
AssigneesThe following users could not be added as assignees: LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile SummaryThis PR is a Dependabot bump of the Key issues found:
Recommendation: Re-run Confidence Score: 1/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["package.json: @playwright/test ^1.59.0-alpha-1773706743000"] --> B{Does lock file satisfy range?}
B --> C["package-lock.json resolved: 1.59.0-alpha-2026-03-01"]
C --> D["alpha-2026-03-01 is LESS THAN alpha-1773706743000"]
D --> E["Range NOT satisfied - npm ci FAILS"]
B --> F["Expected: lock resolves 1.59.0-alpha-1773706743000"]
F --> G["Range satisfied - npm ci succeeds"]
Last reviewed commit: 5f60f13 |
| }, | ||
| "devDependencies": { | ||
| "@playwright/test": "^1.59.0-alpha-2026-03-16", | ||
| "@playwright/test": "^1.59.0-alpha-1773706743000", |
There was a problem hiding this comment.
Incomplete package-lock.json update
apps/backend/package.json now specifies ^1.59.0-alpha-1773706743000, but package-lock.json is not properly updated to match. Two issues exist in the lock file:
- The workspace
devDependenciesentry (line 246) still reflects^1.59.0-alpha-2026-03-01instead of the new^1.59.0-alpha-1773706743000. - The resolved package at
apps/backend/node_modules/@playwright/testis still1.59.0-alpha-2026-03-01— the new version is never fetched or locked.
In semver pre-release ordering, alpha-1773706743000 (numeric identifier 1773706743000) is greater than alpha-2026-03-01 (identifier 2026). This means 1.59.0-alpha-2026-03-01 does not satisfy the ^1.59.0-alpha-1773706743000 range, so npm ci will fail with an "Invalid: lock file's version ... does not satisfy ... package.json's version" error.
The lock file needs to be regenerated (or manually corrected) so the resolved entry matches the new version.
Bumps @playwright/test from 1.59.0-alpha-2026-03-01 to 1.59.0-alpha-1773706743000.
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by cubic
Upgrade
@playwright/testto 1.59.0-alpha-1773706743000 to pick up the latest fixes and improvements in our backend tests. Dev-only change with no production impact.@playwright/testinapps/backend/package.json; refreshed lockfile.Written for commit 5f60f13. Summary will update on new commits.