Skip to content

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

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#1394
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 17, 2026

This PR contains the following updates:

Package Change Age Confidence
@commitlint/cli (source) 20.5.020.5.3 age confidence
@commitlint/config-conventional (source) 20.5.020.5.3 age confidence
@types/node (source) 25.6.025.7.0 age confidence
commitlint (source) 20.5.020.5.3 age confidence
dom-serializer 3.0.03.1.1 age confidence
eslint (source) 10.2.010.3.0 age confidence
jsdom 29.0.229.1.1 age confidence
playwright (source) 1.59.11.60.0 age confidence
typescript-eslint (source) 8.58.28.59.3 age confidence
vitest (source) 4.1.44.1.6 age confidence
vue-tsc (source) 3.2.63.2.8 age confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v20.5.3

Compare Source

Note: Version bump only for package @​commitlint/cli

v20.5.2

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v20.5.3

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

conventional-changelog/commitlint (commitlint)

v20.5.3

Compare Source

Note: Version bump only for package commitlint

v20.5.2

Compare Source

Note: Version bump only for package commitlint

cheeriojs/dom-serializer (dom-serializer)

v3.1.1

Compare Source

  • fix: check Object.hasOwn in for-in (restores backwards compat) 17bd85e

Full Changelog: cheeriojs/dom-serializer@v3.1.0...v3.1.1

v3.1.0

Compare Source

What's Changed

  • Serialising a DOM is now ~40% faster by @​fb55 in #​1635
  • docs: Added a thread model outline, documented encodeEntities: false caveat by @​fb55 in #​1632

Full Changelog: cheeriojs/dom-serializer@v3.0.0...v3.1.0

eslint/eslint (eslint)

v10.3.0

Compare Source

v10.2.1

Compare Source

jsdom/jsdom (jsdom)

v29.1.1

Compare Source

v29.1.0

Compare Source

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.

v8.59.2

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.

v8.59.1

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.

v8.59.0

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.

vitest-dev/vitest (vitest)

v4.1.6

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.1.5

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/language-tools (vue-tsc)

v3.2.8

Compare Source

language-core
  • fix: replace inline code blocks after sfc blocks processing (#​6024) - Thanks to @​KazariEX!
  • fix: support navigation for kebab-case declarations in GlobalComponents (#​6026) - Thanks to @​Gehbt!
language-service
  • feat: support TS module resolution for SCSS @import navigation (#​6033) - Thanks to @​KazariEX!
typescript-plugin
  • fix: replace language service per-method overrides with a proxy (#​6035) - Thanks to @​KazariEX!
vscode

v3.2.7

Compare Source

component-meta
  • fix: preserve non-ASCII characters in prop default values (#​6012) - Thanks to @​ef81sp!
workspace

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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.

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented Apr 17, 2026

Open in StackBlitz

npm i https://pkg.pr.new/nuxt-booster@1394

commit: b380b9d

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from db3a935 to 5c27e88 Compare April 19, 2026 13:56
@renovate renovate Bot changed the title chore(deps): update devdependency eslint to v10.2.1 chore(deps): update all non-major dependencies Apr 19, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from ffa7032 to bbf8b4f Compare April 27, 2026 19:50
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 065193d to 86e1454 Compare May 4, 2026 18:53
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 33962f2 to 3ff2b3e Compare May 11, 2026 18:31
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 3ff2b3e to b380b9d Compare May 11, 2026 21:37
@sonarqubecloud
Copy link
Copy Markdown

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.

0 participants