Skip to content

fix(deps-dev): bump the npm-dev-minor-patch group with 7 updates#47

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dev-minor-patch-1c419ed363
Open

fix(deps-dev): bump the npm-dev-minor-patch group with 7 updates#47
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dev-minor-patch-1c419ed363

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the npm-dev-minor-patch group with 7 updates:

Package From To
@playwright/test 1.59.1 1.60.0
@wordpress/babel-preset-default 8.45.0 8.46.0
@wordpress/e2e-test-utils-playwright 1.45.0 1.46.0
@wordpress/eslint-plugin 25.1.0 25.2.0
@wordpress/prettier-config 4.45.0 4.46.0
@wordpress/scripts 32.1.0 32.2.0
@wordpress/stylelint-config 23.37.0 23.38.0

Updates @playwright/test from 1.59.1 to 1.60.0

Release notes

Sourced from @​playwright/test'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 @wordpress/babel-preset-default from 8.45.0 to 8.46.0

Changelog

Sourced from @​wordpress/babel-preset-default's changelog.

8.46.0 (2026-05-14)

Commits
  • 51264e3 chore(release): publish
  • a8d4b30 Update changelog files
  • f75812b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • ac75d25 Update changelog files
  • 3e8943b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 9656be0 Update changelog files
  • 4313ac2 Merge changes published in the Gutenberg plugin "release/23.2" branch
  • a5cc28f Update changelog files
  • 30dff6b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 6445ede chore(release): publish
  • Additional commits viewable in compare view

Updates @wordpress/e2e-test-utils-playwright from 1.45.0 to 1.46.0

Changelog

Sourced from @​wordpress/e2e-test-utils-playwright's changelog.

1.46.0 (2026-05-14)

Commits
  • 51264e3 chore(release): publish
  • a8d4b30 Update changelog files
  • f75812b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • ac75d25 Update changelog files
  • 3e8943b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 9656be0 Update changelog files
  • 4313ac2 Merge changes published in the Gutenberg plugin "release/23.2" branch
  • a5cc28f Update changelog files
  • 30dff6b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 6445ede chore(release): publish
  • Additional commits viewable in compare view

Updates @wordpress/eslint-plugin from 25.1.0 to 25.2.0

Changelog

Sourced from @​wordpress/eslint-plugin's changelog.

25.2.0 (2026-05-14)

New Features

Commits
  • 51264e3 chore(release): publish
  • a8d4b30 Update changelog files
  • f75812b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • ac75d25 Update changelog files
  • 3e8943b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 9656be0 Update changelog files
  • 4313ac2 Merge changes published in the Gutenberg plugin "release/23.2" branch
  • a5cc28f Update changelog files
  • 30dff6b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 6445ede chore(release): publish
  • Additional commits viewable in compare view

Updates @wordpress/prettier-config from 4.45.0 to 4.46.0

Changelog

Sourced from @​wordpress/prettier-config's changelog.

4.46.0 (2026-05-14)

Commits
  • 51264e3 chore(release): publish
  • a8d4b30 Update changelog files
  • f75812b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • ac75d25 Update changelog files
  • 3e8943b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 9656be0 Update changelog files
  • 4313ac2 Merge changes published in the Gutenberg plugin "release/23.2" branch
  • a5cc28f Update changelog files
  • 30dff6b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 6445ede chore(release): publish
  • Additional commits viewable in compare view

Updates @wordpress/scripts from 32.1.0 to 32.2.0

Changelog

Sourced from @​wordpress/scripts's changelog.

32.2.0 (2026-05-14)

Commits
  • 51264e3 chore(release): publish
  • a8d4b30 Update changelog files
  • f75812b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • ac75d25 Update changelog files
  • 3e8943b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 9656be0 Update changelog files
  • 4313ac2 Merge changes published in the Gutenberg plugin "release/23.2" branch
  • a5cc28f Update changelog files
  • 30dff6b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 6445ede chore(release): publish
  • Additional commits viewable in compare view

Updates @wordpress/stylelint-config from 23.37.0 to 23.38.0

Changelog

Sourced from @​wordpress/stylelint-config's changelog.

23.38.0 (2026-05-14)

Commits
  • 51264e3 chore(release): publish
  • a8d4b30 Update changelog files
  • f75812b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • ac75d25 Update changelog files
  • 3e8943b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 9656be0 Update changelog files
  • 4313ac2 Merge changes published in the Gutenberg plugin "release/23.2" branch
  • a5cc28f Update changelog files
  • 30dff6b Merge changes published in the Gutenberg plugin "release/23.2" branch
  • 6445ede chore(release): publish
  • Additional commits viewable 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 npm-dev-minor-patch group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.59.1` | `1.60.0` |
| [@wordpress/babel-preset-default](https://github.com/WordPress/gutenberg/tree/HEAD/packages/babel-preset-default) | `8.45.0` | `8.46.0` |
| [@wordpress/e2e-test-utils-playwright](https://github.com/WordPress/gutenberg/tree/HEAD/packages/e2e-test-utils-playwright) | `1.45.0` | `1.46.0` |
| [@wordpress/eslint-plugin](https://github.com/WordPress/gutenberg/tree/HEAD/packages/eslint-plugin) | `25.1.0` | `25.2.0` |
| [@wordpress/prettier-config](https://github.com/WordPress/gutenberg/tree/HEAD/packages/prettier-config) | `4.45.0` | `4.46.0` |
| [@wordpress/scripts](https://github.com/WordPress/gutenberg/tree/HEAD/packages/scripts) | `32.1.0` | `32.2.0` |
| [@wordpress/stylelint-config](https://github.com/WordPress/gutenberg/tree/HEAD/packages/stylelint-config) | `23.37.0` | `23.38.0` |


Updates `@playwright/test` 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 `@wordpress/babel-preset-default` from 8.45.0 to 8.46.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/babel-preset-default/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/babel-preset-default@8.46.0/packages/babel-preset-default)

Updates `@wordpress/e2e-test-utils-playwright` from 1.45.0 to 1.46.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/e2e-test-utils-playwright/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/e2e-test-utils-playwright@1.46.0/packages/e2e-test-utils-playwright)

Updates `@wordpress/eslint-plugin` from 25.1.0 to 25.2.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/eslint-plugin@25.2.0/packages/eslint-plugin)

Updates `@wordpress/prettier-config` from 4.45.0 to 4.46.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/prettier-config/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/prettier-config@4.46.0/packages/prettier-config)

Updates `@wordpress/scripts` from 32.1.0 to 32.2.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/scripts/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/scripts@32.2.0/packages/scripts)

Updates `@wordpress/stylelint-config` from 23.37.0 to 23.38.0
- [Release notes](https://github.com/WordPress/gutenberg/releases)
- [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/stylelint-config/CHANGELOG.md)
- [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/stylelint-config@23.38.0/packages/stylelint-config)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dev-minor-patch
- dependency-name: "@wordpress/babel-preset-default"
  dependency-version: 8.46.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dev-minor-patch
- dependency-name: "@wordpress/e2e-test-utils-playwright"
  dependency-version: 1.46.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dev-minor-patch
- dependency-name: "@wordpress/eslint-plugin"
  dependency-version: 25.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dev-minor-patch
- dependency-name: "@wordpress/prettier-config"
  dependency-version: 4.46.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dev-minor-patch
- dependency-name: "@wordpress/scripts"
  dependency-version: 32.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dev-minor-patch
- dependency-name: "@wordpress/stylelint-config"
  dependency-version: 23.38.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dev-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the Dependencies Created by dependabot.yml label May 22, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Dependencies Created by dependabot.yml

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants