nuxt-modules / turnstile

πŸ”₯ Cloudflare Turnstile integration for Nuxt
https://cloudflare.com/products/turnstile
MIT License
215 stars 17 forks source link

chore(deps): update nuxt core #285

Closed renovate[bot] closed 7 months ago

renovate[bot] commented 7 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/kit 3.7.4 -> 3.8.0 age adoption passing confidence
@nuxt/schema 3.7.4 -> 3.8.0 age adoption passing confidence
@nuxt/test-utils 3.7.4 -> 3.8.0 age adoption passing confidence
nuxt 3.7.4 -> 3.8.0 age adoption passing confidence
vue (source) 3.3.4 -> 3.3.7 age adoption passing confidence

Release Notes

nuxt/nuxt (@​nuxt/kit) ### [`v3.8.0`](https://togithub.com/nuxt/nuxt/releases/tag/v3.8.0) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.7.4...v3.8.0) #### πŸ‘€ Highlights We have a lot of exciting features in v3.8, and can't wait for you to try it out. ##### πŸ’» Nuxi improvements Just to remind you, we're now using [the new Nuxt CLI](https://togithub.com/nuxt/cli) which is now versioned separately. There are some exciting improvements there to follow, so do check out the latest releases. (For example, we now share the same port with the Vite websocket, meaning better support for docker containers in development.) ##### 🚨 Built-in Nuxt DevTools Nuxt DevTools v1.0.0 is out and we now think it's ready to be shipped as a direct dependency of Nuxt. πŸ‘‰ You can check out [the release notes](https://togithub.com/nuxt/devtools/releases/tag/v1.0.0) for more information - and stay tuned for an article detailing our roadmap for the future. ##### πŸ“Έ Nuxt Image auto-install We've now made `` and `` first-class built-in components, [documenting them](https://togithub.com/nuxt/nuxt/pull/23741) and auto-installing `@nuxt/image` the first time that they are used ([#​23717](https://togithub.com/nuxt/nuxt/pull/23717)). https://github.com/nuxt/nuxt/assets/28706372/597c9307-5741-4d9c-8eab-aad5bfef2ef2 We would definitely advise using `@nuxt/image` if you're using images in your site; it can apply optimisations to make your site more performant. ##### πŸ“‚ Deeper layout scanning 🚨 **This is a behaviour change so do take care with this one:** 🚨 We now support scanning layouts within subfolders in `~/layouts` in the same way as we do with `~/components`. File | Layout name \-- | -- \~/layouts/desktop/default.vue | 'desktop-default' \~/layouts/desktop-base/base.vue | 'desktop-base' \~/layouts/desktop/index.vue | 'desktop' See [#​20190](https://togithub.com/nuxt/nuxt/pull/20190) for more information ##### πŸ“Š App Manifest We now support a built-in app manifest (see [#​21641](https://togithub.com/nuxt/nuxt/pull/21641)), which generates a manifest at `/_nuxt/builds/meta/.json`. Initially this enables loading payloads only for prerendered routes, if a site is static (preventing 404s). It also enables *client-side* route rules. To begin with, only `redirect` route rules will have an effect; they will now redirect when performing client-side navigation. (More coming soon...!) The app manifest also enables future enhancements including detection of outdated deployments by checking `/_nuxt/builds/latest.json`. You can switch off this behaviour if you need to (but do let us know if you have any issues): ```ts export default defineNuxtConfig({ experimental: { appManifest: false } }) ``` ##### 🀝 Scope and context improvements We now define a 'scope' for Nuxt composables executed in plugins ([#​23667](https://togithub.com/nuxt/nuxt/pull/23667)), which allows running synchronous cleanup before navigating away from your site, using the Vue `onScopeDispose` lifecycle method. This should fix an edge case with cookies ([#​23697](https://togithub.com/nuxt/nuxt/pull/23697)) and also improves memory management, for example in Pinia stores ([#​23650](https://togithub.com/nuxt/nuxt/issues/23650)). You can [read more about Vue effect scopes](https://vuejs.org/api/reactivity-advanced.html#effectscope). We also now support **native async context** for the *Vue composition API* ([#​23526](https://togithub.com/nuxt/nuxt/pull/23526)). In case you're unaware, we support native async context on Node and Bun, enabled with `experimental.asyncContext`. This can help address issues with missing a Nuxt instance. But it didn't previously affect missing *Vue* instances. If you experience issues with 'Nuxt instance unavailable', enabling this option may solve your issues, and once we have cross-runtime support we are likely to enable it by default. ```ts export default defineNuxtConfig({ experimental: { asyncContext: true } }) ``` ##### πŸ”— NuxtLink defaults We've supported defining your own `NuxtLink` components with the `defineNuxtLink` utility. We now support customising the options for the built-in ``, directly in your `nuxt.config` file ([#​23724](https://togithub.com/nuxt/nuxt/pull/23724)). This can enable you to enforce trailing slash behaviour across your entire site, for example. ```ts export default defineNuxtConfig({ experimental: { defaults: { nuxtLink: { activeClass: 'nuxt-link-active', trailingSlash: 'append' } } } }) ``` ##### ⚑️ Data fetching improvements: deep and caching We have two very significant new features for `useAsyncData` and `useFetch`: 1. You can now set `deep: false` to prevent deep reactivity on the `data` object returned from these composables ([#​23600](https://togithub.com/nuxt/nuxt/pull/23600)). It should be a performance improvement if you are returning large arrays or objects. The object will still update when refetched; it just won't trigger reactive effects if you change a property deep within the `data`. 2. You can now use the `getCachedData` option to handle custom caching for these composables ([#​20747](https://togithub.com/nuxt/nuxt/pull/20747)) ```ts const nuxtApp = useNuxtApp() const { data } = await useAsyncData(() => { /* fetcher */ }, { // this will not refetch if the key exists in the payload getCachedData: key => nuxtApp.payload.static[key] ?? nuxtApp.payload.data[key] }) ``` We also support configuring some default values for these composables in an app-wide way ([#​23725](https://togithub.com/nuxt/nuxt/pull/20747)): ```ts export default defineNuxtConfig({ experimental: { defaults: { useAsyncData: { deep: false }, useFetch: { retry: false, retryDelay: 100, retryStatusCodes: [500], timeout: 100 } } } }) ``` ##### πŸ”’ Layer improvements We now more carefully load layer plugins ([#​22889](https://togithub.com/nuxt/nuxt/pull/22889) and [#​23148](https://togithub.com/nuxt/nuxt/pull/23148)) and middleware ([#​22925](https://togithub.com/nuxt/nuxt/pull/22925) and [#​23552](https://togithub.com/nuxt/nuxt/pull/23552)) in the order of the layers, always loading your own plugins and middleware last. This should mean you can rely on utilities that layers may inject. We've also added a test suite to cover these layer resolution changes. And probably one of the most significant changes - if you are using remote layers we now clone these within your `node_modules/` folder ([#​109](https://togithub.com/unjs/c12/pull/109)) so layers can use dependencies with your project. See [`c12` release notes](https://togithub.com/unjs/c12/releases/tag/v1.5.1) for full details. ##### 😴 Nightly release channel Every commit to the `main` branch of Nuxt is automatically deployed to a new release, for easier testing before releases. We've renamed this from the 'edge release channel' to the 'nightly release channel' to avoid confusion with *edge deployments*. And probably also with Microsoft Edge (though I haven't heard that anyone was confused with that one!) ➑️ `nuxt3` is now `nuxt-nightly` ➑️ `nuxi-edge` is now `nuxi-nightly` ➑️ `@​nuxt/kit-edge` is now `@​nuxt/kit-nightly` ... and so on. You can read more about [how it works](https://nuxt.com/docs/guide/going-further/nightly-release-channel#nightly-release-channel). ##### βš—οΈ Nitro v2.7 Nitro v2.7 has been released with lots of improvements and bug fixes - do check out [the full changelog](https://togithub.com/unjs/nitro/releases/tag/v2.7.0). πŸ”₯ One of the most significant is that we now save ~40% of bundle size in production by using native `fetch` (which is supported in Node 18+) ([#​1724](https://togithub.com/unjs/nitro/pull/1724)). So if possible, we'd recommend you update your Node version to at least 18. ##### πŸ’ͺ Type import changes 🚨 **This is likely to need code changes in your project** 🚨 Vue requires that type imports be explicit (so that the Vue compiler can correctly optimise and resolve type imports for props and so on). See [core Vue `tsconfig.json`](https://togithub.com/vuejs/tsconfig/blob/main/tsconfig.json#L30-L33). We've therefore taken the decision to turn on `verbatimModuleSyntax` by default in Nuxt projects, which will throw a type error if types are imported without an explicit `type` import. To resolve it you will need to update your imports: ```diff - import { someFunction, SomeOptions } from 'some-library' + import { someFunction } from 'some-library' + import type { SomeOptions } from 'some-library' ``` You may also encounter modules in the Nuxt ecosystem that need to be updated; please open an issue for those modules. I'm also very happy to help if you're encountering any problems with this, if you're a module author. Just tag me and I'll take a look. If for whatever reason you need to undo this change in your project you can set the following configuration: ```ts export default defineNuxtConfig({ typescript: { tsConfig: { compilerOptions: { verbatimModuleSyntax: false } } } }) ``` However, we'd recommend only doing that temporarily, as Vue does need this option to be set for best results. #### βœ… Upgrading As usual, our recommendation for upgrading is to run: ```sh nuxi upgrade ``` #### πŸ‘‰ Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.7.4...v3.8.0) ##### πŸš€ Enhancements - **kit:** Add `addServerImports` and `addServerImportsDir` ([#​23288](https://togithub.com/nuxt/nuxt/pull/23288)) - **nuxt:** Warn when nesting nuxt links when SSR on dev ([#​23286](https://togithub.com/nuxt/nuxt/pull/23286)) - **nuxt:** Add `prerenderRoutes` ssr composable ([#​22863](https://togithub.com/nuxt/nuxt/pull/22863)) - **nuxt:** Enable `appManifest` by default ([#​23448](https://togithub.com/nuxt/nuxt/pull/23448)) - **nuxt:** Native async-context in vue's `withAsyncContext` ([#​23526](https://togithub.com/nuxt/nuxt/pull/23526)) - **nuxt:** Auto-install optional features on StackBlitz ([#​23607](https://togithub.com/nuxt/nuxt/pull/23607)) - **kit,nuxt,vite,webpack:** Support `-nightly` extension ([#​23508](https://togithub.com/nuxt/nuxt/pull/23508)) - **nuxt:** Add `@nuxt/devtools` as dependency and enable ([#​23576](https://togithub.com/nuxt/nuxt/pull/23576)) - **nuxt:** Support `deep: false` for data composables ([#​23600](https://togithub.com/nuxt/nuxt/pull/23600)) - **nuxt:** Custom cache support for data fetching composables ([#​20747](https://togithub.com/nuxt/nuxt/pull/20747)) - **nuxt:** Scan and register layouts in nested folders ([#​20190](https://togithub.com/nuxt/nuxt/pull/20190)) - **nuxt:** Prompt to autoinstall `@nuxt/image` when it is used ([#​23717](https://togithub.com/nuxt/nuxt/pull/23717)) - **nuxt:** Allow configuring default `` options ([#​23724](https://togithub.com/nuxt/nuxt/pull/23724)) - **nuxt:** Allow customising defaults for data composables ([#​23725](https://togithub.com/nuxt/nuxt/pull/23725)) ##### πŸ”₯ Performance - **vite:** Don't print server compressed size after vite build ([#​23359](https://togithub.com/nuxt/nuxt/pull/23359)) - **nuxt:** Verbatim module syntax + restrict type discovery ([#​23447](https://togithub.com/nuxt/nuxt/pull/23447)) ##### 🩹 Fixes - **nuxt:** Initialise `asyncData` errors with `null` ([#​23428](https://togithub.com/nuxt/nuxt/pull/23428)) - **nuxt:** Apply scoped styles to islands ([#​23386](https://togithub.com/nuxt/nuxt/pull/23386)) - **nuxt:** Rename stub to avoid shadowing `vue-router` ([#​23440](https://togithub.com/nuxt/nuxt/pull/23440)) - **nuxt:** Stringify cookie values before broadcasting them ([#​23449](https://togithub.com/nuxt/nuxt/pull/23449)) - **kit:** Don't force `config.autoImport` in `addServerImports` ([#​23472](https://togithub.com/nuxt/nuxt/pull/23472)) - **nuxt:** Ignore prefix if `clearNuxtState` called w/o keys ([#​23483](https://togithub.com/nuxt/nuxt/pull/23483)) - **nuxt:** Decrement hydration count when rendering no route ([#​23476](https://togithub.com/nuxt/nuxt/pull/23476)) - **nuxt:** Compute fetch cache key with headers ([#​23462](https://togithub.com/nuxt/nuxt/pull/23462)) - **nuxt:** Mock hookable methods on nuxt 2 ([#​23502](https://togithub.com/nuxt/nuxt/pull/23502)) - **kit:** Revert accidental change to `addPrerenderRoutes` name ([#​23509](https://togithub.com/nuxt/nuxt/pull/23509)) - **nuxt:** Use `test`/`dev` as manifest buildId when appropriate ([#​23512](https://togithub.com/nuxt/nuxt/pull/23512)) - **nuxt:** Don't print warnings for unresolved ids ([#​23604](https://togithub.com/nuxt/nuxt/pull/23604)) - **nuxt:** Use import alias when checking if plugin is wrapped ([#​23617](https://togithub.com/nuxt/nuxt/pull/23617)) - **nuxt:** Tree shake all occurrences of `` ([#​23466](https://togithub.com/nuxt/nuxt/pull/23466)) - **nuxt:** Give priority to later middleware when deduping ([#​23552](https://togithub.com/nuxt/nuxt/pull/23552)) - **nuxt:** Clear cookie BroadcastChannel when scope is disposed ([#​23664](https://togithub.com/nuxt/nuxt/pull/23664)) - **nuxt:** Provide global scope for nuxt plugin context ([#​23667](https://togithub.com/nuxt/nuxt/pull/23667)) - **nuxt:** Resolve type error in options of `useFetch` ([#​23693](https://togithub.com/nuxt/nuxt/pull/23693)) - **webpack:** Remove `lodash-es` + simplify postcss resolution ([#​23692](https://togithub.com/nuxt/nuxt/pull/23692)) - **nuxt:** Skip hydration mismatches with client components ([#​19231](https://togithub.com/nuxt/nuxt/pull/19231)) - **nuxt:** Write cookie values before navigating away ([#​23697](https://togithub.com/nuxt/nuxt/pull/23697)) - **nuxt:** Refetch both undefined/null values in `useAsyncData` ([#​23351](https://togithub.com/nuxt/nuxt/pull/23351)) - **nuxt:** Don't mark redirected routes as prerendered ([#​23707](https://togithub.com/nuxt/nuxt/pull/23707)) - **nuxt:** Respect custom export in component transform ([#​23715](https://togithub.com/nuxt/nuxt/pull/23715)) - **nuxt:** Don't use `prerenderedAt` to override app manifest ([#​23781](https://togithub.com/nuxt/nuxt/pull/23781)) - **nuxt:** Restore `prerenderedAt` behaviour pending next patch ([108b1bdf7](https://togithub.com/nuxt/nuxt/commit/108b1bdf7)) ##### πŸ“– Documentation - Mention `listhen` options on nuxi dev page ([#​23415](https://togithub.com/nuxt/nuxt/pull/23415)) - Add examples for index.ts files on server routes ([#​23390](https://togithub.com/nuxt/nuxt/pull/23390)) - Improve data fetching section ([#​23420](https://togithub.com/nuxt/nuxt/pull/23420)) - Remove duplicated arrows ([#​23436](https://togithub.com/nuxt/nuxt/pull/23436)) - Extend description of `handler` for `useAsyncData` ([#​23389](https://togithub.com/nuxt/nuxt/pull/23389)) - Clarify bridge needs `nitro` to use `runtimeConfig` ([#​23454](https://togithub.com/nuxt/nuxt/pull/23454)) - Fix typo in README ([#​23500](https://togithub.com/nuxt/nuxt/pull/23500)) - Clarify that `bridge.typescript` option must be set. ([#​23503](https://togithub.com/nuxt/nuxt/pull/23503)) - Use html instead of xml for highlight ([45c1e7f51](https://togithub.com/nuxt/nuxt/commit/45c1e7f51)) - Fix component library example in docs ([#​23596](https://togithub.com/nuxt/nuxt/pull/23596)) - Typo in modules ([#​23602](https://togithub.com/nuxt/nuxt/pull/23602)) - Reword local module info ([#​23557](https://togithub.com/nuxt/nuxt/pull/23557)) - Add server concept ([#​23372](https://togithub.com/nuxt/nuxt/pull/23372)) - Improve `nuxt kit` section ([#​22375](https://togithub.com/nuxt/nuxt/pull/22375)) - Update additional mentions to nightly release channel ([c63f9a95d](https://togithub.com/nuxt/nuxt/commit/c63f9a95d)) - Rename `/edge-channel` page to `/nightly-release-channel` ([#​23648](https://togithub.com/nuxt/nuxt/pull/23648)) - Add section about computed url for data fetching ([#​23605](https://togithub.com/nuxt/nuxt/pull/23605)) - Fix typo ([#​23656](https://togithub.com/nuxt/nuxt/pull/23656)) - Remove extraneous brace ([b9cb08cda](https://togithub.com/nuxt/nuxt/commit/b9cb08cda)) - Fix other issues with `routeRules` example ([818dc626c](https://togithub.com/nuxt/nuxt/commit/818dc626c)) - Fix typo ([#​23716](https://togithub.com/nuxt/nuxt/pull/23716)) - Update types for useFetch/useAsyncData ([#​23730](https://togithub.com/nuxt/nuxt/pull/23730)) - Add info about `` and `` ([#​23741](https://togithub.com/nuxt/nuxt/pull/23741)) - Update to new website ([#​23743](https://togithub.com/nuxt/nuxt/pull/23743)) - Remove redundant trailing slashes from links ([#​23744](https://togithub.com/nuxt/nuxt/pull/23744)) - Fix broken link ([#​23750](https://togithub.com/nuxt/nuxt/pull/23750)) ##### 🏑 Chore - Fix various typos and update to US English ([#​23580](https://togithub.com/nuxt/nuxt/pull/23580)) - Add description field for packages ([#​23734](https://togithub.com/nuxt/nuxt/pull/23734)) - Bump nuxt devtools to 1.0 ([#​23752](https://togithub.com/nuxt/nuxt/pull/23752)) - Allow markdownlint upgrades ([3d779fcf3](https://togithub.com/nuxt/nuxt/commit/3d779fcf3)) - Remove huntr + encourage GitHub vulnerability reporting ([#​23754](https://togithub.com/nuxt/nuxt/pull/23754)) - Refresh lockfile ([#​23755](https://togithub.com/nuxt/nuxt/pull/23755)) - Update to nitropack 2.7.0 ([#​23780](https://togithub.com/nuxt/nuxt/pull/23780)) - Upgrade to c12 1.5 with configurable layers ([#​23782](https://togithub.com/nuxt/nuxt/pull/23782)) ##### βœ… Tests - **nuxt:** Add test suite for app resolution behaviour ([#​23520](https://togithub.com/nuxt/nuxt/pull/23520)) - Update prerender test ([8d62c2add](https://togithub.com/nuxt/nuxt/commit/8d62c2add)) ##### πŸ€– CI - Retry failing links 6 times ([ad2a900fd](https://togithub.com/nuxt/nuxt/commit/ad2a900fd)) - Only dedupe dependencies if they affect bundle size ([#​23736](https://togithub.com/nuxt/nuxt/pull/23736)) ##### ❀️ Contributors - Daniel Roe ([@​danielroe](https://togithub.com/danielroe)) - Pooya Parsa ([@​pi0](https://togithub.com/pi0)) - Anthony Fu ([@​antfu](https://togithub.com/antfu)) - Jianqi Pan ([@​Jannchie](https://togithub.com/Jannchie)) - Damian GΕ‚owala ([@​DamianGlowala](https://togithub.com/DamianGlowala)) - SΓ©bastien Chopin ([@​Atinux](https://togithub.com/Atinux)) - Alexander Lichter ([@​manniL](https://togithub.com/manniL)) - [@​boc-the-git](https://togithub.com/boc-the-git) - Aleksandar Trpkovski ([@​Suv4o](https://togithub.com/Suv4o)) - Dario Ferderber ([@​darioferderber](https://togithub.com/darioferderber)) - Warflash ([@​warflash](https://togithub.com/warflash)) - Julien Huang ([@​huang-julien](https://togithub.com/huang-julien)) - Sacha Stafyniak ([@​stafyniaksacha](https://togithub.com/stafyniaksacha)) - Alex Liu ([@​Mini-ghost](https://togithub.com/Mini-ghost)) - Orocane ([@​S1RANN](https://togithub.com/S1RANN)) - Italo ([@​DarkGhostHunter](https://togithub.com/DarkGhostHunter)) - [@​maritaria](https://togithub.com/maritaria) - Andrey Yolkin ([@​Andrey](https://togithub.com/Andrey) Yolkin) - Aaron_Zhou ([@​Clarkkkk](https://togithub.com/Clarkkkk)) - EstΓ©ban ([@​Barbapapazes](https://togithub.com/Barbapapazes)) - [@​sheriffderek](https://togithub.com/sheriffderek) - Eugen Istoc ([@​genu](https://togithub.com/genu)) - Mostafa Said ([@​i-Said-Code](https://togithub.com/i-Said-Code)) - Ezra Adeyinka ([@​adeyinkaezra123](https://togithub.com/adeyinkaezra123)) - Ryota Watanabe ([@​wattanx](https://togithub.com/wattanx)) - Hendrik Heil ([@​hendrikheil](https://togithub.com/hendrikheil)) - [@​0xflotus](https://togithub.com/0xflotus) - Albert Brand ([@​AlbertBrand](https://togithub.com/AlbertBrand)) - Arsen Goian ([@​arsengoian](https://togithub.com/arsengoian)) - Maxim ([@​MaxKostenko](https://togithub.com/MaxKostenko)) - Filip Weidemann ([@​filipweidemann](https://togithub.com/filipweidemann)) - Toni Engelhardt ([@​toniengelhardt](https://togithub.com/toniengelhardt))
vuejs/core (vue) ### [`v3.3.7`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#337-2023-10-24) [Compare Source](https://togithub.com/vuejs/core/compare/v3.3.6...v3.3.7) ##### Bug Fixes - **compiler-sfc:** avoid gen useCssVars when targeting SSR ([#​6979](https://togithub.com/vuejs/core/issues/6979)) ([c568778](https://togithub.com/vuejs/core/commit/c568778ea3265d8e57f788b00864c9509bf88a4e)), closes [#​6926](https://togithub.com/vuejs/core/issues/6926) - **compiler-ssr:** proper scope analysis for ssr vnode slot fallback ([#​7184](https://togithub.com/vuejs/core/issues/7184)) ([e09c26b](https://togithub.com/vuejs/core/commit/e09c26bc9bc4394c2c2d928806d382515c2676f3)), closes [#​7095](https://togithub.com/vuejs/core/issues/7095) - correctly resolve types from relative paths on Windows ([#​9446](https://togithub.com/vuejs/core/issues/9446)) ([089d36d](https://togithub.com/vuejs/core/commit/089d36d167dc7834065b03ca689f9b6a44eead8a)), closes [#​8671](https://togithub.com/vuejs/core/issues/8671) - **hmr:** fix hmr error for hoisted children array in v-for ([7334376](https://togithub.com/vuejs/core/commit/733437691f70ebca8dd6cc3bc8356f5b57d4d5d8)), closes [#​6978](https://togithub.com/vuejs/core/issues/6978) [#​7114](https://togithub.com/vuejs/core/issues/7114) - **reactivity:** assigning array.length while observing a symbol property ([#​7568](https://togithub.com/vuejs/core/issues/7568)) ([e9e2778](https://togithub.com/vuejs/core/commit/e9e2778e9ec5cca07c1df5f0c9b7b3595a1a3244)) - **scheduler:** ensure jobs are in the correct order ([#​7748](https://togithub.com/vuejs/core/issues/7748)) ([a8f6638](https://togithub.com/vuejs/core/commit/a8f663867b8cd2736b82204bc58756ef02441276)), closes [#​7576](https://togithub.com/vuejs/core/issues/7576) - **ssr:** fix hydration mismatch for disabled teleport at component root ([#​9399](https://togithub.com/vuejs/core/issues/9399)) ([d8990fc](https://togithub.com/vuejs/core/commit/d8990fc6182d1c2cf0a8eab7b35a9d04df668507)), closes [#​6152](https://togithub.com/vuejs/core/issues/6152) - **Suspense:** calling hooks before the transition finishes ([#​9388](https://togithub.com/vuejs/core/issues/9388)) ([00de3e6](https://togithub.com/vuejs/core/commit/00de3e61ed7a55e7d6c2e1987551d66ad0f909ff)), closes [#​5844](https://togithub.com/vuejs/core/issues/5844) [#​5952](https://togithub.com/vuejs/core/issues/5952) - **transition/ssr:** make transition appear work with SSR ([#​8859](https://togithub.com/vuejs/core/issues/8859)) ([5ea8a8a](https://togithub.com/vuejs/core/commit/5ea8a8a4fab4e19a71e123e4d27d051f5e927172)), closes [#​6951](https://togithub.com/vuejs/core/issues/6951) - **types:** fix ComponentCustomProps augmentation ([#​9468](https://togithub.com/vuejs/core/issues/9468)) ([7374e93](https://togithub.com/vuejs/core/commit/7374e93f0281f273b90ab5a6724cc47332a01d6c)), closes [#​8376](https://togithub.com/vuejs/core/issues/8376) - **types:** improve `h` overload to support union of string and component ([#​5432](https://togithub.com/vuejs/core/issues/5432)) ([16ecb44](https://togithub.com/vuejs/core/commit/16ecb44c89cd8299a3b8de33cccc2e2cc36f065b)), closes [#​5431](https://togithub.com/vuejs/core/issues/5431) ### [`v3.3.6`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#336-2023-10-20) [Compare Source](https://togithub.com/vuejs/core/compare/v3.3.5...v3.3.6) ##### Bug Fixes - **compiler-sfc:** model name conflict ([#​8798](https://togithub.com/vuejs/core/issues/8798)) ([df81da8](https://togithub.com/vuejs/core/commit/df81da8be97c8a1366563c7e3e01076ef02eb8f7)) - **compiler-sfc:** support asset paths containing spaces ([#​8752](https://togithub.com/vuejs/core/issues/8752)) ([36c99a9](https://togithub.com/vuejs/core/commit/36c99a9c6bb6bc306be054c3c8a85ff8ce50605a)) - **compiler-ssr:** fix missing scopeId on server-rendered TransitionGroup ([#​7557](https://togithub.com/vuejs/core/issues/7557)) ([61c1357](https://togithub.com/vuejs/core/commit/61c135742795aa5e3189a79c7dec6afa21bbc8d9)), closes [#​7554](https://togithub.com/vuejs/core/issues/7554) - **compiler-ssr:** fix ssr compile error for select with non-option children ([#​9442](https://togithub.com/vuejs/core/issues/9442)) ([cdb2e72](https://togithub.com/vuejs/core/commit/cdb2e725e7ea297f1f4180fb04889a3b757bc84e)), closes [#​9440](https://togithub.com/vuejs/core/issues/9440) - **runtime-core:** delete stale slots which are present but undefined ([#​6484](https://togithub.com/vuejs/core/issues/6484)) ([75b8722](https://togithub.com/vuejs/core/commit/75b872213574cb37e2c9e8a15f65613f867ca9a6)), closes [#​9109](https://togithub.com/vuejs/core/issues/9109) - **runtime-core:** fix error when using cssvars with disabled teleport ([#​7341](https://togithub.com/vuejs/core/issues/7341)) ([8f0472c](https://togithub.com/vuejs/core/commit/8f0472c9abedb337dc256143b69d8ab8759dbf5c)), closes [#​7342](https://togithub.com/vuejs/core/issues/7342) - **teleport:** ensure descendent component would be unmounted correctly ([#​6529](https://togithub.com/vuejs/core/issues/6529)) ([4162311](https://togithub.com/vuejs/core/commit/4162311efdb0db5ca458542e1604b19efa2fae0e)), closes [#​6347](https://togithub.com/vuejs/core/issues/6347) - **types:** support contenteditable="plaintext-only" ([#​8796](https://togithub.com/vuejs/core/issues/8796)) ([26ca89e](https://togithub.com/vuejs/core/commit/26ca89e5cf734fbef81e182050d2a215ec8a437b)) ##### Performance Improvements - replace Map/Set with WeakMap/WeakSet ([#​8549](https://togithub.com/vuejs/core/issues/8549)) ([712f96d](https://togithub.com/vuejs/core/commit/712f96d6ac4d3d984732cba448cb84624daba850)) ### [`v3.3.5`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#335-2023-10-20) [Compare Source](https://togithub.com/vuejs/core/compare/v3.3.4...v3.3.5) ##### Bug Fixes - add isGloballyWhitelisted back, but deprecated ([#​8556](https://togithub.com/vuejs/core/issues/8556)) ([63dfe8e](https://togithub.com/vuejs/core/commit/63dfe8eab499979bcc2f7829e82464e13899c895)), closes [#​8416](https://togithub.com/vuejs/core/issues/8416) - **build:** disable useDefineForClassFields in esbuild ([#​9252](https://togithub.com/vuejs/core/issues/9252)) ([6d14fa8](https://togithub.com/vuejs/core/commit/6d14fa88e85d4c9e264be394ddb37a54ca6738a8)) - **compat:** return value of vue compat set() ([#​9377](https://togithub.com/vuejs/core/issues/9377)) ([e3c2d69](https://togithub.com/vuejs/core/commit/e3c2d699f694d9500ddee78571172a24f0e3b17a)) - **compiler-sfc:** don't hoist props and emit ([#​8535](https://togithub.com/vuejs/core/issues/8535)) ([24db951](https://togithub.com/vuejs/core/commit/24db9516d8b4857182ec1a3af86cb7346691679b)), closes [#​7805](https://togithub.com/vuejs/core/issues/7805) [#​7812](https://togithub.com/vuejs/core/issues/7812) - **compiler-sfc:** don't registerTS when bundling for browsers ([#​8582](https://togithub.com/vuejs/core/issues/8582)) ([6f45f76](https://togithub.com/vuejs/core/commit/6f45f76df2c43796b35067ef8f8b9a7bca454040)) - **compiler-sfc:** fix using imported ref as template ref during dev ([#​7593](https://togithub.com/vuejs/core/issues/7593)) ([776ebf2](https://togithub.com/vuejs/core/commit/776ebf25b2e7570e78ac1c148fc45c823c21a542)), closes [#​7567](https://togithub.com/vuejs/core/issues/7567) - **compiler-sfc:** handle dynamic directive arguments in template usage check ([#​8538](https://togithub.com/vuejs/core/issues/8538)) ([e404a69](https://togithub.com/vuejs/core/commit/e404a699f48ae5c5a5da947f42679343192158c7)), closes [#​8537](https://togithub.com/vuejs/core/issues/8537) - **compiler-sfc:** ignore style v-bind in double slash comments ([#​5409](https://togithub.com/vuejs/core/issues/5409)) ([381b497](https://togithub.com/vuejs/core/commit/381b4977af25ba5392704f72ec6b3f2394d87ae7)) - **compiler-sfc:** pass options directly to stylus ([#​3848](https://togithub.com/vuejs/core/issues/3848)) ([d6446a6](https://togithub.com/vuejs/core/commit/d6446a6d40774b79045a9ddba7b5fd5201d51450)) - **compiler-sfc:** support resolve multiple re-export /w same source type name ([#​8365](https://togithub.com/vuejs/core/issues/8365)) ([4fa8da8](https://togithub.com/vuejs/core/commit/4fa8da8576717c619e1e8c04d19038488c75fbea)), closes [#​8364](https://togithub.com/vuejs/core/issues/8364) - **compiler-sfc:** typo in experimental feature warnings ([#​8513](https://togithub.com/vuejs/core/issues/8513)) ([fd1a3f9](https://togithub.com/vuejs/core/commit/fd1a3f95990d7c372fa1c0c40c55caca761a33a4)) - **deps:** update dependency monaco-editor to ^0.44.0 ([#​9237](https://togithub.com/vuejs/core/issues/9237)) ([8611874](https://togithub.com/vuejs/core/commit/8611874e09a827b6491173836c8942284d5de22c)) - **deps:** update playground ([#​9154](https://togithub.com/vuejs/core/issues/9154)) ([c8566a2](https://togithub.com/vuejs/core/commit/c8566a22b7cf37e6aefab7bad7b97ce2db9fae4c)) - **playground:** fix github button style ([#​7722](https://togithub.com/vuejs/core/issues/7722)) ([5ee992c](https://togithub.com/vuejs/core/commit/5ee992cfeabc6c4b871980c6057d0ac7140ad2fa)) - **runtime-core:** swap client/server debug labels ([#​9089](https://togithub.com/vuejs/core/issues/9089)) ([8f311c6](https://togithub.com/vuejs/core/commit/8f311c6f823f6776ca1c49bfbbbf8c7d9dea9cf1)) - **ssr:** render correct initial selected state for select with v-model ([#​7432](https://togithub.com/vuejs/core/issues/7432)) ([201c46d](https://togithub.com/vuejs/core/commit/201c46df07a38f3c2b73f384e8e6846dc62f224e)), closes [#​7392](https://togithub.com/vuejs/core/issues/7392) - **ssr:** reset current instance if setting up options component errors ([#​7743](https://togithub.com/vuejs/core/issues/7743)) ([020851e](https://togithub.com/vuejs/core/commit/020851e57d9a9f727c6ea07e9c1575430af02b73)), closes [#​7733](https://togithub.com/vuejs/core/issues/7733) - **teleport:** handle target change while disabled ([#​7837](https://togithub.com/vuejs/core/issues/7837)) ([140a89b](https://togithub.com/vuejs/core/commit/140a89b833bceed60838182b875d2953c70af114)), closes [#​7835](https://togithub.com/vuejs/core/issues/7835) - **transition:** handle possible auto value for transition/animation durations ([96c76fa](https://togithub.com/vuejs/core/commit/96c76facb7de37fc241ccd55e121fd60a49a1452)), closes [#​8409](https://togithub.com/vuejs/core/issues/8409) - **types/jsx:** add `inert` attribute and missing `hidden` values ([#​8090](https://togithub.com/vuejs/core/issues/8090)) ([ceb0732](https://togithub.com/vuejs/core/commit/ceb0732e0b1bb4c8c505d80e97ff6fc89035fa90)) - **types/jsx:** add missing loading attr for img element ([#​6160](https://togithub.com/vuejs/core/issues/6160)) ([68d6b43](https://togithub.com/vuejs/core/commit/68d6b43f7e29b76aab2c6c1882885380a43fa3e3)) - **types:** correct withDefaults return type for boolean prop with undefined default value ([#​8602](https://togithub.com/vuejs/core/issues/8602)) ([f07cb18](https://togithub.com/vuejs/core/commit/f07cb18fedf9a446545aadf76bcdfb957c7ebcbd)) - **types:** ensure nextTick return type reflect correct Promise value ([#​8406](https://togithub.com/vuejs/core/issues/8406)) ([6a22b1f](https://togithub.com/vuejs/core/commit/6a22b1f6c287b60eda385df8a514335af8e040ea)) - **types:** support correct types for style on svg elements ([#​6322](https://togithub.com/vuejs/core/issues/6322)) ([364dc53](https://togithub.com/vuejs/core/commit/364dc53c7cc6f97d812ad175199c698faa92538e)) ##### Performance Improvements - **compiler-sfc:** lazy require typescript ([d2c3d8b](https://togithub.com/vuejs/core/commit/d2c3d8b70b2df6e16f053a7ac58e6b04e7b2078f)) - **custom-element:** cancel `MutationObserver` listener when disconnected ([#​8666](https://togithub.com/vuejs/core/issues/8666)) ([24d98f0](https://togithub.com/vuejs/core/commit/24d98f03276de5b0fbced5a4c9d61b24e7d9d084)) - mark `defineComponent` as side-effects-free ([#​8512](https://togithub.com/vuejs/core/issues/8512)) ([438027c](https://togithub.com/vuejs/core/commit/438027cf9ecb63260f59d3027e0b188717694795))

Configuration

πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - "before 4am on Monday" (UTC).

🚦 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.



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

codecov[bot] commented 7 months ago

Codecov Report

Merging #285 (5f6da16) into main (5fb6952) will not change coverage. Report is 1 commits behind head on main. The diff coverage is n/a.

@@           Coverage Diff           @@
##             main     #285   +/-   ##
=======================================
  Coverage   82.60%   82.60%           
=======================================
  Files           2        2           
  Lines         115      115           
  Branches       13       13           
=======================================
  Hits           95       95           
  Misses         20       20           

:mega: We’re building smart automated test selection to slash your CI/CD build times. Learn more