Skip to content

chore(deps-dev): bump the dev-minor group with 3 updates#949

Merged
layershifter merged 4 commits into
mainfrom
dependabot/npm_and_yarn/dev-minor-4bee859f41
May 13, 2026
Merged

chore(deps-dev): bump the dev-minor group with 3 updates#949
layershifter merged 4 commits into
mainfrom
dependabot/npm_and_yarn/dev-minor-4bee859f41

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 12, 2026

Bumps the dev-minor group with 3 updates: @types/node, playwright and syncpack.

Updates @types/node from 25.6.0 to 25.7.0

Commits

Updates playwright from 1.59.1 to 1.60.0

Release notes

Sourced from playwright's releases.

v1.60.0

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});
await page.locator('#dropzone').drop({
data: {
'text/plain': 'hello world',
'text/uri-list': 'https://example.com',
},
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page

... (truncated)

Commits

Updates syncpack from 15.0.0 to 15.1.2

Release notes

Sourced from syncpack's releases.

15.1.2

15.1.2 (2026-05-10)

This release adds a new syncpack update --interactive option, a 30 minute TTL cache which can be skipped with a new syncpack update --no-cache option, and Update Groups to set policies for if and how various dependencies should be updated.

Features

  • config: add updateGroups to set registry update policies (bd7573e), closes #244
  • update: add --interactive prompt (8b1334a)
  • update: cache registry responses for 30mins (08bd28c)

Bug Fixes

  • cargo: update dependencies (f99d54f)
  • github: fix release pipeline (54b94f7)
  • npm: forward stdio correctly to binary (87be440) - fixes the deprecated 15.1.1

15.1.1

15.1.1 (2026-05-10)

❌ Deprecated due to a bug in the node.js integration with the rust binary, fixed in 15.1.2.

Changelog

Sourced from syncpack's changelog.

15.1.2 (2026-05-10)

Bug Fixes

  • npm: forward stdio correctly to binary (87be440)

15.1.1 (2026-05-10)

Features

  • config: add updateGroups to set registry update policies (bd7573e), closes #244
  • update: add --interactive prompt (8b1334a)
  • update: cache registry responses for 30mins (08bd28c)

Bug Fixes

  • cargo: update dependencies (f99d54f)
  • github: fix release pipeline (9a38e9e)
Commits
  • d55c14e chore(release): 15.1.2
  • 87be440 fix(npm): forward stdio correctly to binary
  • 46cb6ff chore(release): 15.1.1
  • 9a38e9e fix(github): fix release pipeline
  • f99d54f fix(cargo): update dependencies
  • bd7573e feat(config): add updateGroups to set registry update policies
  • 7e30187 chore(site): update astro starlight
  • 08bd28c feat(update): cache registry responses for 30mins
  • 8b1334a feat(update): add --interactive prompt
  • 5f6efa7 chore(github): update github actions
  • See full diff in compare view

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dev-minor group with 3 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [playwright](https://github.com/microsoft/playwright) and [syncpack](https://github.com/JamieMason/syncpack).


Updates `@types/node` from 25.6.0 to 25.7.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `playwright` from 1.59.1 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.59.1...v1.60.0)

Updates `syncpack` from 15.0.0 to 15.1.2
- [Release notes](https://github.com/JamieMason/syncpack/releases)
- [Changelog](https://github.com/JamieMason/syncpack/blob/main/CHANGELOG.md)
- [Commits](JamieMason/syncpack@15.0.0...15.1.2)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor
- dependency-name: playwright
  dependency-version: 1.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor
- dependency-name: syncpack
  dependency-version: 15.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 12, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 12, 2026 20:10
@dependabot dependabot Bot added javascript Pull requests that update Javascript code dependencies Pull requests that update a dependency file labels May 12, 2026
@github-actions
Copy link
Copy Markdown
Contributor

📊 Bundle size report

✅ No changes found

@layershifter
Copy link
Copy Markdown
Member

@copilot yarn dedupe

Agent-Logs-Url: https://github.com/microsoft/griffel/sessions/f956fadc-0f06-47e1-8cd0-5fa403121fca

Co-authored-by: layershifter <14183168+layershifter@users.noreply.github.com>
Copy link
Copy Markdown
Contributor

Copilot AI commented May 12, 2026

@copilot yarn dedupe

Done in 8041ec1. Deduped @types/node from 25.6.0 → 25.7.0, removing 2 packages from yarn.lock.

Copilot AI requested a review from layershifter May 12, 2026 20:18
@layershifter
Copy link
Copy Markdown
Member

@copilot resolve conflicts

…rn/dev-minor-4bee859f41

Co-authored-by: layershifter <14183168+layershifter@users.noreply.github.com>
Copy link
Copy Markdown
Contributor

Copilot AI commented May 12, 2026

@copilot resolve conflicts

Done in 4ca113b. Merged origin/main into the branch and resolved the yarn.lock conflict.

Copilot AI requested a review from layershifter May 12, 2026 20:25
@layershifter
Copy link
Copy Markdown
Member

@copilot run yarn dedupe again

Agent-Logs-Url: https://github.com/microsoft/griffel/sessions/a23a18a1-dd41-4549-a1b3-0f68c4b31717

Co-authored-by: layershifter <14183168+layershifter@users.noreply.github.com>
Copy link
Copy Markdown
Contributor

Copilot AI commented May 13, 2026

@copilot run yarn dedupe again

Done in e61f631. Deduped @types/node from 25.6.0 → 25.7.0, removing 2 packages from yarn.lock.

@layershifter layershifter merged commit 4e3064c into main May 13, 2026
4 checks passed
@layershifter layershifter deleted the dependabot/npm_and_yarn/dev-minor-4bee859f41 branch May 13, 2026 08:05
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants