MentorMate / create-vue

šŸ› ļø Extended way to start a Vite-powered Vue project
Other
1 stars 0 forks source link

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

Closed renovate[bot] closed 4 months ago

renovate[bot] commented 4 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.43.1 -> ^1.44.0 age adoption passing confidence
@tanstack/vue-query (source) ^5.32.0 -> ^5.35.1 age adoption passing confidence
@types/node (source) ^20.12.7 -> ^20.12.10 age adoption passing confidence
@vue/test-utils ^2.4.5 -> ^2.4.6 age adoption passing confidence
eslint-plugin-cypress ^3.0.2 -> ^3.2.0 age adoption passing confidence
sonarqube-scanner ^3.4.0 -> ^3.5.0 age adoption passing confidence
vite (source) ^5.2.10 -> ^5.2.11 age adoption passing confidence
vitest (source) ^1.5.2 -> ^1.6.0 age adoption passing confidence
vue (source) ^3.4.25 -> ^3.4.27 age adoption passing confidence
vue-tsc (source) ^2.0.14 -> ^2.0.16 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test) ### [`v1.44.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.44.0) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.43.1...v1.44.0) #### New APIs **Accessibility assertions** - [expect(locator).toHaveAccessibleName()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-name) checks if the element has the specified accessible name: ```js const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleName('Submit'); ``` - [expect(locator).toHaveAccessibleDescription()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-description) checks if the element has the specified accessible description: ```js const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleDescription('Upload a photo'); ``` - [expect(locator).toHaveRole()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-role) checks if the element has the specified ARIA role: ```js const locator = page.getByTestId('save-button'); await expect(locator).toHaveRole('button'); ``` **Locator handler** - After executing the handler added with [page.addLocatorHandler()](https://playwright.dev/docs/api/class-page#page-add-locator-handler), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new `noWaitAfter` option. - You can use new `times` option in [page.addLocatorHandler()](https://playwright.dev/docs/api/class-page#page-add-locator-handler) to specify maximum number of times the handler should be run. - The handler in [page.addLocatorHandler()](https://playwright.dev/docs/api/class-page#page-add-locator-handler) now accepts the locator as argument. - New [page.removeLocatorHandler()](https://playwright.dev/docs/api/class-page#page-remove-locator-handler) method for removing previously added locator handlers. ```js const locator = page.getByText('This interstitial covers the button'); await page.addLocatorHandler(locator, async overlay => { await overlay.locator('#close').click(); }, { times: 3, noWaitAfter: true }); // Run your tests that can be interrupted by the overlay. // ... await page.removeLocatorHandler(locator); ``` **Miscellaneous options** - [`multipart`](https://playwright.dev/docs/api/class-apirequestcontext#api-request-context-fetch-option-multipart) option in `apiRequestContext.fetch()` now accepts [`FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData) and supports repeating fields with the same name. ```js const formData = new FormData(); formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' })); formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' })); context.request.post('https://example.com/uploadFiles', { multipart: formData }); ``` - `expect(callback).toPass({ intervals })` can now be configured by `expect.toPass.inervals` option globally in [testConfig.expect](https://playwright.dev/docs/api/class-testconfig#test-config-expect) or per project in [testProject.expect](https://playwright.dev/docs/api/class-testproject#test-project-expect). - `expect(page).toHaveURL(url)` now supports `ignoreCase` [option](https://playwright.dev/docs/api/class-pageassertions#page-assertions-to-have-url-option-ignore-case). - [testProject.ignoreSnapshots](https://playwright.dev/docs/api/class-testproject#test-project-ignore-snapshots) allows to configure per project whether to skip screenshot expectations. **Reporter API** - New method [suite.entries()](https://playwright.dev/docs/api/class-suite#suite-entries) returns child test suites and test cases in their declaration order. [suite.type](https://playwright.dev/docs/api/class-suite#suite-type) and [testCase.type](https://playwright.dev/docs/api/class-testcase#test-case-type) can be used to tell apart test cases and suites in the list. - [Blob](https://playwright.dev/docs/test-reporters#blob-reporter) reporter now allows overriding report file path with a single option `outputFile`. The same option can also be specified as `PLAYWRIGHT_BLOB_OUTPUT_FILE` environment variable that might be more convenient on CI/CD. - [JUnit](https://playwright.dev/docs/test-reporters#junit-reporter) reporter now supports `includeProjectInTestName` option. **Command line** - `--last-failed` CLI option for running only tests that failed in the previous run. First run all tests: ```sh $ npx playwright test Running 103 tests using 5 workers ... 2 failed [chromium] ā€ŗ my-test.spec.ts:8:5 ā€ŗ two ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ [chromium] ā€ŗ my-test.spec.ts:13:5 ā€ŗ three ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ 101 passed (30.0s) ``` Now fix the failing tests and run Playwright again with `--last-failed` option: ```sh $ npx playwright test --last-failed Running 2 tests using 2 workers 2 passed (1.2s) ``` #### Browser Versions - Chromium 125.0.6422.14 - Mozilla Firefox 125.0.1 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 124 - Microsoft Edge 124
TanStack/query (@​tanstack/vue-query) ### [`v5.35.1`](https://togithub.com/TanStack/query/releases/tag/v5.35.1) [Compare Source](https://togithub.com/TanStack/query/compare/v5.34.2...v5.35.1) Version 5.35.1 - 5/6/2024, 6:38 AM #### Changes ##### Fix - types: add `number`, `symbol` as safe key for `OmitKeyof` for strictness `safely` ([#​7164](https://togithub.com/TanStack/query/issues/7164)) ([`753fbac`](https://togithub.com/TanStack/query/commit/753fbacc)) by [@​manudeli](https://togithub.com/manudeli) ##### Docs - update custom-client.md ([#​7383](https://togithub.com/TanStack/query/issues/7383)) ([`2c0dc08`](https://togithub.com/TanStack/query/commit/2c0dc088)) by [@​eltociear](https://togithub.com/eltociear) #### Packages - [@​tanstack/query-core](https://togithub.com/tanstack/query-core)[@​5](https://togithub.com/5).35.1 - [@​tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@​5](https://togithub.com/5).35.1 - [@​tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@​5](https://togithub.com/5).35.1 - [@​tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@​5](https://togithub.com/5).35.1 - [@​tanstack/react-query](https://togithub.com/tanstack/react-query)[@​5](https://togithub.com/5).35.1 - [@​tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@​5](https://togithub.com/5).35.1 - [@​tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@​5](https://togithub.com/5).35.1 - [@​tanstack/react-query-next-experimental](https://togithub.com/tanstack/react-query-next-experimental)[@​5](https://togithub.com/5).35.1 - [@​tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@​5](https://togithub.com/5).35.1 - [@​tanstack/solid-query-devtools](https://togithub.com/tanstack/solid-query-devtools)[@​5](https://togithub.com/5).35.1 - [@​tanstack/solid-query-persist-client](https://togithub.com/tanstack/solid-query-persist-client)[@​5](https://togithub.com/5).35.1 - [@​tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@​5](https://togithub.com/5).35.1 - [@​tanstack/svelte-query-devtools](https://togithub.com/tanstack/svelte-query-devtools)[@​5](https://togithub.com/5).35.1 - [@​tanstack/svelte-query-persist-client](https://togithub.com/tanstack/svelte-query-persist-client)[@​5](https://togithub.com/5).35.1 - [@​tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@​5](https://togithub.com/5).35.1 - [@​tanstack/vue-query-devtools](https://togithub.com/tanstack/vue-query-devtools)[@​5](https://togithub.com/5).35.1 - [@​tanstack/angular-query-experimental](https://togithub.com/tanstack/angular-query-experimental)[@​5](https://togithub.com/5).35.1 - [@​tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@​5](https://togithub.com/5).35.1 - [@​tanstack/angular-query-devtools-experimental](https://togithub.com/tanstack/angular-query-devtools-experimental)[@​5](https://togithub.com/5).35.1 ### [`v5.34.2`](https://togithub.com/TanStack/query/releases/tag/v5.34.2) [Compare Source](https://togithub.com/TanStack/query/compare/v5.34.1...v5.34.2) Version 5.34.2 - 5/5/2024, 9:43 AM #### Changes ##### Fix - query-core: replaceEqualDeep correctly handles arrays that contain undefined ([#​7376](https://togithub.com/TanStack/query/issues/7376)) ([`fdb0944`](https://togithub.com/TanStack/query/commit/fdb09442)) by Manuel Schiller ##### Docs - angular-query: add jsdoc ([#​7379](https://togithub.com/TanStack/query/issues/7379)) ([`32d1e82`](https://togithub.com/TanStack/query/commit/32d1e822)) by Arnoud - angular-query: update disabling-queries.md ([#​7332](https://togithub.com/TanStack/query/issues/7332)) ([`d032247`](https://togithub.com/TanStack/query/commit/d0322477)) by Shahar Har-Shuv - angular-query: update quick start and readme ([#​7378](https://togithub.com/TanStack/query/issues/7378)) ([`10bdb08`](https://togithub.com/TanStack/query/commit/10bdb08f)) by Arnoud #### Packages - [@​tanstack/query-core](https://togithub.com/tanstack/query-core)[@​5](https://togithub.com/5).34.2 - [@​tanstack/angular-query-devtools-experimental](https://togithub.com/tanstack/angular-query-devtools-experimental)[@​5](https://togithub.com/5).34.2 - [@​tanstack/angular-query-experimental](https://togithub.com/tanstack/angular-query-experimental)[@​5](https://togithub.com/5).34.2 - [@​tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@​5](https://togithub.com/5).34.2 - [@​tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@​5](https://togithub.com/5).34.2 - [@​tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@​5](https://togithub.com/5).34.2 - [@​tanstack/react-query](https://togithub.com/tanstack/react-query)[@​5](https://togithub.com/5).34.2 - [@​tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@​5](https://togithub.com/5).34.2 - [@​tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@​5](https://togithub.com/5).34.2 - [@​tanstack/react-query-next-experimental](https://togithub.com/tanstack/react-query-next-experimental)[@​5](https://togithub.com/5).34.2 - [@​tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@​5](https://togithub.com/5).34.2 - [@​tanstack/solid-query-devtools](https://togithub.com/tanstack/solid-query-devtools)[@​5](https://togithub.com/5).34.2 - [@​tanstack/solid-query-persist-client](https://togithub.com/tanstack/solid-query-persist-client)[@​5](https://togithub.com/5).34.2 - [@​tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@​5](https://togithub.com/5).34.2 - [@​tanstack/svelte-query-devtools](https://togithub.com/tanstack/svelte-query-devtools)[@​5](https://togithub.com/5).34.2 - [@​tanstack/svelte-query-persist-client](https://togithub.com/tanstack/svelte-query-persist-client)[@​5](https://togithub.com/5).34.2 - [@​tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@​5](https://togithub.com/5).34.2 - [@​tanstack/vue-query-devtools](https://togithub.com/tanstack/vue-query-devtools)[@​5](https://togithub.com/5).34.2 - [@​tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@​5](https://togithub.com/5).34.2 ### [`v5.34.1`](https://togithub.com/TanStack/query/releases/tag/v5.34.1) [Compare Source](https://togithub.com/TanStack/query/compare/v5.32.1...v5.34.1) Version 5.34.1 - 5/4/2024, 8:30 AM #### Changes ##### Fix - core: replaceDeepEqual for objects created by Object.create ([#​7357](https://togithub.com/TanStack/query/issues/7357)) ([`f70d404`](https://togithub.com/TanStack/query/commit/f70d404e)) by [@​sukovanej](https://togithub.com/sukovanej) ##### Docs - Solid Query - Add overview, ts, install sections ([#​7368](https://togithub.com/TanStack/query/issues/7368)) ([`ed12e18`](https://togithub.com/TanStack/query/commit/ed12e183)) by [@​ardeora](https://togithub.com/ardeora) #### Packages - [@​tanstack/query-core](https://togithub.com/tanstack/query-core)[@​5](https://togithub.com/5).34.1 - [@​tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@​5](https://togithub.com/5).34.1 - [@​tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@​5](https://togithub.com/5).34.1 - [@​tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@​5](https://togithub.com/5).34.1 - [@​tanstack/react-query](https://togithub.com/tanstack/react-query)[@​5](https://togithub.com/5).34.1 - [@​tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@​5](https://togithub.com/5).34.1 - [@​tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@​5](https://togithub.com/5).34.1 - [@​tanstack/react-query-next-experimental](https://togithub.com/tanstack/react-query-next-experimental)[@​5](https://togithub.com/5).34.1 - [@​tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@​5](https://togithub.com/5).34.1 - [@​tanstack/solid-query-devtools](https://togithub.com/tanstack/solid-query-devtools)[@​5](https://togithub.com/5).34.1 - [@​tanstack/solid-query-persist-client](https://togithub.com/tanstack/solid-query-persist-client)[@​5](https://togithub.com/5).34.1 - [@​tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@​5](https://togithub.com/5).34.1 - [@​tanstack/svelte-query-devtools](https://togithub.com/tanstack/svelte-query-devtools)[@​5](https://togithub.com/5).34.1 - [@​tanstack/svelte-query-persist-client](https://togithub.com/tanstack/svelte-query-persist-client)[@​5](https://togithub.com/5).34.1 - [@​tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@​5](https://togithub.com/5).34.1 - [@​tanstack/vue-query-devtools](https://togithub.com/tanstack/vue-query-devtools)[@​5](https://togithub.com/5).34.1 - [@​tanstack/angular-query-experimental](https://togithub.com/tanstack/angular-query-experimental)[@​5](https://togithub.com/5).34.1 - [@​tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@​5](https://togithub.com/5).34.1 - [@​tanstack/angular-query-devtools-experimental](https://togithub.com/tanstack/angular-query-devtools-experimental)[@​5](https://togithub.com/5).34.1 ### [`v5.32.1`](https://togithub.com/TanStack/query/releases/tag/v5.32.1) [Compare Source](https://togithub.com/TanStack/query/compare/v5.32.0...v5.32.1) Version 5.32.1 - 4/30/2024, 1:38 PM #### Changes ##### Fix - trigger release ([`684ffbf`](https://togithub.com/TanStack/query/commit/684ffbfe)) by Dominik Dorfmeister - codemods: Use .cjs extension for CommonJS files ([#​7333](https://togithub.com/TanStack/query/issues/7333)) ([`2aca521`](https://togithub.com/TanStack/query/commit/2aca521a)) by Anton Jeppsson ##### Docs - createSyncStoragePersister: fix typo ([#​7348](https://togithub.com/TanStack/query/issues/7348)) ([`6768a9c`](https://togithub.com/TanStack/query/commit/6768a9c7)) by Mackie Underdown #### Packages - [@​tanstack/eslint-plugin-query](https://togithub.com/tanstack/eslint-plugin-query)[@​5](https://togithub.com/5).32.1 - [@​tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@​5](https://togithub.com/5).32.1 - [@​tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@​5](https://togithub.com/5).32.1 - [@​tanstack/query-core](https://togithub.com/tanstack/query-core)[@​5](https://togithub.com/5).32.1 - [@​tanstack/query-devtools](https://togithub.com/tanstack/query-devtools)[@​5](https://togithub.com/5).32.1 - [@​tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@​5](https://togithub.com/5).32.1 - [@​tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@​5](https://togithub.com/5).32.1 - [@​tanstack/react-query](https://togithub.com/tanstack/react-query)[@​5](https://togithub.com/5).32.1 - [@​tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@​5](https://togithub.com/5).32.1 - [@​tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@​5](https://togithub.com/5).32.1 - [@​tanstack/react-query-next-experimental](https://togithub.com/tanstack/react-query-next-experimental)[@​5](https://togithub.com/5).32.1 - [@​tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@​5](https://togithub.com/5).32.1 - [@​tanstack/solid-query-devtools](https://togithub.com/tanstack/solid-query-devtools)[@​5](https://togithub.com/5).32.1 - [@​tanstack/solid-query-persist-client](https://togithub.com/tanstack/solid-query-persist-client)[@​5](https://togithub.com/5).32.1 - [@​tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@​5](https://togithub.com/5).32.1 - [@​tanstack/svelte-query-devtools](https://togithub.com/tanstack/svelte-query-devtools)[@​5](https://togithub.com/5).32.1 - [@​tanstack/svelte-query-persist-client](https://togithub.com/tanstack/svelte-query-persist-client)[@​5](https://togithub.com/5).32.1 - [@​tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@​5](https://togithub.com/5).32.1 - [@​tanstack/vue-query-devtools](https://togithub.com/tanstack/vue-query-devtools)[@​5](https://togithub.com/5).32.1 - [@​tanstack/angular-query-devtools-experimental](https://togithub.com/tanstack/angular-query-devtools-experimental)[@​5](https://togithub.com/5).32.1 - [@​tanstack/angular-query-experimental](https://togithub.com/tanstack/angular-query-experimental)[@​5](https://togithub.com/5).32.1
vuejs/test-utils (@​vue/test-utils) ### [`v2.4.6`](https://togithub.com/vuejs/test-utils/releases/tag/v2.4.6) [Compare Source](https://togithub.com/vuejs/test-utils/compare/v2.4.5...v2.4.6) #### What's Changed - Fix/circular references in props cause maximum call stack size exceeded by [@​Evobaso-J](https://togithub.com/Evobaso-J) in [https://github.com/vuejs/test-utils/pull/2371](https://togithub.com/vuejs/test-utils/pull/2371) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2374](https://togithub.com/vuejs/test-utils/pull/2374) - docs: setup the translation helper by [@​Jinjiang](https://togithub.com/Jinjiang) in [https://github.com/vuejs/test-utils/pull/2373](https://togithub.com/vuejs/test-utils/pull/2373) - chore: translate translation sync message in french by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/2377](https://togithub.com/vuejs/test-utils/pull/2377) - docs: synchronize the french docs by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/2378](https://togithub.com/vuejs/test-utils/pull/2378) - chore(deps): update dependency vite to v5.2.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2376](https://togithub.com/vuejs/test-utils/pull/2376) - chore(deps): pin dependency vitepress-translation-helper to 0.1.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2379](https://togithub.com/vuejs/test-utils/pull/2379) - chore(deps): update dependency typescript to v5.4.3 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2380](https://togithub.com/vuejs/test-utils/pull/2380) - chore(deps): update dependency vitepress-translation-helper to v0.2.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2381](https://togithub.com/vuejs/test-utils/pull/2381) - chore: update vitepress-translation-helper by [@​Jinjiang](https://togithub.com/Jinjiang) in [https://github.com/vuejs/test-utils/pull/2382](https://togithub.com/vuejs/test-utils/pull/2382) - chore(deps): update dependency vitepress to v1.0.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2383](https://togithub.com/vuejs/test-utils/pull/2383) - chore(deps): update dependency vitepress-translation-helper to v0.2.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2384](https://togithub.com/vuejs/test-utils/pull/2384) - fix: update attachTo type in MountingOptions interface by [@​taku-y-9308](https://togithub.com/taku-y-9308) in [https://github.com/vuejs/test-utils/pull/2375](https://togithub.com/vuejs/test-utils/pull/2375) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2388](https://togithub.com/vuejs/test-utils/pull/2388) - docs(api): fix typo in attachTo anchor tag within isVisible by [@​matusekma](https://togithub.com/matusekma) in [https://github.com/vuejs/test-utils/pull/2351](https://togithub.com/vuejs/test-utils/pull/2351) - change vm to always provide global property by [@​taku-y-9308](https://togithub.com/taku-y-9308) in [https://github.com/vuejs/test-utils/pull/2386](https://togithub.com/vuejs/test-utils/pull/2386) - chore(deps): update dependency rollup to v4.13.1 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2389](https://togithub.com/vuejs/test-utils/pull/2389) - chore(deps): update dependency reflect-metadata to v0.2.2 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2391](https://togithub.com/vuejs/test-utils/pull/2391) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2393](https://togithub.com/vuejs/test-utils/pull/2393) - chore(deps): update dependency vite to v5.2.8 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2396](https://togithub.com/vuejs/test-utils/pull/2396) - docs: fix missing equal sign by [@​w2xi](https://togithub.com/w2xi) in [https://github.com/vuejs/test-utils/pull/2398](https://togithub.com/vuejs/test-utils/pull/2398) - fix: renderStubDefaultSlot with scoped slots by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/2397](https://togithub.com/vuejs/test-utils/pull/2397) - docs(api): fix missing chars by [@​w2xi](https://togithub.com/w2xi) in [https://github.com/vuejs/test-utils/pull/2399](https://togithub.com/vuejs/test-utils/pull/2399) - docs: use innerHTML in teleport cleanup by [@​brc-dd](https://togithub.com/brc-dd) in [https://github.com/vuejs/test-utils/pull/2403](https://togithub.com/vuejs/test-utils/pull/2403) - feat: Added dynamic return for element getter by [@​nandi95](https://togithub.com/nandi95) in [https://github.com/vuejs/test-utils/pull/2406](https://togithub.com/vuejs/test-utils/pull/2406) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2407](https://togithub.com/vuejs/test-utils/pull/2407) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2408](https://togithub.com/vuejs/test-utils/pull/2408) - doc(api): fix missing char by [@​w2xi](https://togithub.com/w2xi) in [https://github.com/vuejs/test-utils/pull/2410](https://togithub.com/vuejs/test-utils/pull/2410) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2412](https://togithub.com/vuejs/test-utils/pull/2412) - chore: use node v18 on netlify by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/2416](https://togithub.com/vuejs/test-utils/pull/2416) - fix(stubs): avoid warning on normalized props with Vue v3.4.22 by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/2413](https://togithub.com/vuejs/test-utils/pull/2413) - chore: use the packageManager field from package.json in github action by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/2417](https://togithub.com/vuejs/test-utils/pull/2417) - chore(deps): update pnpm to v9 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2415](https://togithub.com/vuejs/test-utils/pull/2415) - chore(deps): update all non-major dependencies to v3.4.23 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2418](https://togithub.com/vuejs/test-utils/pull/2418) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2419](https://togithub.com/vuejs/test-utils/pull/2419) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2420](https://togithub.com/vuejs/test-utils/pull/2420) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2421](https://togithub.com/vuejs/test-utils/pull/2421) - Update index.md to fix typo and clarify `get` vs `find` behavior by [@​KatWorkGit](https://togithub.com/KatWorkGit) in [https://github.com/vuejs/test-utils/pull/2422](https://togithub.com/vuejs/test-utils/pull/2422) - fix: set global provides before running vue plugins by [@​danielroe](https://togithub.com/danielroe) in [https://github.com/vuejs/test-utils/pull/2423](https://togithub.com/vuejs/test-utils/pull/2423) - ci: add build on node v22 by [@​cexbrayat](https://togithub.com/cexbrayat) in [https://github.com/vuejs/test-utils/pull/2424](https://togithub.com/vuejs/test-utils/pull/2424) - chore(deps): update all non-major dependencies by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2426](https://togithub.com/vuejs/test-utils/pull/2426) - chore(deps): update dependency unplugin-vue-components to v0.27.0 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2427](https://togithub.com/vuejs/test-utils/pull/2427) - chore(deps): update dependency [@​types/node](https://togithub.com/types/node) to v20.12.8 by [@​renovate](https://togithub.com/renovate) in [https://github.com/vuejs/test-utils/pull/2429](https://togithub.com/vuejs/test-utils/pull/2429) - Fix/issue 2319 throw first error thrown during mount by [@​taku-y-9308](https://togithub.com/taku-y-9308) in [https://github.com/vuejs/test-utils/pull/2428](https://togithub.com/vuejs/test-utils/pull/2428) #### New Contributors - [@​Jinjiang](https://togithub.com/Jinjiang) made their first contribution in [https://github.com/vuejs/test-utils/pull/2373](https://togithub.com/vuejs/test-utils/pull/2373) - [@​taku-y-9308](https://togithub.com/taku-y-9308) made their first contribution in [https://github.com/vuejs/test-utils/pull/2375](https://togithub.com/vuejs/test-utils/pull/2375) - [@​matusekma](https://togithub.com/matusekma) made their first contribution in [https://github.com/vuejs/test-utils/pull/2351](https://togithub.com/vuejs/test-utils/pull/2351) - [@​w2xi](https://togithub.com/w2xi) made their first contribution in [https://github.com/vuejs/test-utils/pull/2398](https://togithub.com/vuejs/test-utils/pull/2398) - [@​brc-dd](https://togithub.com/brc-dd) made their first contribution in [https://github.com/vuejs/test-utils/pull/2403](https://togithub.com/vuejs/test-utils/pull/2403) - [@​KatWorkGit](https://togithub.com/KatWorkGit) made their first contribution in [https://github.com/vuejs/test-utils/pull/2422](https://togithub.com/vuejs/test-utils/pull/2422) **Full Changelog**: https://github.com/vuejs/test-utils/compare/v2.4.5...v2.4.6
cypress-io/eslint-plugin-cypress (eslint-plugin-cypress) ### [`v3.2.0`](https://togithub.com/cypress-io/eslint-plugin-cypress/releases/tag/v3.2.0) [Compare Source](https://togithub.com/cypress-io/eslint-plugin-cypress/compare/v3.1.1...v3.2.0) ##### Features - support eslint v9 through [@​eslint/eslintrc](https://togithub.com/eslint/eslintrc) ([25e092e](https://togithub.com/cypress-io/eslint-plugin-cypress/commit/25e092e3cf46b4cf6103b7fb081e0f20d70053a4)) ### [`v3.1.1`](https://togithub.com/cypress-io/eslint-plugin-cypress/releases/tag/v3.1.1) [Compare Source](https://togithub.com/cypress-io/eslint-plugin-cypress/compare/v3.1.0...v3.1.1) ##### Bug Fixes - issue with unsafe to chain command that is not an action ([93824e4](https://togithub.com/cypress-io/eslint-plugin-cypress/commit/93824e49b34db920a4ea83abbdcc60341550c175)) ### [`v3.1.0`](https://togithub.com/cypress-io/eslint-plugin-cypress/releases/tag/v3.1.0) [Compare Source](https://togithub.com/cypress-io/eslint-plugin-cypress/compare/v3.0.3...v3.1.0) ##### Features - apply no-pause rule recursively ([f725f55](https://togithub.com/cypress-io/eslint-plugin-cypress/commit/f725f55d3cc583231ce4cb3b3d85149db2532259)) ### [`v3.0.3`](https://togithub.com/cypress-io/eslint-plugin-cypress/releases/tag/v3.0.3) [Compare Source](https://togithub.com/cypress-io/eslint-plugin-cypress/compare/v3.0.2...v3.0.3) ##### Bug Fixes - **deps:** update semantic-release to 23.0.8 ([b3c2425](https://togithub.com/cypress-io/eslint-plugin-cypress/commit/b3c2425d3da51c69f2c59f2ddce1ba1d356f2204))
SonarSource/sonar-scanner-npm (sonarqube-scanner) ### [`v3.5.0`](https://togithub.com/SonarSource/sonar-scanner-npm/releases/tag/3.5.0) [Compare Source](https://togithub.com/SonarSource/sonar-scanner-npm/compare/3.4.0...3.5.0) #### What's Changed - Update dependencies by [@​saberduck](https://togithub.com/saberduck) in [https://github.com/SonarSource/sonar-scanner-npm/pull/103](https://togithub.com/SonarSource/sonar-scanner-npm/pull/103) - Update dependencies in tools/orchestrator by [@​saberduck](https://togithub.com/saberduck) in [https://github.com/SonarSource/sonar-scanner-npm/pull/105](https://togithub.com/SonarSource/sonar-scanner-npm/pull/105) - Enable `shell` on Windows by [@​vdiez](https://togithub.com/vdiez) in [https://github.com/SonarSource/sonar-scanner-npm/pull/131](https://togithub.com/SonarSource/sonar-scanner-npm/pull/131) **Full Changelog**: https://github.com/SonarSource/sonar-scanner-npm/compare/3.4.0...3.5.0
vitejs/vite (vite) ### [`v5.2.11`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small5211-2024-05-02-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v5.2.10...v5.2.11) - feat: improve dynamic import variable failure error message ([#​16519](https://togithub.com/vitejs/vite/issues/16519)) ([f8feeea](https://togithub.com/vitejs/vite/commit/f8feeea)), closes [#​16519](https://togithub.com/vitejs/vite/issues/16519) - fix: dynamic-import-vars plugin normalize path issue ([#​16518](https://togithub.com/vitejs/vite/issues/16518)) ([f71ba5b](https://togithub.com/vitejs/vite/commit/f71ba5b)), closes [#​16518](https://togithub.com/vitejs/vite/issues/16518) - fix: scripts and styles were missing from built HTML on Windows ([#​16421](https://togithub.com/vitejs/vite/issues/16421)) ([0e93f58](https://togithub.com/vitejs/vite/commit/0e93f58)), closes [#​16421](https://togithub.com/vitejs/vite/issues/16421) - fix(deps): update all non-major dependencies ([#​16488](https://togithub.com/vitejs/vite/issues/16488)) ([2d50be2](https://togithub.com/vitejs/vite/commit/2d50be2)), closes [#​16488](https://togithub.com/vitejs/vite/issues/16488) - fix(deps): update all non-major dependencies ([#​16549](https://togithub.com/vitejs/vite/issues/16549)) ([2d6a13b](https://togithub.com/vitejs/vite/commit/2d6a13b)), closes [#​16549](https://togithub.com/vitejs/vite/issues/16549) - fix(dev): watch publicDir explicitly to include it outside the root ([#​16502](https://togithub.com/vitejs/vite/issues/16502)) ([4d83eb5](https://togithub.com/vitejs/vite/commit/4d83eb5)), closes [#​16502](https://togithub.com/vitejs/vite/issues/16502) - fix(preload): skip preload for non-static urls ([#​16556](https://togithub.com/vitejs/vite/issues/16556)) ([bb79c9b](https://togithub.com/vitejs/vite/commit/bb79c9b)), closes [#​16556](https://togithub.com/vitejs/vite/issues/16556) - fix(ssr): handle class declaration and expression name scoping ([#​16569](https://togithub.com/vitejs/vite/issues/16569)) ([c071eb3](https://togithub.com/vitejs/vite/commit/c071eb3)), closes [#​16569](https://togithub.com/vitejs/vite/issues/16569) - fix(ssr): handle function expression name scoping ([#​16563](https://togithub.com/vitejs/vite/issues/16563)) ([02db947](https://togithub.com/vitejs/vite/commit/02db947)), closes [#​16563](https://togithub.com/vitejs/vite/issues/16563)
vitest-dev/vitest (vitest) ### [`v1.6.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.6.0) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.5.3...v1.6.0) ##### Ā Ā Ā šŸš€ Features - Support standalone mode Ā -Ā  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5565](https://togithub.com/vitest-dev/vitest/issues/5565) [(bdce0)](https://togithub.com/vitest-dev/vitest/commit/bdce0a29) - Custom "snapshotEnvironment" option Ā -Ā  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5449](https://togithub.com/vitest-dev/vitest/issues/5449) [(30f72)](https://togithub.com/vitest-dev/vitest/commit/30f728bc) - **benchmark**: Support comparing benchmark result Ā -Ā  by [@​hi-ogawa](https://togithub.com/hi-ogawa) and [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5398](https://togithub.com/vitest-dev/vitest/issues/5398) [(f8d3d)](https://togithub.com/vitest-dev/vitest/commit/f8d3d22e) - **browser**: Allow injecting scripts Ā -Ā  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5656](https://togithub.com/vitest-dev/vitest/issues/5656) [(21e58)](https://togithub.com/vitest-dev/vitest/commit/21e58bd8) - **reporter**: Support `includeConsoleOutput` and `addFileAttribute` in junit Ā -Ā  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5659](https://togithub.com/vitest-dev/vitest/issues/5659) [(2f913)](https://togithub.com/vitest-dev/vitest/commit/2f913222) - **ui**: Sort items by file name Ā -Ā  by [@​btea](https://togithub.com/btea) in [https://github.com/vitest-dev/vitest/issues/5652](https://togithub.com/vitest-dev/vitest/issues/5652) [(1f726)](https://togithub.com/vitest-dev/vitest/commit/1f7268fa) ##### Ā Ā Ā šŸž Bug Fixes - Keep order of arguments for .each in custom task collectors Ā -Ā  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5640](https://togithub.com/vitest-dev/vitest/issues/5640) [(7d57c)](https://togithub.com/vitest-dev/vitest/commit/7d57c116) - Call `resolveId('vitest')` after `buildStart` Ā -Ā  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5646](https://togithub.com/vitest-dev/vitest/issues/5646) [(f5faf)](https://togithub.com/vitest-dev/vitest/commit/f5faf423) - Hash the name of the file when caching Ā -Ā  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5654](https://togithub.com/vitest-dev/vitest/issues/5654) [(c9e68)](https://togithub.com/vitest-dev/vitest/commit/c9e68ced) - Don't panic on empty files in node_modules Ā -Ā  by [@​sheremet-va](https://togithub.com/sheremet-va) [(40c29)](https://togithub.com/vitest-dev/vitest/commit/40c299fe) - Use `toJSON` for error serialization Ā -Ā  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5526](https://togithub.com/vitest-dev/vitest/issues/5526) [(19a21)](https://togithub.com/vitest-dev/vitest/commit/19a21e49) - **coverage**: - Exclude `*.test-d.*` by default Ā -Ā  by [@​MindfulPol](https://togithub.com/MindfulPol) in [https://github.com/vitest-dev/vitest/issues/5634](https://togithub.com/vitest-dev/vitest/issues/5634) [(bfe8a)](https://togithub.com/vitest-dev/vitest/commit/bfe8ad9d) - Apply `vite-node`'s wrapper only to executed files Ā -Ā  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/5642](https://togithub.com/vitest-dev/vitest/issues/5642) [(c9883)](https://togithub.com/vitest-dev/vitest/commit/c9883f3e) - **vm**: - Support network imports Ā -Ā  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5610](https://togithub.com/vitest-dev/vitest/issues/5610) [(103a6)](https://togithub.com/vitest-dev/vitest/commit/103a6002) ##### Ā Ā Ā šŸŽ Performance - Improve performance of forks pool Ā -Ā  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5592](https://togithub.com/vitest-dev/vitest/issues/5592) [(d8304)](https://togithub.com/vitest-dev/vitest/commit/d8304bb4) - Unnecessary rpc call when coverage is disabled Ā -Ā  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/5658](https://togithub.com/vitest-dev/vitest/issues/5658) [(c5712)](https://togithub.com/vitest-dev/vitest/commit/c571276a) ##### Ā Ā Ā Ā [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.5.3...v1.6.0) ### [`v1.5.3`](https://togithub.com/vitest-dev/vitest/releases/tag/v1.5.3) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v1.5.2...v1.5.3) ##### Ā Ā Ā šŸž Bug Fixes - Use package.json name for a workspace project if not provided Ā -Ā  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/5608](https://togithub.com/vitest-dev/vitest/issues/5608) [(48fba)](https://togithub.com/vitest-dev/vitest/commit/48fba190) - Backport jest iterable equality within object Ā -Ā  by [@​sukovanej](https://togithub.com/sukovanej) in [https://github.com/vitest-dev/vitest/issues/5621](https://togithub.com/vitest-dev/vitest/issues/5621) [(30e5d)](https://togithub.com/vitest-dev/vitest/commit/30e5dc1b) - **browser**: Support benchmark Ā -Ā  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5622](https://togithub.com/vitest-dev/vitest/issues/5622) [(becab)](https://togithub.com/vitest-dev/vitest/commit/becabb5e) - **reporter**: Use default error formatter for JUnit Ā -Ā  by [@​hi-ogawa](https://togithub.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/5629](https://togithub.com/vitest-dev/vitest/issues/5629) [(20060)](https://togithub.com/vitest-dev/vitest/commit/200609cc) ##### Ā Ā Ā Ā [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v1.5.2...v1.5.3)
vuejs/core (vue) ### [`v3.4.27`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#3427-2024-05-06) [Compare Source](https://togithub.com/vuejs/core/compare/v3.4.26...v3.4.27) ##### Bug Fixes - **compat:** include legacy scoped slots ([#​10868](https://togithub.com/vuejs/core/issues/10868)) ([8366126](https://togithub.com/vuejs/core/commit/83661264a4ced3cb2ff6800904a86dd9e82bbfe2)), closes [#​8869](https://togithub.com/vuejs/core/issues/8869) - **compiler-core:** add support for arrow aysnc function with unbracketed ([#​5789](https://togithub.com/vuejs/core/issues/5789)) ([ca7d421](https://togithub.com/vuejs/core/commit/ca7d421e8775f6813f8943d32ab485e0c542f98b)), closes [#​5788](https://togithub.com/vuejs/core/issues/5788) - **compiler-dom:** restrict createStaticVNode usage with option elements ([#​10846](https://togithub.com/vuejs/core/issues/10846)) ([0e3d617](https://togithub.com/vuejs/core/commit/0e3d6178b02d0386d779720ae2cc4eac1d1ec990)), closes [#​6568](https://togithub.com/vuejs/core/issues/6568) [#​7434](https://togithub.com/vuejs/core/issues/7434) - **compiler-sfc:** handle keyof operator ([#​10874](https://togithub.com/vuejs/core/issues/10874)) ([10d34a5](https://togithub.com/vuejs/core/commit/10d34a5624775f20437ccad074a97270ef74c3fb)), closes [#​10871](https://togithub.com/vuejs/core/issues/10871) - **hydration:** handle edge case of style mismatch without style attribute ([f2c1412](https://togithub.com/vuejs/core/commit/f2c1412e46a8fad3e13403bfa78335c4f704f21c)), closes [#​10786](https://togithub.com/vuejs/core/issues/10786) ### [`v3.4.26`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#3426-2024-04-29) [Compare Source](https://togithub.com/vuejs/core/compare/v3.4.25...v3.4.26) ##### Bug Fixes - **compiler-core:** fix bail constant for globals ([fefce06](https://togithub.com/vuejs/core/commit/fefce06b41e3b75de3d748dc6399628ec5056e78)) - **compiler-core:** remove unnecessary constant bail check ([09b4df8](https://togithub.com/vuejs/core/commit/09b4df809e59ef5f4bc91acfc56dc8f82a8e243a)), closes [#​10807](https://togithub.com/vuejs/core/issues/10807) - **runtime-core:** attrs should be readonly in functional components ([#​10767](https://togithub.com/vuejs/core/issues/10767)) ([e8fd644](https://togithub.com/vuejs/core/commit/e8fd6446d14a6899e5e8ab1ee394d90088e01844)) - **runtime-core:** ensure slot compiler marker writable ([#​10825](https://togithub.com/vuejs/core/issues/10825)) ([9c2de62](https://togithub.com/vuejs/core/commit/9c2de6244cd44bc5fbfd82b5850c710ce725044f)), closes [#​10818](https://togithub.com/vuejs/core/issues/10818) - **runtime-core:** properly handle inherit transition during clone VNode ([#​10809](https://togithub.com/vuejs/core/issues/10809)) ([638a79f](https://togithub.com/vuejs/core/commit/638a79f64a7e184f2a2c65e21d764703f4bda561)), closes [#​3716](https://togithub.com/vuejs/core/issues/3716) [#​10497](https://togithub.com/vuejs/core/issues/10497) [#​4091](https://togithub.com/vuejs/core/issues/4091) - **Transition:** re-fix [#​10620](https://togithub.com/vuejs/core/issues/10620) ([#​10832](https://togithub.com/vuejs/core/issues/10832)) ([accf839](https://togithub.com/vuejs/core/commit/accf8396ae1c9dd49759ba0546483f1d2c70c9bc)), closes [#​10632](https://togithub.com/vuejs/core/issues/10632) [#​10827](https://togithub.com/vuejs/core/issues/10827)
vuejs/language-tools (vue-tsc) ### [`v2.0.16`](https://togithub.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#2016-202451) [Compare Source](https://togithub.com/vuejs/language-tools/compare/v2.0.15...v2.0.16) ##### Bug Fixes - **language-core:** virtual document language ID is not updated when changing SFC style block lang - **language-core:** correct logic for `defineSlots` destructuring ([#​4326](https://togithub.com/vuejs/language-tools/issues/4326)) - Thanks [@​zhiyuanzmj](https://togithub.com/zhiyuanzmj) - **language-core:** ObjectDirective does not work with `defineSlots` ([#​4327](https://togithub.com/vuejs/language-tools/issues/4327)) - **language-service:** emmet not working in postcss style block ([https://github.com/volarjs/volar.js/issues/169](https://togithub.com/volarjs/volar.js/issues/169)) ##### Other Changes - Upgrade to [Volar 2.2](https://togithub.com/volarjs/volar.js/releases/tag/v2.2.0) - **language-core:** export `VueEmbeddedCode` ([#​4265](https://togithub.com/vuejs/language-tools/issues/4265)) - Thanks [@​zhiyuanzmj](https://togithub.com/zhiyuanzmj) - **typescript-plugin:** expose `FileRegistry` to `project.program` ([#​3963](https://togithub.com/vuejs/language-tools/issues/3963)) - Thanks [@​zcf0508](https://togithub.com/zcf0508) - **vscode:** remove outdated formatters section ([#​4243](https://togithub.com/vuejs/language-tools/issues/4243)) - Thanks [@​BBboy01](https://togithub.com/BBboy01) ### [`v2.0.15`](https://togithub.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#2015-2024430) [Compare Source](https://togithub.com/vuejs/language-tools/compare/v2.0.14...v2.0.15) ##### Features - Redesign additional extensions, VitePress, PetiteVue support ([#​4321](https://togithub.com/vuejs/language-tools/issues/4321)) - Fix custom file extensions not working in Hybrid Mode ([#​4251](https://togithub.com/vuejs/language-tools/issues/4251)) - **vscode:** prompt when Hybrid Mode is explicitly enabled but known incompatible extensions are installed - **language-core:** use internal options for directly exposing user props/emits types ([vuejs/core#10801](https://togithub.com/vuejs/core/pull/10801)) - **language-core:** support defineSlots destructuring ([#​4312](https://togithub.com/vuejs/language-tools/issues/4312)) - Thanks [@​zhiyuanzmj](https://togithub.com/zhiyuanzmj) ##### Bug Fixes - **vscode:** when enabled VitePress support, extension not activated when opening markdown files - **language-core:** auto-complete not working in v-bind ##### Performance - **language-service:** emmet completion should not be blocked by TS type evaluation ([#​4298](https://togithub.com/vuejs/language-tools/issues/4298)) - **language-core:** simplify virtual code for intrinsic elements ##### Other Changes - Upgrade Volar from `v2.2.0-alpha.10` to `v2.2.0-alpha.12`: - Avoid extension crash when workspace TSDK does not exist - Fix template variables cannot be renamed at the first character in Hybrid Mode ([#​4297](https://togithub.com/vuejs/language-tools/issues/4297)) - Fix template virtual code mapping is misaligned in Windows in Hybrid Mode ([#​4297](https://togithub.com/vuejs/language-tools/issues/4297)) - Add `svelte.svelte-vscode` (>=108.4.0) to Hybrid Mode compatibility whitelist ([sveltejs/language-tools#2317](https://togithub.com/sveltejs/language-tools/pull/2317)) - **component-meta:** convert source code to TS - **language-core:** export `allCodeFeatures` ([#​4320](https://togithub.com/vuejs/language-tools/issues/4320)) - Thanks [@​zhiyuanzmj](https://togithub.com/zhiyuanzmj)

Configuration

šŸ“… Schedule: Branch creation - "before 4am on Monday" (UTC), 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.