Skip to content

Bump the all-npm-dependencies group with 5 updates#1

Merged
fey merged 1 commit into
mainfrom
dependabot/npm_and_yarn/all-npm-dependencies-f2478c6ea3
May 20, 2026
Merged

Bump the all-npm-dependencies group with 5 updates#1
fey merged 1 commit into
mainfrom
dependabot/npm_and_yarn/all-npm-dependencies-f2478c6ea3

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the all-npm-dependencies group with 5 updates:

Package From To
npm-check-updates 17.1.15 22.2.0
@playwright/test 1.50.1 1.60.0
@types/node 22.13.5 25.9.0
allure-commandline 2.32.2 2.41.0
allure-playwright 3.2.0 3.8.0

Updates npm-check-updates from 17.1.15 to 22.2.0

Release notes

Sourced from npm-check-updates's releases.

v22.2.0

What's Changed

Full Changelog: raineorshine/npm-check-updates@v22.1.1...v22.2.0

v22.1.1

What's Changed

New Contributors

Full Changelog: raineorshine/npm-check-updates@v22.1.0...v22.1.1

v22.1.0

What's Changed

Full Changelog: raineorshine/npm-check-updates@v22.0.1...v22.1.0

v22.0.1

What's Changed

Full Changelog: raineorshine/npm-check-updates@v22.0.0...v22.0.1

v22.0.0

Breaking Changes

--cooldown now falls back to the greatest non-prerelease version rather than skipping the upgrade entirely when the latest version falls within the cooldown window.

... (truncated)

Commits

Updates @playwright/test from 1.50.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
Maintainer changes

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


Updates @types/node from 22.13.5 to 25.9.0

Commits

Updates allure-commandline from 2.32.2 to 2.41.0

Release notes

Sourced from allure-commandline's releases.

2.41.0

Full Changelog: allure-framework/allure-npm@2.40.0...2.41.0

2.40.0

Full Changelog: allure-framework/allure-npm@2.39.0...2.40.0

2.39.0

Full Changelog: allure-framework/allure-npm@2.38.1...2.39.0

2.38.1

Full Changelog: allure-framework/allure-npm@2.38.0...2.38.1

2.38.0

Full Changelog: allure-framework/allure-npm@2.37.0...2.38.0

2.37.0

Full Changelog: allure-framework/allure-npm@2.36.0...2.37.0

2.36.0

Full Changelog: allure-framework/allure-npm@2.35.1...2.36.0

2.35.1

... (truncated)

Commits
Maintainer changes

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


Updates allure-playwright from 3.2.0 to 3.8.0

Release notes

Sourced from allure-playwright's releases.

v3.8.0

What's Changed

🚀 New Features

🐞 Bug Fixes

Full Changelog: allure-framework/allure-js@v3.7.2...v3.8.0

v3.7.2

What's Changed

🚀 New Features

🐞 Bug Fixes

👻 Internal changes

Full Changelog: allure-framework/allure-js@v3.7.1...v3.7.2

v3.7.1

What's Changed

🐞 Bug Fixes

Full Changelog: allure-framework/allure-js@v3.7.0...v3.7.1

v3.7.0

What's Changed

🐞 Bug Fixes

⬆️ Dependency Updates

... (truncated)

Commits
Maintainer changes

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


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 all-npm-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [npm-check-updates](https://github.com/raineorshine/npm-check-updates) | `17.1.15` | `22.2.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.50.1` | `1.60.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.5` | `25.9.0` |
| [allure-commandline](https://github.com/allure-framework/allure-npm) | `2.32.2` | `2.41.0` |
| [allure-playwright](https://github.com/allure-framework/allure-js/tree/HEAD/packages/allure-playwright) | `3.2.0` | `3.8.0` |


Updates `npm-check-updates` from 17.1.15 to 22.2.0
- [Release notes](https://github.com/raineorshine/npm-check-updates/releases)
- [Changelog](https://github.com/raineorshine/npm-check-updates/blob/main/CHANGELOG.md)
- [Commits](raineorshine/npm-check-updates@v17.1.15...v22.2.0)

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

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

Updates `allure-commandline` from 2.32.2 to 2.41.0
- [Release notes](https://github.com/allure-framework/allure-npm/releases)
- [Commits](allure-framework/allure-npm@2.32.2...2.41.0)

Updates `allure-playwright` from 3.2.0 to 3.8.0
- [Release notes](https://github.com/allure-framework/allure-js/releases)
- [Commits](https://github.com/allure-framework/allure-js/commits/v3.8.0/packages/allure-playwright)

---
updated-dependencies:
- dependency-name: npm-check-updates
  dependency-version: 22.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.9.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: allure-commandline
  dependency-version: 2.41.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: allure-playwright
  dependency-version: 3.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
...

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 19, 2026
@fey fey merged commit a63ba0d into main May 20, 2026
1 check passed
@fey fey deleted the dependabot/npm_and_yarn/all-npm-dependencies-f2478c6ea3 branch May 20, 2026 15:59
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.

1 participant