Skip to content

Navigation Menu

Sign in
Sign up

chore(deps-dev): bump the frontend-minor group across 1 directory with 2 updates - #3

Open
dependabot[bot] wants to merge 1 commit into
main from
dependabot/npm_and_yarn/desktop/frontend-minor-3c1eaad216
Open

chore(deps-dev): bump the frontend-minor group across 1 directory with 2 updates #3
dependabot[bot] wants to merge 1 commit into
main from
dependabot/npm_and_yarn/desktop/frontend-minor-3c1eaad216

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026
edited
Loading

Copy link
Copy Markdown

Bumps the frontend-minor group with 2 updates in the /desktop directory: playwright and prettier.

Updates playwright from 1.55.0 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
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for playwright since your current version.


Updates prettier from 3.6.2 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

3.9.5

🔗 Changelog

3.9.4

  • Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

🔗 Changelog

3.9.3

🔗 Changelog

3.9.1

🔗 Changelog

3.9.0

diff

🔗 Prettier 3.9: Major parser upgrades and Formatting improvements

3.8.5

🔗 Changelog

3.8.4

🔗 Changelog

3.8.3

🔗 Changelog

... (truncated)

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
 "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for prettier since your current version.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 17, 2026
@dependabot dependabot Bot changed the title (削除) Bump the frontend-minor group in /desktop with 2 updates (削除ここまで) (追記) build(deps-dev): bump the frontend-minor group across 1 directory with 2 updates (追記ここまで) Aug 17, 2026
dependabot Bot force-pushed the dependabot/npm_and_yarn/desktop/frontend-minor-3c1eaad216 branch from 9d58343 to 7e915e8 Compare August 17, 2026 11:51
dependabot Bot force-pushed the dependabot/npm_and_yarn/desktop/frontend-minor-3c1eaad216 branch from 7e915e8 to 028e530 Compare August 24, 2026 13:19
dependabot Bot force-pushed the dependabot/npm_and_yarn/desktop/frontend-minor-3c1eaad216 branch from 028e530 to 36ba006 Compare September 2, 2026 13:04
...h 2 updates
Bumps the frontend-minor group with 2 updates in the /desktop directory: [playwright](https://github.com/microsoft/playwright) and [prettier](https://github.com/prettier/prettier).
Updates `playwright` from 1.55.0 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.55.0...v1.62.1)
Updates `prettier` from 3.6.2 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.6.2...3.9.6)
---
updated-dependencies:
- dependency-name: playwright
 dependency-version: 1.62.1
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: frontend-minor
- dependency-name: prettier
 dependency-version: 3.9.6
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: frontend-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title (削除) build(deps-dev): bump the frontend-minor group across 1 directory with 2 updates (削除ここまで) (追記) chore(deps-dev): bump the frontend-minor group across 1 directory with 2 updates (追記ここまで) Sep 7, 2026
dependabot Bot force-pushed the dependabot/npm_and_yarn/desktop/frontend-minor-3c1eaad216 branch from 36ba006 to 69c7c0e Compare September 7, 2026 13:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

0 participants

AltStyle によって変換されたページ (->オリジナル) /