Skip to content

Update dependencies#52

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

Update dependencies#52
stefanseifert merged 2 commits 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
@vue/test-utils 2.4.62.4.10 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

<

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 commented Jun 1, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @vue/server-renderer@3.5.32
npm error Found: vue@3.5.35
npm error node_modules/vue
npm error   vue@"^3.5.13" from the root project
npm error   peerOptional vue@"^3.0.0" from @intlify/vue-i18n-extensions@8.0.0
npm error   node_modules/@intlify/vue-i18n-extensions
npm error     @intlify/vue-i18n-extensions@"^8.0.0" from @intlify/unplugin-vue-i18n@11.2.3
npm error     node_modules/@intlify/unplugin-vue-i18n
npm error       dev @intlify/unplugin-vue-i18n@"^11.0.0" from the root project
npm error   7 more (vue-i18n, @vue-macros/common, ...)
npm error
npm error Could not resolve dependency:
npm error peer vue@"3.5.32" from @vue/server-renderer@3.5.32
npm error node_modules/@vue/server-renderer
npm error   peerOptional @vue/server-renderer@"3.x" from @vue/test-utils@2.4.10
npm error   node_modules/@vue/test-utils
npm error     dev @vue/test-utils@"^2.4.6" from the root project
npm error
npm error Conflicting peer dependency: vue@3.5.32
npm error node_modules/vue
npm error   peer vue@"3.5.32" from @vue/server-renderer@3.5.32
npm error   node_modules/@vue/server-renderer
npm error     peerOptional @vue/server-renderer@"3.x" from @vue/test-utils@2.4.10
npm error     node_modules/@vue/test-utils
npm error       dev @vue/test-utils@"^2.4.6" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-06-01T16_55_21_196Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-06-01T16_55_21_196Z-debug-0.log

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates build/test tooling dependencies to newer versions, primarily moving the Vite toolchain to v8 and updating the Playwright E2E container image.

Changes:

  • Bump vite from ^7.0.0 to ^8.0.0.
  • Bump @vitejs/plugin-legacy from ^7.0.0 to ^8.0.0.
  • Update the Playwright Docker image used in the E2E workflow from v1.59.1-noble to v1.60.0-noble.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.

File Description
package.json Updates Vite and @vitejs/plugin-legacy to major v8 releases.
.github/workflows/test-e2e.yml Updates the Playwright container image used for E2E runs.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread package.json
Comment thread .github/workflows/test-e2e.yml
@sonarqubecloud

sonarqubecloud Bot commented Jun 1, 2026

Copy link
Copy Markdown

@stefanseifert stefanseifert merged commit 4ab6bb1 into develop Jun 1, 2026
4 checks passed
@stefanseifert stefanseifert deleted the renovate/dependencies branch June 1, 2026 20:49
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.

2 participants