nuxt-modules / stylelint

Stylelint module for Nuxt.js
MIT License
66 stars 9 forks source link

chore(deps): update dependency @nuxt/kit to ^3.10.0 #112

Closed renovate[bot] closed 8 months ago

renovate[bot] commented 9 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/kit (source) ^3.9.0 -> ^3.10.0 age adoption passing confidence

Release Notes

nuxt/nuxt (@​nuxt/kit) ### [`v3.10.0`](https://togithub.com/nuxt/nuxt/releases/tag/v3.10.0) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.9.3...v3.10.0) > 3.10.0 is the next minor/feature release. ##### 👀 Highlights v3.10 comes quite close on the heels of v3.9, but it's packed with features and fixes. Here are a few highlights. ##### ✨ Experimental shared `asyncData` when prerendering When prerendering routes, we can end up refetching the same data over and over again. In Nuxt 2 it was possible to create a 'payload' which could be fetched once and then accessed in every page (and this is of course possible to do manually in Nuxt 3 - see [this article](https://roe.dev/blog/shared-data-nuxt-generate)). With [#​24894](https://togithub.com/nuxt/nuxt/pull/24894), we are now able to do this automatically for you when prerendering. Your `useAsyncData` and `useFetch` calls will be deduplicated and cached between renders of your site. ```ts [nuxt.config.ts] export defineNuxtConfig({ experimental: { sharedPrerenderData: true } }) ``` > \[!IMPORTANT]\ > It is particularly important to make sure that any unique key of your data is always resolvable to the same data. For example, if you are using `useAsyncData` to fetch data related to a particular page, you should provide a key that uniquely matches that data. (`useFetch` should do this automatically.) 👉 See [full documentation](https://nuxt.com/docs/guide/going-further/experimental-features#sharedprerenderdata). ##### 🆔 SSR-safe accessible unique ID creation We now ship a `useId` composable for generating SSR-safe unique IDs ([#​23368](https://togithub.com/nuxt/nuxt/pull/23368)). This allows creating more accessible interfaces in your app. For example: ```vue [components/MyForm.vue] ``` ##### ✍️ Extending `app/router.options` It's now possible for module authors to inject their own `router.options` files ([#​24922](https://togithub.com/nuxt/nuxt/pull/24922)). The new `pages:routerOptions` hook allows module authors to do things like add custom `scrollBehavior` or add runtime augmenting of routes. 👉 See [full documentation](https://nuxt.com/docs/guide/going-further/custom-routing#router-options). ##### Client-side Node.js support We now support (experimentally) polyfilling key Node.js built-ins ([#​25028](https://togithub.com/nuxt/nuxt/pull/25028)), just as we already do via Nitro on the server when deploying to non-Node environments. That means that, within your client-side code, you can import directly from Node built-ins (`node:` and node imports are supported). However, nothing is globally injected for you, to avoid increasing your bundle size unnecessarily. You can either import them where needed. ```ts import { Buffer } from 'node:buffer' import process from 'node:process' ``` Or provide your own polyfill, for example, inside a Nuxt plugin. ```ts // ~/plugins/node.client.ts import { Buffer } from 'node:buffer' import process from 'node:process' globalThis.Buffer = Buffer globalThis.process = process export default defineNuxtPlugin({}) ``` This should make life easier for users who are working with libraries without proper browser support. However, because of the risk in increasing your bundle unnecessarily, we would strongly urge users **to choose other alternatives** if at all possible. ##### 🍪 Better cookie reactivity We now allow you to opt-in to using the [CookieStore](https://developer.mozilla.org/en-US/docs/Web/API/CookieStore). If browser support is present, this will then be used instead of a BroadcastChannel to update `useCookie` values reactively when the cookies are updated ([#​25198](https://togithub.com/nuxt/nuxt/pull/25198)). This also comes paired with a new composable, `refreshCookie` which allows manually refreshing cookie values, such as after performing a request. See [full documentation](https://nuxt.com/docs/api/utils/refresh-cookie). ##### 🏥 Detecting anti-patterns In this release, we've also shipped a range of features to detect potential bugs and performance problems. - We now will throw an error if `setInterval` is used on server ([#​25259](https://togithub.com/nuxt/nuxt/pull/25259)). - We warn (in development only) if data fetch composables are used wrongly ([#​25071](https://togithub.com/nuxt/nuxt/pull/25071)), such as outside of a plugin or setup context. - We warn (in development only) if you are not using `` but have the `vue-router` integration enabled ([#​25490](https://togithub.com/nuxt/nuxt/pull/25490)). (`` should not be used on its own.) ##### 🧂 Granular view transitions support It's now possible to control view transitions support on a per-page basis, using `definePageMeta` ([#​25264](https://togithub.com/nuxt/nuxt/pull/25264)). You need to have experimental view transitions support enabled first: ```ts export default defineNuxtConfig({ experimental: { viewTransition: true }, app: { // you can disable them globally if necessary (they are enabled by default) viewTransition: false } }) ``` And you can opt in/out granularly: ```vue // ~/pages/index.vue ``` Finally, Nuxt will not apply View Transitions if the user's browser matches `prefers-reduced-motion: reduce` ([#​22292](https://togithub.com/nuxt/nuxt/pull/22292)). You can set `viewTransition: 'always'`; it will then be up to you to respect the user's preference. ##### 🏗️ Build-time route metadata It's now possible to access routing metadata defined in `definePageMeta` at build-time, allowing modules and hooks to modify and change these values ([#​25210](https://togithub.com/nuxt/nuxt/pull/25210)). ```ts export default defineNuxtConfig({ experimental: { scanPageMeta: true } }) ``` Please, experiment with this and let us know how it works for you. We hope to improve performance and enable this by default in a future release so modules like `@nuxtjs/i18n` and others can provide a deeper integration with routing options set in `definePageMeta`. ##### 📦 Bundler module resolution With [#​24837](https://togithub.com/nuxt/nuxt/pull/24837), we are now opting in to the TypeScript `bundler` resolution which should more closely resemble the actual way that we resolve subpath imports for modules in Nuxt projects. 'Bundler' module resolution is [recommended by Vue](https://togithub.com/vuejs/tsconfig/blob/mainz/tsconfig.json#L24-L26) and [by Vite](https://vitejs.dev/guide/performance.html#reduce-resolve-operations), but unfortunately there are still many packages that do not have the correct entries in their `package.json`. As part of this, we opened 85 PRs across the ecosystem to test switching the default, and identified and fixed some issues. If you need to switch off this behaviour, you can do so. However, please consider raising an issue (feel free to tag me in it) in the library or module's repo so it can be resolved at source. ```ts export default defineNuxtConfig({ future: { typescriptBundlerResolution: false } }) ``` ##### ✅ Upgrading As usual, our recommendation for upgrading is to run: ```sh nuxi upgrade --force ``` This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem. \--> ##### 👉 Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.9.3...v3.10.0) ##### 🚀 Enhancements - **nuxt:** `tryUseNuxtApp` composable ([#​25031](https://togithub.com/nuxt/nuxt/pull/25031)) - **nuxt:** Add experimental sharedPrerenderData option ([#​24894](https://togithub.com/nuxt/nuxt/pull/24894)) - **schema:** Default to `bundler` module resolution ([#​24837](https://togithub.com/nuxt/nuxt/pull/24837)) - **nuxt:** Warn if data fetch composables are used wrongly ([#​25071](https://togithub.com/nuxt/nuxt/pull/25071)) - **nuxt:** Add `pages:routerOptions` hook ([#​24922](https://togithub.com/nuxt/nuxt/pull/24922)) - Experimental client-side Node.js compatibility ([#​25028](https://togithub.com/nuxt/nuxt/pull/25028)) - **nuxt:** Throw error if `setInterval` is used on server ([#​25259](https://togithub.com/nuxt/nuxt/pull/25259)) - **nuxt:** `refreshCookie` + experimental CookieStore support ([#​25198](https://togithub.com/nuxt/nuxt/pull/25198)) - **nuxt:** Allow controlling view transitions in page meta ([#​25264](https://togithub.com/nuxt/nuxt/pull/25264)) - **nuxt:** Slow down loading indicator when approaching 100% ([#​25119](https://togithub.com/nuxt/nuxt/pull/25119)) - **nuxt:** Experimentally extract route metadata at build time ([#​25210](https://togithub.com/nuxt/nuxt/pull/25210)) - **nuxt:** `useId` composable ([#​23368](https://togithub.com/nuxt/nuxt/pull/23368)) ##### 🔥 Performance - **vite:** Avoid `endsWith` when checking for whitespace ([#​24746](https://togithub.com/nuxt/nuxt/pull/24746)) ##### 🩹 Fixes - **nuxt:** Disable View Transitions if `prefers-reduced-motion` ([#​22292](https://togithub.com/nuxt/nuxt/pull/22292)) - **nuxt:** Add declaration file with correct node16 imports ([#​25266](https://togithub.com/nuxt/nuxt/pull/25266)) - **nuxt:** Allow omitting `fallback` in island response ([#​25296](https://togithub.com/nuxt/nuxt/pull/25296)) - **schema:** Remove `defineModel` option as it is now stable ([#​25306](https://togithub.com/nuxt/nuxt/pull/25306)) - **nuxt:** Overwrite island payload instead of merging ([#​25299](https://togithub.com/nuxt/nuxt/pull/25299)) - **vite:** Pass `hidden` sourcemap values to vite ([#​25329](https://togithub.com/nuxt/nuxt/pull/25329)) - **nuxt:** Use named import for lazy components ([#​25286](https://togithub.com/nuxt/nuxt/pull/25286)) - **nuxt:** Deprecate boolean values for `dedupe` ([#​25334](https://togithub.com/nuxt/nuxt/pull/25334)) - **nuxt:** Use default export for raw components ([#​25282](https://togithub.com/nuxt/nuxt/pull/25282)) - **nuxt:** Handle plugin dependencies with mixed load state ([#​25318](https://togithub.com/nuxt/nuxt/pull/25318)) - **nuxt:** Preserve `instance.attrs` in client-only components ([#​25381](https://togithub.com/nuxt/nuxt/pull/25381)) - **nuxt:** Stop tracking suspense when error hydrating page ([#​25389](https://togithub.com/nuxt/nuxt/pull/25389)) - **nuxt:** Add router.options files in definite order ([#​25397](https://togithub.com/nuxt/nuxt/pull/25397)) - **nuxt:** Do not rerun synchronous `callOnce` callbacks ([#​25431](https://togithub.com/nuxt/nuxt/pull/25431)) - **nuxt:** Remove dynamic `nuxt-client` within template code ([#​25464](https://togithub.com/nuxt/nuxt/pull/25464)) - **nuxt:** Add runtime check to filter plugins in `dependsOn` ([#​25409](https://togithub.com/nuxt/nuxt/pull/25409)) - **nuxt:** Improve global/payload error type with `NuxtError` ([#​25398](https://togithub.com/nuxt/nuxt/pull/25398)) - **vite:** Extract styles for shared chunks ([#​25455](https://togithub.com/nuxt/nuxt/pull/25455)) - **nuxt:** Avoid `vue-router` warning with routeRule redirect ([#​25391](https://togithub.com/nuxt/nuxt/pull/25391)) - **nuxt:** Improve return type of `useRequestEvent` ([#​25480](https://togithub.com/nuxt/nuxt/pull/25480)) - **nuxt:** Match nitro + nuxt `useRuntimeConfig` signatures ([#​25440](https://togithub.com/nuxt/nuxt/pull/25440)) - **nuxt:** Prevent initial scroll jump when loading page ([#​25483](https://togithub.com/nuxt/nuxt/pull/25483)) - **nuxt:** Prioritise later items in `pages:routerOptions` hook ([#​25509](https://togithub.com/nuxt/nuxt/pull/25509)) ##### 💅 Refactors - **nuxt:** Remove `currentRoute` non-ref warning ([#​25337](https://togithub.com/nuxt/nuxt/pull/25337)) ##### 📖 Documentation - Explain how to auto-install git layer deps ([#​24250](https://togithub.com/nuxt/nuxt/pull/24250)) - Fix eslint link ([87641c867](https://togithub.com/nuxt/nuxt/commit/87641c867)) - Fix typo ([#​25326](https://togithub.com/nuxt/nuxt/pull/25326)) - **nuxt:** Add `@since` annotations to exported composables ([#​25086](https://togithub.com/nuxt/nuxt/pull/25086)) - Add emphasis to `useAsyncData` explanation ([#​25392](https://togithub.com/nuxt/nuxt/pull/25392)) - Add separate docs page for `error.vue` ([#​25320](https://togithub.com/nuxt/nuxt/pull/25320)) - Add explanation about layout usage in `error.vue` ([#​25396](https://togithub.com/nuxt/nuxt/pull/25396)) - Use `.cjs` extension for `ecosystem.config` ([#​25459](https://togithub.com/nuxt/nuxt/pull/25459)) - Add fuller explanation in `routeRules` example of swr/isr ([#​25436](https://togithub.com/nuxt/nuxt/pull/25436)) - Warn that island client components don't support slots ([#​25454](https://togithub.com/nuxt/nuxt/pull/25454)) - Updated addPluginTemplate example to add filename property ([#​25468](https://togithub.com/nuxt/nuxt/pull/25468)) - Update link to vercel edge network overview ([e01fb7ac3](https://togithub.com/nuxt/nuxt/commit/e01fb7ac3)) - Remove unnecessary warning on `sharedPrerenderData` ([b0f50bec1](https://togithub.com/nuxt/nuxt/commit/b0f50bec1)) - Add more documentation for `pages:routerOptions` ([46b533671](https://togithub.com/nuxt/nuxt/commit/46b533671)) ##### 🏡 Chore - Fix typo in warning log ([#​25265](https://togithub.com/nuxt/nuxt/pull/25265)) - **nuxt:** Warn if `NuxtPage` is not used when pages enabled ([#​25490](https://togithub.com/nuxt/nuxt/pull/25490)) - Remove extra 'not' in warning message ([b96fe1ece](https://togithub.com/nuxt/nuxt/commit/b96fe1ece)) ##### ✅ Tests - **nuxt:** Add test for `data-island-uid` replacement ([#​25346](https://togithub.com/nuxt/nuxt/pull/25346)) - Remove miswritten test ([#​25347](https://togithub.com/nuxt/nuxt/pull/25347)) - Avoid explicit timeouts ([#​25395](https://togithub.com/nuxt/nuxt/pull/25395)) ##### 🤖 CI - Only release from main repo ([#​25354](https://togithub.com/nuxt/nuxt/pull/25354)) - Label pull request based on type in title ([#​25404](https://togithub.com/nuxt/nuxt/pull/25404)) - Wrap PR base label in quotes ([#​25432](https://togithub.com/nuxt/nuxt/pull/25432)) - Update extracting PR labels' names ([#​25437](https://togithub.com/nuxt/nuxt/pull/25437)) - Skip adding PR labels if there are none to add ([#​25475](https://togithub.com/nuxt/nuxt/pull/25475)) - Update changelog with github tags/handles of users ([60ab5deb0](https://togithub.com/nuxt/nuxt/commit/60ab5deb0)) - Import `$fetch` ([a1fb399eb](https://togithub.com/nuxt/nuxt/commit/a1fb399eb)) ##### ❤️ Contributors - Daniel Roe ([@​danielroe](https://togithub.com/danielroe)) - Якин Никита ([@​TakNePoidet](https://togithub.com/TakNePoidet)) - Nozomu Ikuta ([@​NozomuIkuta](https://togithub.com/NozomuIkuta)) - Ivan Kalachikov ([@​ivan-kalachikov](https://togithub.com/ivan-kalachikov)) - Horváth Bálint ([@​horvbalint](https://togithub.com/horvbalint)) - kevin olson ([@​acidjazz](https://togithub.com/acidjazz)) - Michael Brevard ([@​GalacticHypernova](https://togithub.com/GalacticHypernova)) - Enkot ([@​enkot](https://togithub.com/enkot)) - Damian Głowala ([@​DamianGlowala](https://togithub.com/DamianGlowala)) - Mostafa Said ([@​MooseSaeed](https://togithub.com/MooseSaeed)) - Julien Huang ([@​huang-julien](https://togithub.com/huang-julien)) - TroyanOlga ([@​TroyanOlga](https://togithub.com/TroyanOlga)) - Rivaland TAWOUAFO NGUTE ([@​caporalCode](https://togithub.com/caporalCode)) - Becem ([@​becem-gharbi](https://togithub.com/becem-gharbi)) - Shay ([@​shayr1](https://togithub.com/shayr1)) - hitochan777 ([@​hitochan777](https://togithub.com/hitochan777)) - Luke Nelson ([@​luc122c](https://togithub.com/luc122c)) - Alexander Lichter ([@​manniL](https://togithub.com/manniL)) - Sébastien Chopin ([@​Atinux](https://togithub.com/Atinux)) - Hriteek Bista ([@​hriteek](https://togithub.com/hriteek)) - Pooya Parsa ([@​pi0](https://togithub.com/pi0)) - Dominic Marcelino ([@​Dominic-Marcelino](https://togithub.com/Dominic-Marcelino)) - Luke Warlow ([@​lukewarlow](https://togithub.com/lukewarlow)) - Danila Rodichkin ([@​daniluk4000](https://togithub.com/daniluk4000)) ### [`v3.9.3`](https://togithub.com/nuxt/nuxt/releases/tag/v3.9.3) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.9.2...v3.9.3) > 3.9.3 is a hotfix release to address a regression with CSS in development ##### ✅ Upgrading As usual, our recommendation for upgrading is to run: ```sh nuxi upgrade --force ``` This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the vue and unjs ecosystems. ##### 👉 Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.9.2...v3.9.3) ##### 🩹 Fixes - **nuxt:** Render stylesheets in dev for non-islands ([#​25243](https://togithub.com/nuxt/nuxt/pull/25243)) - **nuxt:** Don't set 2x `data-island-uid` for island children ([#​25245](https://togithub.com/nuxt/nuxt/pull/25245)) - **nuxt:** Don't share object between raw cookie and cookie ref ([#​25255](https://togithub.com/nuxt/nuxt/pull/25255)) ##### 📖 Documentation - Corrects variable name used in comment ([#​25238](https://togithub.com/nuxt/nuxt/pull/25238)) - Deleted an extra character ([#​25248](https://togithub.com/nuxt/nuxt/pull/25248)) - Remove space before colon ([#​25251](https://togithub.com/nuxt/nuxt/pull/25251)) ##### ✅ Tests - Add separate suspense test suite ([#​22947](https://togithub.com/nuxt/nuxt/pull/22947)) ##### ❤️ Contributors - Danila Rodichkin ([@​daniluk4000](https://togithub.com/daniluk4000)) - Anthony Fu ([@​antfu](https://togithub.com/antfu)) - Julien Huang ([@​huang-julien](https://togithub.com/huang-julien)) - Mustafa60x ([@​mustafa60x](https://togithub.com/mustafa60x)) - Александр Дьяконов ([@​Holiden](https://togithub.com/Holiden)) - Flowern ([@​FlorianWerndl](https://togithub.com/FlorianWerndl)) - Daniel Roe ([@​danielroe](https://togithub.com/danielroe)) ### [`v3.9.2`](https://togithub.com/nuxt/nuxt/releases/tag/v3.9.2) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.9.1...v3.9.2) > 3.9.2 is a regularly scheduled patch release. ##### ✅ Upgrading As usual, our recommendation for upgrading is to run: ```sh nuxi upgrade --force ``` This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the vue and unjs ecosystems. ##### 👉 Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.9.1...v3.9.2) ##### 🔥 Performance - **nuxt:** Iterate rather than using `Object.fromEntries` ([#​24953](https://togithub.com/nuxt/nuxt/pull/24953)) ##### 🩹 Fixes - **nuxt:** Add missing script blocks before island transform ([#​25148](https://togithub.com/nuxt/nuxt/pull/25148)) - **kit:** Improve types for `options` in `addTemplate` ([#​25109](https://togithub.com/nuxt/nuxt/pull/25109)) - **nuxt:** Apply more import protections for nitro runtime ([#​25162](https://togithub.com/nuxt/nuxt/pull/25162)) - **nuxt:** Sort `pages/` files in `en-US` locale ([#​25195](https://togithub.com/nuxt/nuxt/pull/25195)) - **nuxt:** Check for layout after `nextTick` ([#​25197](https://togithub.com/nuxt/nuxt/pull/25197)) - **nuxt:** Set nitro log level to match nuxt options ([#​25213](https://togithub.com/nuxt/nuxt/pull/25213)) - **nuxt:** Await async payload revivers ([#​25222](https://togithub.com/nuxt/nuxt/pull/25222)) - **nuxt:** Render user-inserted links in island responses ([#​25219](https://togithub.com/nuxt/nuxt/pull/25219)) ##### 💅 Refactors - **nuxt:** Refactor island response + improve rendering ([#​25190](https://togithub.com/nuxt/nuxt/pull/25190)) - **nuxt:** Rename to `data-island-component` ([#​25232](https://togithub.com/nuxt/nuxt/pull/25232)) ##### 📖 Documentation - Correct nuxt image discussion link ([#​25090](https://togithub.com/nuxt/nuxt/pull/25090)) - Fix typo ([#​25100](https://togithub.com/nuxt/nuxt/pull/25100)) - Suggest using `` rather than `` ([#​25106](https://togithub.com/nuxt/nuxt/pull/25106)) - Fix typo ([#​25127](https://togithub.com/nuxt/nuxt/pull/25127)) - Add demo for view transitions api ([3c5ea3457](https://togithub.com/nuxt/nuxt/commit/3c5ea3457)) - Remove reference to `@nuxt/bridge-edge` ([3f09ddc31](https://togithub.com/nuxt/nuxt/commit/3f09ddc31)) - Remove bridge recommendation only relevant Vue <= 2.6.14 ([7bb90f587](https://togithub.com/nuxt/nuxt/commit/7bb90f587)) - Bump nuxt 2 version ([98fb2be07](https://togithub.com/nuxt/nuxt/commit/98fb2be07)) - Remove invalid nuxi aliases ([#​25209](https://togithub.com/nuxt/nuxt/pull/25209)) - Add `--log-level` description ([#​25211](https://togithub.com/nuxt/nuxt/pull/25211)) - Added `immediate: false` in the appropriate example ([#​25224](https://togithub.com/nuxt/nuxt/pull/25224)) - Mention `.global.vue` filename for global components ([#​25144](https://togithub.com/nuxt/nuxt/pull/25144)) - Clarify reactivity in composables directory ([#​23731](https://togithub.com/nuxt/nuxt/pull/23731)) - Remove `lagon` from deployment providers ([#​24955](https://togithub.com/nuxt/nuxt/pull/24955)) - Add eslint setup guide ([#​24976](https://togithub.com/nuxt/nuxt/pull/24976)) - Add information on custom path regexp in `definePageMeta` ([#​25073](https://togithub.com/nuxt/nuxt/pull/25073)) - Fix `addDevServerHandler` API ([#​25233](https://togithub.com/nuxt/nuxt/pull/25233)) - Mention installing `nuxi` for bridge ([637f5622d](https://togithub.com/nuxt/nuxt/commit/637f5622d)) ##### 🏡 Chore - Use `v3` branch sandbox in issue template ([#​25174](https://togithub.com/nuxt/nuxt/pull/25174)) ##### ❤️ Contributors - Daniel Roe ([@​danielroe](https://togithub.com/danielroe)) - Julien Huang ([@​huang-julien](https://togithub.com/huang-julien)) - Larry Williamson ([@​L422Y](https://togithub.com/L422Y)) - Chris Visser ([@​chris-visser](https://togithub.com/chris-visser)) - Maxime Pauvert ([@​maximepvrt](https://togithub.com/maximepvrt)) - Nils Wiesinger ([@​warflash](https://togithub.com/warflash)) - chris-basebone ([@​chris-basebone](https://togithub.com/chris-basebone)) - Alexander Lichter ([@​manniL](https://togithub.com/manniL)) - Bertil Johannes Ipsen ([@​bipsen](https://togithub.com/bipsen)) - Matej Černý ([@​CernyMatej](https://togithub.com/CernyMatej)) - kongmoumou ([@​kongmoumou](https://togithub.com/kongmoumou)) - Yi-Ru Lan ([@​awdr74100](https://togithub.com/awdr74100)) - Kiarttipum Charoenpojvajana ([@​44kia244](https://togithub.com/44kia244)) - Pooya Parsa ([@​pi0](https://togithub.com/pi0)) - Inesh Bose ([@​ineshbose](https://togithub.com/ineshbose)) - Sébastien Chopin ([@​Atinux](https://togithub.com/Atinux)) - Petar Nikolov ([@​petarvnikolov](https://togithub.com/petarvnikolov)) - Michael Brevard ([@​GalacticHypernova](https://togithub.com/GalacticHypernova)) - toto6038 ([@​toto6038](https://togithub.com/toto6038)) - gal-cernilogar ([@​gal-cernilogar](https://togithub.com/gal-cernilogar)) - Shoshana Connack ([@​moshetanzer](https://togithub.com/moshetanzer)) ### [`v3.9.1`](https://togithub.com/nuxt/nuxt/releases/tag/v3.9.1) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.9.0...v3.9.1) > 3.9.1 is a regularly scheduled patch release. ##### ✅ Upgrading As usual, our recommendation for upgrading is to run: ```sh nuxi upgrade --force ``` This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the vue and unjs ecosystems. ##### 👉 Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.9.0...v3.9.1) ##### 🔥 Performance - **nuxt:** Avoid multiple iterations in `useRequestHeaders` ([#​24853](https://togithub.com/nuxt/nuxt/pull/24853)) - **kit,schema,nuxt:** Refactor `startsWith` to array access ([#​24744](https://togithub.com/nuxt/nuxt/pull/24744)) - **nuxt:** Use single iteration when normalising routes ([#​24946](https://togithub.com/nuxt/nuxt/pull/24946)) - **nuxt:** Remove some line breaks when rendering html ([#​24888](https://togithub.com/nuxt/nuxt/pull/24888)) ##### 🩹 Fixes - **nuxt:** Catch error in `NuxtErrorBoundary` with `ssr: false` ([#​24896](https://togithub.com/nuxt/nuxt/pull/24896)) - **kit:** Show correct error when module can't be loaded ([#​24957](https://togithub.com/nuxt/nuxt/pull/24957)) - **nuxt:** Deeply watch island props ([#​24986](https://togithub.com/nuxt/nuxt/pull/24986)) - **nuxt:** Don't show transition on initial page load ([#​24935](https://togithub.com/nuxt/nuxt/pull/24935)) - **nuxt:** Clone cookie to detect changes within object ([#​25007](https://togithub.com/nuxt/nuxt/pull/25007)) - **nuxt:** Do not warn about missing layouts on error page ([#​25008](https://togithub.com/nuxt/nuxt/pull/25008)) - **nuxt:** Ignore plugins typed as `any` in inferred injections ([#​25010](https://togithub.com/nuxt/nuxt/pull/25010)) - **nuxt:** Reuse intermediate setup state in `` ([#​25009](https://togithub.com/nuxt/nuxt/pull/25009)) - **nuxt:** Skip scanning layout/middleware without name ([#​25015](https://togithub.com/nuxt/nuxt/pull/25015)) - **nuxt:** Wrap universal router `currentRoute` in `Ref` ([#​25026](https://togithub.com/nuxt/nuxt/pull/25026)) - **nuxt:** Stop loading indicator if page keys are the same ([#​24931](https://togithub.com/nuxt/nuxt/pull/24931)) ##### 💅 Refactors - **nuxt:** Remove old reference to `nuxt-config-schema` ([#​25067](https://togithub.com/nuxt/nuxt/pull/25067)) ##### 📖 Documentation - Switch `features`/`future` docs ([f5676fba5](https://togithub.com/nuxt/nuxt/commit/f5676fba5)) - Corrected json syntax in 7.esm.md ([#​24937](https://togithub.com/nuxt/nuxt/pull/24937)) - Specify yarn pnp opt-out for install ([#​24923](https://togithub.com/nuxt/nuxt/pull/24923)) - Capitalise hash for `vue-router` docs link ([#​24948](https://togithub.com/nuxt/nuxt/pull/24948)) - Add badge for callOnce utility ([792cf6713](https://togithub.com/nuxt/nuxt/commit/792cf6713)) - Warn about hydration issue with URL fragment ([#​24961](https://togithub.com/nuxt/nuxt/pull/24961)) - Mention `readValidatedBody` and `getValidatedQuery` ([#​24990](https://togithub.com/nuxt/nuxt/pull/24990)) - Add missing imports for nitro examples ([#​25003](https://togithub.com/nuxt/nuxt/pull/25003)) - Add an example of provide with object syntax plugins ([#​24993](https://togithub.com/nuxt/nuxt/pull/24993)) - Update EOL date for Nuxt 2 ([afbc4080b](https://togithub.com/nuxt/nuxt/commit/afbc4080b)) - Add callout for `getValidatedRouterParams` ([#​25057](https://togithub.com/nuxt/nuxt/pull/25057)) - Warn about ref unwrapping when providing refs from plugin ([#​25054](https://togithub.com/nuxt/nuxt/pull/25054)) ##### 🏡 Chore - Add bullet for adding tests in pr template ([2bda817ea](https://togithub.com/nuxt/nuxt/commit/2bda817ea)) ##### ✅ Tests - Add missing payload checks ([#​24899](https://togithub.com/nuxt/nuxt/pull/24899)) - Start listening for requests earlier ([#​24985](https://togithub.com/nuxt/nuxt/pull/24985)) ##### ❤️ Contributors - Pooya Parsa ([@​pi0](https://togithub.com/pi0)) - Julien Huang ([@​huang-julien](https://togithub.com/huang-julien)) - Michael Brevard ([@​GalacticHypernova](https://togithub.com/GalacticHypernova)) - Luke Nelson ([@​luc122c](https://togithub.com/luc122c)) - Alex Liu ([@​Mini-ghost](https://togithub.com/Mini-ghost)) - Daniel Roe ([@​danielroe](https://togithub.com/danielroe)) - Alireza Jahandideh ([@​Youhan](https://togithub.com/Youhan)) - Mateusz Kulpa ([@​mateuszkulpa](https://togithub.com/mateuszkulpa)) - Bernhard Berger ([@​bernhardberger](https://togithub.com/bernhardberger)) - Peter ([@​tada5hi](https://togithub.com/tada5hi)) - Sébastien Chopin ([@​Atinux](https://togithub.com/Atinux)) - heygsc ([@​heygsc](https://togithub.com/heygsc)) - Clément Ollivier ([@​clemcode](https://togithub.com/clemcode)) - Soheil Nazari ([@​s0h311](https://togithub.com/s0h311)) - Alexander Lichter ([@​manniL](https://togithub.com/manniL))

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



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

codecov[bot] commented 9 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Comparison is base (ae6d5c4) 86.74% compared to head (e3e0a87) 86.74%.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #112 +/- ## ======================================= Coverage 86.74% 86.74% ======================================= Files 3 3 Lines 83 83 Branches 10 10 ======================================= Hits 72 72 Misses 10 10 Partials 1 1 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.