Skip to content

chore(deps-dev): bump playwright from 1.61.1 to 1.62.1 in the testing group across 1 directory - #627

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/testing-fed66be72f
Closed

chore(deps-dev): bump playwright from 1.61.1 to 1.62.1 in the testing group across 1 directory#627
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/testing-fed66be72f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown

Bumps the testing group with 1 update in the / directory: playwright.

Updates playwright from 1.61.1 to 1.62.1

Release notes

Sourced from playwright's releases.

v1.62.1

Bug Fixes

  • #41989 [Regression]: tsconfig "extends" bare specifier isn't resolved via node_modules walk-up like tsc (fatal since 1.62)
  • #41998 [Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62)
  • #41985 Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG
  • #42000 [Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62
  • #42013 [BUG]Image-type actionable elements are not presented in the snapshot.

v1.62.0

🧱 New component testing model

Component testing moves to a stories and galleries model. A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) / unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an AbortSignal, letting you cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);
await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot() can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');
// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });
</tr></table>

... (truncated)

Commits
  • 26a9e47 cherry-pick(#42043): docs: release notes for v1.62 Python, Java, and .NET (#4...
  • 0a81d5d cherry-pick(#42040): docs(release-notes): mention the isolated headless clipb...
  • 8376826 cherry-pick(#42034): fix(aria): keep icon-only clickable elements in ai snaps...
  • 66c5cc9 chore: mark v1.62.1 (#42020)
  • 9672bc3 cherry-pick(#42009): fix(types): support branded primitives in evaluate argum...
  • 4325804 cherry-pick(#41988): fix(aria): preserve names from collapsed text contributors
  • 9632f8e cherry-pick(#42005): fix(tsconfig): do not throw when "extends"/"references" ...
  • e3950d9 chore: mark v1.62.0 (#41981)
  • f07e0f7 cherry-pick(#41940): docs: release notes for v1.62 (#41967)
  • 05a306c cherry-pick(#41964): Revert "feat(routeFromHar): add interceptAPIRequests opt...
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 10, 2026
@github-actions

Copy link
Copy Markdown

⚠️ Issue Reference Missing

This pull request does not include a reference to an issue. To ensure Drips Wave points are credited upon merge, please update the PR description to link the issue it resolves.

Add one of the following to your PR description:

  • Closes #123
  • Fixes #123
  • Resolves #123

This check is informational and will not block merging — maintenance PRs are exempt.

@github-actions

Copy link
Copy Markdown

⚠️ Issue Reference Missing

This pull request does not include a reference to an issue. To ensure Drips Wave points are credited upon merge, please update the PR description to link the issue it resolves.

Add one of the following to your PR description:

  • Closes #123
  • Fixes #123
  • Resolves #123

This check is informational and will not block merging — maintenance PRs are exempt.

Bumps the testing group with 1 update in the / directory: [playwright](https://github.com/microsoft/playwright).


Updates `playwright` from 1.61.1 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.61.1...v1.62.1)

---
updated-dependencies:
- dependency-name: playwright
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: testing
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps-dev): bump playwright from 1.61.1 to 1.62.1 in the testing group chore(deps-dev): bump playwright from 1.61.1 to 1.62.1 in the testing group across 1 directory Aug 12, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/testing-fed66be72f branch from 92d9ed5 to a6c49db Compare August 12, 2026 14:05
@github-actions

Copy link
Copy Markdown

⚠️ Issue Reference Missing

This pull request does not include a reference to an issue. To ensure Drips Wave points are credited upon merge, please update the PR description to link the issue it resolves.

Add one of the following to your PR description:

  • Closes #123
  • Fixes #123
  • Resolves #123

This check is informational and will not block merging — maintenance PRs are exempt.

2 similar comments
@github-actions

Copy link
Copy Markdown

⚠️ Issue Reference Missing

This pull request does not include a reference to an issue. To ensure Drips Wave points are credited upon merge, please update the PR description to link the issue it resolves.

Add one of the following to your PR description:

  • Closes #123
  • Fixes #123
  • Resolves #123

This check is informational and will not block merging — maintenance PRs are exempt.

@github-actions

Copy link
Copy Markdown

⚠️ Issue Reference Missing

This pull request does not include a reference to an issue. To ensure Drips Wave points are credited upon merge, please update the PR description to link the issue it resolves.

Add one of the following to your PR description:

  • Closes #123
  • Fixes #123
  • Resolves #123

This check is informational and will not block merging — maintenance PRs are exempt.

@github-actions

Copy link
Copy Markdown

📦 Bundle Size Report

Commit: 5f967e3

Metric Size
JavaScript chunks 5564.6 KB
CSS 0.0 KB
Total 5564.6 KB (5.43 MB)
Budget 6,656 KB (6.5 MB)

Within budget — total bundle is under the 6.5 MB threshold.

Thresholds: JS+CSS combined must stay under 6.5 MB. A single-PR regression
larger than +50 KB requires explicit sign-off from a maintainer.
See docs/bundle-size.md for full policy.

@dependabot @github

dependabot Bot commented on behalf of github Aug 12, 2026

Copy link
Copy Markdown
Author

Superseded by #632.

@dependabot dependabot Bot closed this Aug 12, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/testing-fed66be72f branch August 12, 2026 14:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code size/XS

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants