Skip to content

chore(deps)(deps): bump the npm-production group across 1 directory with 2 updates#13

Merged
haan merged 2 commits into
mainfrom
dependabot/npm_and_yarn/main/npm-production-1559e95990
May 25, 2026
Merged

chore(deps)(deps): bump the npm-production group across 1 directory with 2 updates#13
haan merged 2 commits into
mainfrom
dependabot/npm_and_yarn/main/npm-production-1559e95990

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-production group with 2 updates in the / directory: archiver and playwright.

Updates archiver from 7.0.1 to 8.0.0

Release notes

Sourced from archiver's releases.

8.0.0

What’s changed

Breaking changes

Maintenance

Documentation

Dependency updates

... (truncated)

Changelog

Sourced from archiver's changelog.

Changelog

8.0.0 - May 8, 2026Diff

7.0.1 - March 9, 2024Diff

7.0.0 - February 28, 2024Diff

6.0.2 - February 27, 2024Diff

6.0.1 - September 3, 2023Diff

6.0.0 - August 17, 2023Diff

Release Archive

Commits
Maintainer changes

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


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

haan commented May 25, 2026

Copy link
Copy Markdown
Owner

@dependabot rebase

@dependabot dependabot Bot changed the title chore(deps)(deps): bump the npm-production group with 2 updates chore(deps)(deps): bump the npm-production group across 1 directory with 2 updates May 25, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/main/npm-production-1559e95990 branch from 575f92b to ea99725 Compare May 25, 2026 14:53
dependabot Bot and others added 2 commits May 25, 2026 17:01
…ith 2 updates

Bumps the npm-production group with 2 updates in the / directory: [archiver](https://github.com/archiverjs/node-archiver) and [playwright](https://github.com/microsoft/playwright).


Updates `archiver` from 7.0.1 to 8.0.0
- [Release notes](https://github.com/archiverjs/node-archiver/releases)
- [Changelog](https://github.com/archiverjs/node-archiver/blob/master/CHANGELOG.md)
- [Commits](archiverjs/node-archiver@7.0.1...8.0.0)

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)

---
updated-dependencies:
- dependency-name: archiver
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-production
- dependency-name: playwright
  dependency-version: 1.60.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
...

Signed-off-by: dependabot[bot] <support@github.com>
@haan haan force-pushed the dependabot/npm_and_yarn/main/npm-production-1559e95990 branch from ea99725 to 5a701ad Compare May 25, 2026 15:13
@haan haan merged commit b4386c7 into main May 25, 2026
1 check passed
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/main/npm-production-1559e95990 branch May 25, 2026 15:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant