nuxt / bridge

🌉 Experience Nuxt 3 features on existing Nuxt 2 projects
MIT License
268 stars 28 forks source link

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

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 3 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@unhead/schema (source) ^1.9.4 -> ^1.9.5 age adoption passing confidence
@unhead/ssr (source) ^1.9.4 -> ^1.9.5 age adoption passing confidence
@unhead/vue (source) ^1.9.4 -> ^1.9.5 age adoption passing confidence
eslint-plugin-jsdoc ^48.2.2 -> ^48.2.3 age adoption passing confidence
magic-string ^0.30.8 -> ^0.30.10 age adoption passing confidence
playwright-core (source) ^1.42.1 -> ^1.43.1 age adoption passing confidence
postcss-preset-env (source) ^9.5.4 -> ^9.5.5 age adoption passing confidence
rollup (source) ^4.14.0 -> ^4.14.3 age adoption passing confidence
vite (source) ~5.2.8 -> ~5.2.9 age adoption passing confidence
vite-node (source) ^1.4.0 -> ^1.5.0 age adoption passing confidence
vitest (source) ^1.4.0 -> ^1.5.0 age adoption passing confidence

Release Notes

unjs/unhead (@​unhead/schema) ### [`v1.9.5`](https://togithub.com/unjs/unhead/releases/tag/v1.9.5) [Compare Source](https://togithub.com/unjs/unhead/compare/v1.9.4...v1.9.5) #####    🐞 Bug Fixes - **scripts**: Privacy default attributes  -  by [@​harlan-zw](https://togithub.com/harlan-zw) [(e2ba5)](https://togithub.com/unjs/unhead/commit/e2ba513) - **unhead**: Handle `undefined` style attributes  -  by [@​sameignatovich](https://togithub.com/sameignatovich) in [https://github.com/unjs/unhead/issues/337](https://togithub.com/unjs/unhead/issues/337) [(03d60)](https://togithub.com/unjs/unhead/commit/03d60b3) #####     [View changes on GitHub](https://togithub.com/unjs/unhead/compare/v1.9.4...v1.9.5)
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc) ### [`v48.2.3`](https://togithub.com/gajus/eslint-plugin-jsdoc/releases/tag/v48.2.3) [Compare Source](https://togithub.com/gajus/eslint-plugin-jsdoc/compare/v48.2.2...v48.2.3) ##### Bug Fixes - **`valid-types`:** whitelist pratt parser keywords; fixes [#​1221](https://togithub.com/gajus/eslint-plugin-jsdoc/issues/1221) ([ab5624b](https://togithub.com/gajus/eslint-plugin-jsdoc/commit/ab5624be6278836241955b2b336bf3b0803ab33d))
rich-harris/magic-string (magic-string) ### [`v0.30.10`](https://togithub.com/rich-harris/magic-string/blob/HEAD/CHANGELOG.md#03010-2024-04-17) [Compare Source](https://togithub.com/rich-harris/magic-string/compare/v0.30.9...v0.30.10) ##### Bug Fixes - **types:** improve chainable types ([#​278](https://togithub.com/rich-harris/magic-string/issues/278)) ([072188f](https://togithub.com/rich-harris/magic-string/commit/072188f84398437bd75f41bf3d5df49aeae1b587)) ### [`v0.30.9`](https://togithub.com/rich-harris/magic-string/blob/HEAD/CHANGELOG.md#0309-2024-04-04) [Compare Source](https://togithub.com/rich-harris/magic-string/compare/v0.30.8...v0.30.9) ##### Performance Improvements - avoid create uncessary overrides for `replace` ([a1b857c](https://togithub.com/rich-harris/magic-string/commit/a1b857cc5a77af1ffae73355d9c467dce058e427))
microsoft/playwright (playwright-core) ### [`v1.43.1`](https://togithub.com/microsoft/playwright/releases/tag/v1.43.1) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.43.0...v1.43.1) ##### Highlights [https://github.com/microsoft/playwright/issues/30300](https://togithub.com/microsoft/playwright/issues/30300) - \[REGRESSION]: UI mode restarts if keep storage state[https://github.com/microsoft/playwright/issues/30339](https://togithub.com/microsoft/playwright/issues/30339)9 - \[REGRESSION]: Brand new install of playwright, unable to run chromium with show browser using vscode ##### Browser Versions - Chromium 124.0.6367.29 - Mozilla Firefox 124.0 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 123 - Microsoft Edge 123 ### [`v1.43.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.43.0) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.42.1...v1.43.0) #### New APIs - Method [browserContext.clearCookies()](https://playwright.dev/docs/api/class-browsercontext#browser-context-clear-cookies) now supports filters to remove only some cookies. ```js // Clear all cookies. await context.clearCookies(); // New: clear cookies with a particular name. await context.clearCookies({ name: 'session-id' }); // New: clear cookies for a particular domain. await context.clearCookies({ domain: 'my-origin.com' }); ``` - New mode `retain-on-first-failure` for [testOptions.trace](https://playwright.dev/docs/api/class-testoptions#test-options-trace). In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed. ```js title=playwright.config.ts import { defineConfig } from '@​playwright/test'; export default defineConfig({ use: { trace: 'retain-on-first-failure', }, }); ``` - New property [testInfo.tags](https://playwright.dev/docs/api/class-testinfo#test-info-tags) exposes test tags during test execution. ```js test('example', async ({ page }) => { console.log(test.info().tags); }); ``` - New method [locator.contentFrame()](https://playwright.dev/docs/api/class-locator#locator-content-frame) converts a `Locator` object to a `FrameLocator`. This can be useful when you have a `Locator` object obtained somewhere, and later on would like to interact with the content inside the frame. ```js const locator = page.locator('iframe[name="embedded"]'); // ... const frameLocator = locator.contentFrame(); await frameLocator.getByRole('button').click(); ``` - New method [frameLocator.owner()](https://playwright.dev/docs/api/class-framelocator#frame-locator-owner) converts a `FrameLocator` object to a `Locator`. This can be useful when you have a `FrameLocator` object obtained somewhere, and later on would like to interact with the `iframe` element. ```js const frameLocator = page.frameLocator('iframe[name="embedded"]'); // ... const locator = frameLocator.owner(); await expect(locator).toBeVisible(); ``` #### UI Mode Updates ![Playwright UI Mode](https://togithub.com/microsoft/playwright/assets/9881434/61ca7cfc-eb7a-4305-8b62-b6c9f098f300) - See tags in the test list. - Filter by tags by typing `@fast` or clicking on the tag itself. - New shortcuts: - F5 to run tests. - Shift F5 to stop running tests. - Ctrl \` to toggle test output. #### Browser Versions - Chromium 124.0.6367.29 - Mozilla Firefox 124.0 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 123 - Microsoft Edge 123
csstools/postcss-plugins (postcss-preset-env) ### [`v9.5.5`](https://togithub.com/csstools/postcss-plugins/blob/HEAD/plugin-packs/postcss-preset-env/CHANGELOG.md#955) [Compare Source](https://togithub.com/csstools/postcss-plugins/compare/d46bfb6fcfdaaeb779905a70a4a86a6888987413...a8a682637542454e6ffe7b855e6abd178c70832e) *April 11, 2024* - Updated [`postcss-custom-properties`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties) to [`13.3.7`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties/CHANGELOG.md#1337) (patch)
rollup/rollup (rollup) ### [`v4.14.3`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4143) [Compare Source](https://togithub.com/rollup/rollup/compare/v4.14.2...v4.14.3) *2024-04-15* ##### Bug Fixes - Support Alpine Linux and other MUSL builds on ARM ([#​5471](https://togithub.com/rollup/rollup/issues/5471)) ##### Pull Requests - [#​5471](https://togithub.com/rollup/rollup/pull/5471): Add linux arm musl build ([@​sapphi-red](https://togithub.com/sapphi-red)) ### [`v4.14.2`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4142) [Compare Source](https://togithub.com/rollup/rollup/compare/v4.14.1...v4.14.2) *2024-04-12* ##### Bug Fixes - Do not create invalid code when reexporting both a namespace and the default export from that namespace ([#​5466](https://togithub.com/rollup/rollup/issues/5466)) - Ensure ppc64 platform is properly detected ([#​5460](https://togithub.com/rollup/rollup/issues/5460)) ##### Pull Requests - [#​5456](https://togithub.com/rollup/rollup/pull/5456): Add high-level architecture documentation ([@​lukastaegert](https://togithub.com/lukastaegert)) - [#​5460](https://togithub.com/rollup/rollup/pull/5460): Fix ppc64le target ([@​lukastaegert](https://togithub.com/lukastaegert)) - [#​5463](https://togithub.com/rollup/rollup/pull/5463): chore: tweak the comment about files should not be edited ([@​TrickyPi](https://togithub.com/TrickyPi)) - [#​5466](https://togithub.com/rollup/rollup/pull/5466): Ensure reexported namespaces do not prevent creation of default export helpers ([@​lukastaegert](https://togithub.com/lukastaegert)) - [#​5468](https://togithub.com/rollup/rollup/pull/5468): chore(deps): update dependency eslint-plugin-unicorn to v52 ([@​renovate](https://togithub.com/renovate)\[bot], [@​lukastaegert](https://togithub.com/lukastaegert)) - [#​5469](https://togithub.com/rollup/rollup/pull/5469): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate)\[bot]) - [#​5470](https://togithub.com/rollup/rollup/pull/5470): chore(deps): lock file maintenance ([@​renovate](https://togithub.com/renovate)\[bot]) ### [`v4.14.1`](https://togithub.com/rollup/rollup/blob/HEAD/CHANGELOG.md#4141) [Compare Source](https://togithub.com/rollup/rollup/compare/v4.14.0...v4.14.1) *2024-04-07* ##### Bug Fixes - Show better error when running on musl Linux where the musl build is not supported ([#​5454](https://togithub.com/rollup/rollup/issues/5454)) ##### Pull Requests - [#​5451](https://togithub.com/rollup/rollup/pull/5451): chore: generate string constants from config ([@​TrickyPi](https://togithub.com/TrickyPi)) - [#​5452](https://togithub.com/rollup/rollup/pull/5452): chore(deps): lock file maintenance minor/patch updates ([@​renovate](https://togithub.com/renovate)\[bot]) - [#​5453](https://togithub.com/rollup/rollup/pull/5453): chore(deps): lock file maintenance ([@​renovate](https://togithub.com/renovate)\[bot]) - [#​5454](https://togithub.com/rollup/rollup/pull/5454): Improve error message when running on unsupported MUSL Linux ([@​lukastaegert](https://togithub.com/lukastaegert)) - [#​5455](https://togithub.com/rollup/rollup/pull/5455): Remove inlining logic in AST (de-)serializer ([@​lukastaegert](https://togithub.com/lukastaegert))
vitejs/vite (vite) ### [`v5.2.9`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small529-2024-04-15-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v5.2.8...v5.2.9) - fix: `fsp.rm` removing files does not take effect ([#​16032](https://togithub.com/vitejs/vite/issues/16032)) ([b05c405](https://togithub.com/vitejs/vite/commit/b05c405)), closes [#​16032](https://togithub.com/vitejs/vite/issues/16032) - fix: fix accumulated stacks in error overlay ([#​16393](https://togithub.com/vitejs/vite/issues/16393)) ([102c2fd](https://togithub.com/vitejs/vite/commit/102c2fd)), closes [#​16393](https://togithub.com/vitejs/vite/issues/16393) - fix(deps): update all non-major dependencies ([#​16376](https://togithub.com/vitejs/vite/issues/16376)) ([58a2938](https://togithub.com/vitejs/vite/commit/58a2938)), closes [#​16376](https://togithub.com/vitejs/vite/issues/16376) - chore: update region comment ([#​16380](https://togithub.com/vitejs/vite/issues/16380)) ([77562c3](https://togithub.com/vitejs/vite/commit/77562c3)), closes [#​16380](https://togithub.com/vitejs/vite/issues/16380) - perf: reduce size of injected \__vite\_\_mapDeps code ([#​16184](https://togithub.com/vitejs/vite/issues/16184)) ([c0ec6be](https://togithub.com/vitejs/vite/commit/c0ec6be)), closes [#​16184](https://togithub.com/vitejs/vite/issues/16184) - perf(css): only replace empty chunk if imported ([#​16349](https://togithub.com/vitejs/vite/issues/16349)) ([e2658ad](https://togithub.com/vitejs/vite/commit/e2658ad)), closes [#​16349](https://togithub.com/vitejs/vite/issues/16349)
vitest-dev/vitest (vite-node) ### [`v1.5.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.5.0) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.4.0...v1.5.0) #####    🚀 Features - Add configuration for diff truncation  -  by [@​willieho](https://togithub.com/willieho) in [https://github.com/vitest-dev/vitest/issues/5073](https://togithub.com/vitest-dev/vitest/issues/5073) and [https://github.com/vitest-dev/vitest/issues/5333](https://togithub.com/vitest-dev/vitest/issues/5333) [(6797b)](https://togithub.com/vitest-dev/vitest/commit/6797b041) - Remove unrelated noise from diff for toMatchObject()  -  by [@​geersch](https://togithub.com/geersch) in [https://github.com/vitest-dev/vitest/issues/5364](https://togithub.com/vitest-dev/vitest/issues/5364) [(99276)](https://togithub.com/vitest-dev/vitest/commit/99276399) - Allow custom host for --inspect and --inspect-brk  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5509](https://togithub.com/vitest-dev/vitest/issues/5509) [(61572)](https://togithub.com/vitest-dev/vitest/commit/6157282c) - **coverage**: V8 to ignore empty lines, comments, types  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/5457](https://togithub.com/vitest-dev/vitest/issues/5457) [(10b89)](https://togithub.com/vitest-dev/vitest/commit/10b89713) #####    🐞 Bug Fixes - `describe` calls not taking generic type parameters  -  by [@​aryaemami59](https://togithub.com/aryaemami59) in [https://github.com/vitest-dev/vitest/issues/5415](https://togithub.com/vitest-dev/vitest/issues/5415) [(16bac)](https://togithub.com/vitest-dev/vitest/commit/16bacfab) - Prevent hang when `process` is mocked  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/5430](https://togithub.com/vitest-dev/vitest/issues/5430) [(0ec4d)](https://togithub.com/vitest-dev/vitest/commit/0ec4d0e0) - Don't check for "node:internal/console/" in console interceptor in case the environment is not Node.js  -  by [@​sheremet-va](https://togithub.com/sheremet-va) [(87d36)](https://togithub.com/vitest-dev/vitest/commit/87d36a7a) - The value received by toMatch should be a string  -  by [@​btea](https://togithub.com/btea) in [https://github.com/vitest-dev/vitest/issues/5428](https://togithub.com/vitest-dev/vitest/issues/5428) [(67485)](https://togithub.com/vitest-dev/vitest/commit/674851ca) - Increase stack trace limit for location, don't hardcode suite position  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5518](https://togithub.com/vitest-dev/vitest/issues/5518) [(04b23)](https://togithub.com/vitest-dev/vitest/commit/04b234d1) - **benchmark**: - Run benchmark suites sequentially  -  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5444](https://togithub.com/vitest-dev/vitest/issues/5444) [(1f548)](https://togithub.com/vitest-dev/vitest/commit/1f548340) - Fix benchmark summary of single bench suite  -  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5489](https://togithub.com/vitest-dev/vitest/issues/5489) [(db981)](https://togithub.com/vitest-dev/vitest/commit/db98145f) - Table reporter for non TTY output  -  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5484](https://togithub.com/vitest-dev/vitest/issues/5484) [(bea23)](https://togithub.com/vitest-dev/vitest/commit/bea234b1) - **expect**: - Fix `toHaveBeenNthCalledWith` error message when not called  -  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5420](https://togithub.com/vitest-dev/vitest/issues/5420) [(e5253)](https://togithub.com/vitest-dev/vitest/commit/e5253de4) - **types**: - Pass correct type for suite factory  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5437](https://togithub.com/vitest-dev/vitest/issues/5437) [(26718)](https://togithub.com/vitest-dev/vitest/commit/26718eb5) - **utils**: - Fix object diff with getter only property  -  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5466](https://togithub.com/vitest-dev/vitest/issues/5466) [(366d9)](https://togithub.com/vitest-dev/vitest/commit/366d97c3) - **vite-node**: - Fix `isValidNodeImport` to check `"type": "module"` first  -  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5416](https://togithub.com/vitest-dev/vitest/issues/5416) [(6fb15)](https://togithub.com/vitest-dev/vitest/commit/6fb15280) - **vitest**: - Correctly send console events when state changes  -  by [@​sheremet-va](https://togithub.com/sheremet-va) [(3463f)](https://togithub.com/vitest-dev/vitest/commit/3463f9bb) - Initiate FakeTimers on demand  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5450](https://togithub.com/vitest-dev/vitest/issues/5450) [(e4e93)](https://togithub.com/vitest-dev/vitest/commit/e4e939ba) - Check unhighlighted code for code frame line limit  -  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5465](https://togithub.com/vitest-dev/vitest/issues/5465) [(6ae7e)](https://togithub.com/vitest-dev/vitest/commit/6ae7eaa2) - Correctly filter by parent folder  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5408](https://togithub.com/vitest-dev/vitest/issues/5408) [(91b06)](https://togithub.com/vitest-dev/vitest/commit/91b06cce) - Close inspector immediately if run is canceled  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5519](https://togithub.com/vitest-dev/vitest/issues/5519) [(b8006)](https://togithub.com/vitest-dev/vitest/commit/b80062d7) - **workspace**: - Set CWD to config directory, allow overriding local .env  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5476](https://togithub.com/vitest-dev/vitest/issues/5476) [(d4003)](https://togithub.com/vitest-dev/vitest/commit/d4003882) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.4.0...v1.5.0)
vitest-dev/vitest (vitest) ### [`v1.5.0`](https://togithub.com/vitest-dev/vitest/compare/v1.4.0...v1.5.0) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.4.0...v1.5.0)

Configuration

📅 Schedule: 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.



This PR has been generated by Mend Renovate. View repository job log here.