Skip to content

Update dependencies - #41

Merged
stefanseifert merged 1 commit into
developfrom
renovate/dependencies
Jun 1, 2026
Merged

Update dependencies#41
stefanseifert merged 1 commit into
developfrom
renovate/dependencies

Conversation

@renovate

@renovate renovate Bot commented Jun 1, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@intlify/unplugin-vue-i18n (source) 11.0.711.2.3 age confidence devDependencies minor
@playwright/test (source) 1.59.11.60.0 age confidence devDependencies minor
@types/bootstrap (source) 5.2.105.2.11 age confidence devDependencies patch
@types/jsdom (source) 28.0.128.0.3 age confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) 8.58.18.60.0 age confidence devDependencies minor
@typescript-eslint/parser (source) 8.58.18.60.0 age confidence devDependencies minor
@vitejs/plugin-legacy (source) ^7.0.0^8.0.0 age confidence devDependencies major
@vitejs/plugin-vue (source) 6.0.56.0.7 age confidence devDependencies patch
@vitest/coverage-istanbul (source) 4.1.44.1.8 age confidence devDependencies patch
@vitest/eslint-plugin 1.6.151.6.19 age confidence devDependencies patch
eslint (source) 10.2.010.4.1 age confidence devDependencies minor
eslint-plugin-playwright 2.10.12.10.4 age confidence devDependencies patch
eslint-plugin-vue (source) 10.8.010.9.1 age confidence devDependencies minor
jsdom 29.0.229.1.1 age confidence devDependencies minor
mcr.microsoft.com/playwright v1.59.1-noblev1.60.0-noble age confidence container minor
vite (source) ^7.0.0^8.0.0 age confidence devDependencies major
vite-plugin-pwa 1.2.01.3.0 age confidence devDependencies minor
vitest (source) 4.1.44.1.8 age confidence devDependencies patch
vue (source) 3.5.323.5.35 age confidence dependencies patch
vue-i18n (source) 11.3.211.4.4 age confidence dependencies minor
vue-router (source) 5.0.45.1.0 age confidence dependencies minor

Release Notes

intlify/bundle-tools (@​intlify/unplugin-vue-i18n)

v11.2.3

Compare Source

What's Changed

👕 Refactoring

Full Changelog: intlify/bundle-tools@v11.2.2...v11.2.3

v11.2.2

Compare Source

What's Changed

🔒 Security Fixes

Full Changelog: intlify/bundle-tools@v11.2.1...v11.2.2

v11.2.1

Compare Source

What's Changed
🐛 Bug Fixes
  • fix(unplugin-vue-i18n): bypass builtin:vite-json on Vite 8 via virtual ids by @​kazupon in #​565

Full Changelog: intlify/bundle-tools@v11.2.0...v11.2.1

v11.2.0

Compare Source

What's Changed
💥 Breaking Changes
  • chore!: drop Node.js 20 support (require >= 22.13 for pnpm v11) by @​kazupon in #​555
👕 Refactoring

Full Changelog: intlify/bundle-tools@v11.1.2...v11.2.0

v11.1.2

Compare Source

What's Changed

🐛 Bug Fixes
  • fix(unplugin-vue-i18n): preserve vite:json ObjectHook shape for Vite 8 compatibility by @​kazupon in #​554

Full Changelog: intlify/bundle-tools@v11.1.1...v11.1.2

v11.1.1

Compare Source

What's Changed

🐛 Bug Fixes
  • fix(unplugin-vue-i18n): support JS/TS lang in SFC i18n custom blocks by @​kazupon in #​549

Full Changelog: intlify/bundle-tools@v11.1.0...v11.1.1

v11.1.0

Compare Source

What's Changed

🌟 Features

Full Changelog: intlify/bundle-tools@v11.0.7...v11.1.0

microsoft/playwright (@​playwright/test)

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/eslint-plugin)

v8.60.0

Compare Source

This was a version bump only for eslint-plugin 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.4

Compare Source

🩹 Fixes
  • eslint-plugin: [no-floating-promises] stack overflow when using recursive types (#​12294)
❤️ Thank You

See GitHub Releases for more information.

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

v8.59.3

Compare Source

This was a version bump only for eslint-plugin 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

🩹 Fixes
  • eslint-plugin: [no-deprecated] object destructuring values should be treated as declarations (#​12292)
  • eslint-plugin: [no-unsafe-type-assertion] handle crash on recursive template literal types (#​12150)
❤️ Thank You

See GitHub Releases for more information.

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

v8.59.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-condition] treat void as nullish in no-unnecessary-condition (#​12241)
  • eslint-plugin: [no-unnecessary-type-arguments] handle instantiation expressions (#​12220)
  • eslint-plugin: [no-unnecessary-type-assertion] avoid false positive in logical assignment assertions (#​12278)
  • eslint-plugin: [no-unnecessary-type-assertion] preserve phantom type arguments in generic inference (#​12269)
  • eslint-plugin: [no-unnecessary-type-assertion] preserve index signatures in undefined unions (#​12257)
  • eslint-plugin: [no-unnecessary-type-assertion] fix crash "TypeError: checker.getTypeArguments is not a function" (#​12246)
❤️ Thank You

See GitHub Releases for more information.

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

v8.59.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-type-assertion] report more cases based on assignability (#​11789)
❤️ Thank You
  • Ulrich Stark

See GitHub Releases for more information.

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

v8.58.2

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-condition] use assignability checks in checkTypePredicates (#​12147)
  • remove tsbuildinfo cache file from published packages (#​12187)
❤️ Thank You

See GitHub Releases for more information.

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.60.0

Compare Source

This was a version bump only for parser 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.4

Compare Source

This was a version bump only for parser 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.3

Compare Source

This was a version bump only for parser 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 parser 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 parser 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 parser 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.58.2

Compare Source

🩹 Fixes
  • remove tsbuildinfo cache file from published packages (#​12187)
❤️ Thank You

See GitHub Releases for more information.

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

vitejs/vite (@​vitejs/plugin-legacy)

v8.0.2

Compare Source

Bug Fixes
Miscellaneous Chores
Code Refactoring
Build System

v8.0.1

Compare Source

Bug Fixes
Miscellaneous Chores

v8.0.0

Compare Source

⚠ BREAKING CHANGES
  • legacy: bump modern browser threshold to import.meta.resolve support (#​21662)
Features
Bug Fixes
Documentation
Miscellaneous Chores
Code Refactoring
Beta Changelogs
8.0.0-beta.3 (2026-02-12)

See 8.0.0-beta.3 changelog

8.0.0-beta.2 (2026-02-03)

See 8.0.0-beta.2 changelog

8.0.0-beta.1 (2026-01-22)

See 8.0.0-beta.1 changelog

8.0.0-beta.0 (2025-12-03)

See 8.0.0-beta.0 changelog

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v6.0.7

Features
Bug Fixes

v6.0.6

Features
  • plugin-vue: propagate multiRoot for template-only vapor components (#​745) (9e07ae9)
Bug Fixes
Miscellaneous Chores
vitest-dev/vitest (@​vitest/coverage-istanbul)

v4.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

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
vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.6.19

Compare Source

No significant changes

    View changes on GitHub

v1.6.18

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.6.17

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.6.16

Compare Source

   🚀 Features
    View changes on GitHub
eslint/eslint (eslint)

v10.4.1

Compare Source

Bug Fixes

  • e557467 fix: update `@eslint/plugin-k

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 4am on the first day of the month"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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.

@renovate renovate Bot added the dependencies label Jun 1, 2026
@renovate
renovate Bot force-pushed the renovate/dependencies branch from a69ef1a to e3b222c Compare June 1, 2026 16:57
@sonarqubecloud

sonarqubecloud Bot commented Jun 1, 2026

Copy link
Copy Markdown

@stefanseifert
stefanseifert merged commit a088249 into develop Jun 1, 2026
4 checks passed
@stefanseifert
stefanseifert deleted the renovate/dependencies branch June 1, 2026 20:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Development

Successfully merging this pull request may close these issues.

1 participant