Skip to content

chore(deps): update dependency playwright to ^1.60.0#6685

Merged
cultureamp-renovate[bot] merged 1 commit into
renovate/rollupfrom
renovate/update/playwright-monorepo
May 16, 2026
Merged

chore(deps): update dependency playwright to ^1.60.0#6685
cultureamp-renovate[bot] merged 1 commit into
renovate/rollupfrom
renovate/update/playwright-monorepo

Conversation

@cultureamp-renovate
Copy link
Copy Markdown
Contributor

@cultureamp-renovate cultureamp-renovate Bot commented May 15, 2026

Working with Renovate for Culture Amp

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
playwright (source) ^1.59.1 -> ^1.60.0 age adoption passing confidence

Release Notes

microsoft/playwright (playwright)

v1.60.0

Compare Source

🌐 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
Locators and Assertions
Network
  • webSocketRoute.protocols() returns the WebSocket subprotocols requested by the page.
  • New option noDefaults in browserType.connectOverCDP() disables Playwright's default overrides on the default context (download behavior, focus emulation, media emulation), so attaching to a user's daily-driver browser doesn't disturb its state.
Errors and Reporting
Test runner
  • New {testFileBaseName} token in testProject.snapshotPathTemplate — file name without extension.
  • Test runner now errors when a config tries to override a non-option fixture, and rejects workers: 0 or negative values.
🛠️ Other improvements
  • HTML reporter:
    • npx playwright show-report accepts .zip files directly — no need to unzip first.
    • Steps that contain attachments inside nested children show an indicator on the parent step.
    • The repeatEachIndex is shown in the test header when non-zero.
  • Trace Viewer adds a pretty-print toggle for JSON / form request and response bodies in the network details panel.
Breaking Changes ⚠️
  • Removed long-deprecated APIs:
    • Locator.ariaRef() — use the standard locator.ariaSnapshot() pipeline.
    • handle option on BrowserContext.exposeBinding and Page.exposeBinding.
    • logger option on BrowserType.connect and BrowserType.connectOverCDP — use tracing instead.
    • Context options videosPath / videoSize — use recordVideo instead.
Browser Versions
  • Chromium 148.0.7778.96
  • Mozilla Firefox 150.0.2
  • WebKit 26.4

This version was also tested against the following stable channels:

  • Google Chrome 147
  • Microsoft Edge 147

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented May 15, 2026

⚠️ No Changeset found

Latest commit: 1ac461f

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@cultureamp-renovate cultureamp-renovate Bot force-pushed the renovate/update/playwright-monorepo branch from 7a185ec to 1ac461f Compare May 16, 2026 16:48
@cultureamp-renovate cultureamp-renovate Bot merged commit dcfd80f into renovate/rollup May 16, 2026
16 checks passed
@cultureamp-renovate cultureamp-renovate Bot deleted the renovate/update/playwright-monorepo branch May 16, 2026 16:53
cultureamp-renovate Bot added a commit that referenced this pull request May 18, 2026
* chore(deps): update dependency @storybook/test-runner to ^0.24.4 (#6677)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency react-intl to ^10.1.6 (#6679)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency turbo to ^2.9.12 (#6681)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency prosemirror-model to ^1.25.5 (#6683)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency chromatic to ^16.10.0 (#6684)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency postcss-preset-env to ^11.3.0 (#6686)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency tsx to ^4.22.0 (#6687)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency stylelint to ^17.11.1 (#6680)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency rollup to ^4.60.4

* chore(deps): update dependency @vitejs/plugin-react to ^6.0.2 (#6699)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency chromatic to ^16.10.1 (#6700)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency turbo to ^2.9.14 (#6702)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency typescript-eslint to ^8.59.3 (#6682)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency prosemirror-model to ^1.25.6 (#6703)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency playwright to ^1.60.0 (#6685)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency react-intl to ^10.1.7 (#6701)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>
Co-authored-by: mia-nguyen0411 <mia.nguyen@cultureamp.com>

* chore(deps): update dependency @types/node to ^22.19.19 (#6678)

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>
Co-authored-by: mia-nguyen0411 <mia.nguyen@cultureamp.com>

* chore: add changeset

---------

Co-authored-by: cultureamp-renovate[bot] <89962466+cultureamp-renovate[bot]@users.noreply.github.com>
Co-authored-by: mia-nguyen0411 <mia.nguyen@cultureamp.com>
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.

0 participants