Skip to content

chore(deps): update all non-major dependencies#315

Merged
high1 merged 1 commit into
mainfrom
renovate/all-minor-patch
May 12, 2026
Merged

chore(deps): update all non-major dependencies#315
high1 merged 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 16, 2026

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) 25.6.225.7.0 age confidence
@vitest/browser-playwright (source) 4.1.54.1.6 age confidence
@vitest/coverage-v8 (source) 4.1.54.1.6 age confidence
playwright (source) 1.59.11.60.0 age confidence
typescript-eslint (source) 8.59.28.59.3 age confidence
vitest (source) 4.1.54.1.6 age confidence

Release Notes

vitest-dev/vitest (@​vitest/browser-playwright)

v4.1.6

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
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
typescript-eslint/typescript-eslint (typescript-eslint)

v8.59.3

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.


Configuration

📅 Schedule: (in timezone Etc/Utc)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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 was generated by Mend Renovate. View the repository job log.

@netlify
Copy link
Copy Markdown

netlify Bot commented Mar 16, 2026

Deploy Preview for solid-clock ready!

Name Link
🔨 Latest commit 87fa199
🔍 Latest deploy log https://app.netlify.com/projects/solid-clock/deploys/6a02f43319d34000086e89d0
😎 Deploy Preview https://deploy-preview-315--solid-clock.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
🤖 Make changes Run an agent on this branch

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 59d0c69 to 17ae7e3 Compare March 23, 2026 17:02
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f6ac267 to 145a676 Compare March 25, 2026 01:59
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Mar 25, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 713647e to fe91760 Compare April 2, 2026 10:00
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from a2de9ab to bed9e67 Compare April 8, 2026 13:17
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from ae1c32e to 924dd15 Compare April 21, 2026 15:02
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 3c3e4be to f227ac3 Compare April 29, 2026 15:40
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 0d675df to 8c29c63 Compare May 6, 2026 14:38
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 42de710 to 377765c Compare May 11, 2026 22:04
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 377765c to 87fa199 Compare May 12, 2026 09:34
@renovate renovate Bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies May 12, 2026
@high1 high1 merged commit d25c706 into main May 12, 2026
5 checks passed
@renovate renovate Bot deleted the renovate/all-minor-patch branch May 12, 2026 09:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant