PreMiD / Website

📂 All our website insides for free.
https://premid.app
Mozilla Public License 2.0
80 stars 40 forks source link

chore(deps): update dependency nuxt to v3 #1040

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
nuxt 2.15.8 -> 3.3.1 age adoption passing confidence

Release Notes

nuxt/nuxt ### [`v3.3.1`](https://togithub.com/nuxt/nuxt/releases/tag/v3.3.1) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.3.0...v3.3.1) > **3.3.0** is a minor (feature) release with lots of new features to play with. **3.3.1** was a swiftly following release to patch an issue with nuxi on Windows. #### 👀 Highlights ##### ✨ Local module development DX We've landed a raft of changes to enable local modules and improve DX. We now auto-scan your `~/modules` folder and register top level files there as modules in your project ([https://github.com/nuxt/nuxt/pull/19394](https://togithub.com/nuxt/nuxt/pull/19394)). When these files are changed, we'll automatically restart the nuxt server. ```diff export default defineNuxtConfig({ modules: [ '@​nuxtjs/tailwindcss', - '~/modules/purge-comments' ] }) ``` We also now expose `nuxt/kit` for easy access to kit composables in your local project without having to install `@nuxt/kit` ([https://github.com/nuxt/nuxt/pull/19422](https://togithub.com/nuxt/nuxt/pull/19422)). ##### ♻️ Restarting Nuxt You can add files to the `watch` array to automatically restart the server ([https://github.com/nuxt/nuxt/pull/19530](https://togithub.com/nuxt/nuxt/pull/19530)). This is likely to be particularly useful for module authors. You can also trigger a restart of the Nuxt server with the new `restart` hook ([https://github.com/nuxt/nuxt/pull/19084](https://togithub.com/nuxt/nuxt/pull/19084)). We also landed a couple of fixes on restarting the Nuxt server which should improve your experience when developing. ##### 🔥 Performance improvements We've increased static asset maxAge to 1yr as a matter of best practice ([https://github.com/nuxt/nuxt/pull/19335](https://togithub.com/nuxt/nuxt/pull/19335)), and support tree-shaking more of your build ([https://github.com/nuxt/nuxt/pull/19508](https://togithub.com/nuxt/nuxt/pull/19508)). We also now support preloading ``s with a route in object-syntax ([https://github.com/nuxt/nuxt/pull/19120](https://togithub.com/nuxt/nuxt/pull/19120)). ![CleanShot 2023-03-14 at 12 19 50](https://user-images.githubusercontent.com/28706372/224999169-6c047cca-9a5c-4637-8e4d-be6268964e08.png) We also track how long it takes each module you use to perform its setup, and warn if it takes too long. You can see all these values by running your dev server with `DEBUG=1` You can also opt-in to some of Nuxt's internal optimisations by configuring composables to be treeshaken in a particular environment ([https://github.com/nuxt/nuxt/pull/19383](https://togithub.com/nuxt/nuxt/pull/19383)), or to have magic keys automatically injected ([https://github.com/nuxt/nuxt/pull/19490](https://togithub.com/nuxt/nuxt/pull/19490)) - primarily useful for module authors. ##### 🐛 Error handling We now handle chunk errors by default ([https://github.com/nuxt/nuxt/pull/19086](https://togithub.com/nuxt/nuxt/pull/19086)), meaning if your site updates with a redeploy, we automatically handle reloading it on navigation. You can disable this and handle it yourself with the new `reloadNuxtApp` composable. You can also set `experimental.restoreState` to preserve some of your app state across reloads. We also have a new experimental error handling component: `` ([https://github.com/nuxt/framework/pull/8216](https://togithub.com/nuxt/framework/pull/8216)) which can capture errors rendering on server, replace them with fallback content, and granularly trigger rerendering the part with an error on the client. This can be enabled with `experimental.clientFallback` - feedback very welcome! ##### ⚡️ Head improvements We've migrated to use `unhead` directly ([https://github.com/nuxt/nuxt/pull/19519](https://togithub.com/nuxt/nuxt/pull/19519)) - and automatically tree-shake server-only head composables like `useServerHead` from your client build ([https://github.com/nuxt/nuxt/pull/19576](https://togithub.com/nuxt/nuxt/pull/19576)), meaning you can have great SEO without needing to include meta tag logic that's relevant only for crawlers in your client build. There's also a new `useHeadSafe` composable that handles santising untrusted user input ([https://github.com/nuxt/nuxt/pull/19548](https://togithub.com/nuxt/nuxt/pull/19548)). ##### 🪵 Better logging in browser DevTools Working with the Chrome DevTools team, we've landed a couple of features across the unjs + Nuxt ecosystem meaning we now have first-class support for hiding Nuxt internal stack traces from logs in your (Chromium-based, for now) browser ([https://github.com/nuxt/nuxt/pull/19243](https://togithub.com/nuxt/nuxt/pull/19243)). We also landed a couple of improvements with stacktraces involving Nuxt hooks ([https://github.com/unjs/hookable/pull/69](https://togithub.com/unjs/hookable/pull/69) and [https://github.com/unjs/hookable/pull/68](https://togithub.com/unjs/hookable/pull/68)) implementing [`console.createTask`](https://developer.chrome.com/blog/devtools-modern-web-debugging/#linked-stack-traces). | Before | After | | - | - | | ![CleanShot 2023-03-14 at 11 55 00](https://user-images.githubusercontent.com/28706372/224993399-7ba03771-1276-49f2-885e-b247985a1556.png) | ![CleanShot 2023-03-14 at 11 52 27](https://user-images.githubusercontent.com/28706372/224992868-185eff4a-b48b-4532-9362-415d7fa8b40e.png) | ##### 💪 Type improvements Types for server API routes are now more correct - with non-serialisable types stripped out of the return type ([https://github.com/unjs/nitro/pull/1002](https://togithub.com/unjs/nitro/pull/1002)). We also now type more of `NuxtApp` and correctly type unknown injections for greater type-safety ([https://github.com/nuxt/nuxt/pull/19643](https://togithub.com/nuxt/nuxt/pull/19643)). ![CleanShot 2023-03-14 at 11 59 58](https://user-images.githubusercontent.com/28706372/224994569-f5e815f7-33c1-4392-bc2c-59df3224e611.png) And if you were struggling with correct types when using `transform` + `default` with Nuxt data fetching composables, fear no more - we now infer the types correctly ([https://github.com/nuxt/nuxt/pull/19487](https://togithub.com/nuxt/nuxt/pull/19487)). ##### ⚗️ Nitro enhancements This release comes with Nitro v2.3, which brings lots of improvements of its own. Check out [the release](https://togithub.com/unjs/nitro/releases/tag/v2.3.0) for more info. We now support `useAppConfig` in nitro server routes ([https://github.com/nuxt/nuxt/pull/19489](https://togithub.com/nuxt/nuxt/pull/19489)) - a long-awaited change. Now `useAppConfig` is consistently available throughout your app for non-runtime configuration from layers, modules, etc. We've also added a `nitro:build:public-assets` hook to allow modifying assets output from nitro's prerender/build phase ([https://github.com/nuxt/nuxt/pull/19638](https://togithub.com/nuxt/nuxt/pull/19638)). ##### 🛠️ Build changes As part of moving towards [first-class support for PNP and pnpm support without `--shamefully-hoist`](https://togithub.com/nuxt/nuxt/issues/14146), we've dropped support for some internal (deprecated) utilities using CJS resolve patterns ([https://github.com/nuxt/nuxt/pull/19537](https://togithub.com/nuxt/nuxt/pull/19537), [https://github.com/nuxt/nuxt/pull/19608](https://togithub.com/nuxt/nuxt/pull/19608)). We also now resolve dependencies like `nuxt`, `@nuxt/kit` and more using ESM search-paths. We'll be keeping a close eye on this. We're also preparing the groundwork for support of new TypeScript Node16 module resolution ([https://github.com/nuxt/nuxt/issues/19606](https://togithub.com/nuxt/nuxt/issues/19606)), and as part of this have changed the format of our runtime output (using `.js` instead of `.mjs` extensions, providing `types` fields for subpath exports, and more). ##### 🗺️ Custom config schema (advanced) We've been testing out an experimental feature to allow modules and users to extend the Nuxt config schema ([https://github.com/nuxt/nuxt/issues/15592](https://togithub.com/nuxt/nuxt/issues/15592)), and we've now enabled this by default ([https://github.com/nuxt/nuxt/pull/19172](https://togithub.com/nuxt/nuxt/pull/19172)). We expect this will be particularly useful for module and layer/theme authors, and should result in some nicer DX for their users. #### Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.2.3...v3.3.0) ##### 🚀 Enhancements - **nuxi:** Enforce consistent casing in filenames ([#​19088](https://togithub.com/nuxt/nuxt/pull/19088)) - **nuxi:** Reload nuxt when `restart` hook is called ([#​19084](https://togithub.com/nuxt/nuxt/pull/19084)) - **nuxt:** Scan composables with star export ([#​19249](https://togithub.com/nuxt/nuxt/pull/19249)) - **nuxt:** Add `versions` to runtime nuxtApp ([#​19064](https://togithub.com/nuxt/nuxt/pull/19064)) - **vite:** Add `node_modules` and buildDir to `x_google_ignoreList` ([#​19243](https://togithub.com/nuxt/nuxt/pull/19243)) - **nuxi:** Cli wrapper for self restart ([#​18641](https://togithub.com/nuxt/nuxt/pull/18641)) - **schema:** Allow adding page routes without a matching file ([#​19173](https://togithub.com/nuxt/nuxt/pull/19173)) - **nuxt:** Add support for `nuxt/kit` subpath for local use ([#​19422](https://togithub.com/nuxt/nuxt/pull/19422)) - **nuxt:** Auto-register modules in `~/modules` ([#​19394](https://togithub.com/nuxt/nuxt/pull/19394)) - **nuxt:** Enable config schema by default ([#​19172](https://togithub.com/nuxt/nuxt/pull/19172)) - **kit,nuxt:** Add component `priority` to allow overriding ([#​19252](https://togithub.com/nuxt/nuxt/pull/19252)) - **nuxt:** Enable preloading object-syntax routes ([#​19120](https://togithub.com/nuxt/nuxt/pull/19120)) - **nuxt:** Support `trailingSlashBehavior` in `defineNuxtLink` ([#​19458](https://togithub.com/nuxt/nuxt/pull/19458)) - **nuxt:** Allow configuring treeshakeable composables ([#​19383](https://togithub.com/nuxt/nuxt/pull/19383)) - **nuxi,schema:** Add support for setting nuxt `logLevel` ([#​19369](https://togithub.com/nuxt/nuxt/pull/19369)) - **nuxt:** Support custom keyed composables ([#​19490](https://togithub.com/nuxt/nuxt/pull/19490)) - **nuxi:** Programmatically pass nuxt config overrides (to dev) ([#​19371](https://togithub.com/nuxt/nuxt/pull/19371)) - **vite:** Use custom logger to show vite logs ([#​19523](https://togithub.com/nuxt/nuxt/pull/19523)) - **nuxt:** Enable chunk error handling by default ([#​19086](https://togithub.com/nuxt/nuxt/pull/19086)) - **nuxt:** Add `` component ([#​8216](https://togithub.com/nuxt/nuxt/pull/8216)) - **nuxt:** Add `watch` option and refactor dev server restarting ([#​19530](https://togithub.com/nuxt/nuxt/pull/19530)) - **nuxt:** Add `useHeadSafe` and remove layer around head imports ([#​19548](https://togithub.com/nuxt/nuxt/pull/19548)) - **kit, schema:** Measure module setup timings ([#​18648](https://togithub.com/nuxt/nuxt/pull/18648)) - **nuxt:** Support app config for server routes ([#​19489](https://togithub.com/nuxt/nuxt/pull/19489)) - **nuxt:** Add `nitro:build:public-assets` hook ([#​19638](https://togithub.com/nuxt/nuxt/pull/19638)) ##### 🔥 Performance - **nuxt:** Increase static asset maxAge to 1yr ([#​19335](https://togithub.com/nuxt/nuxt/pull/19335)) - **vite:** Mark more core functions as side-effect free ([#​19508](https://togithub.com/nuxt/nuxt/pull/19508)) - **nuxt:** Drop `@vueuse/head` dependency ([#​19519](https://togithub.com/nuxt/nuxt/pull/19519)) - **nuxt:** Tree-shake server composables + prefer server head ([#​19576](https://togithub.com/nuxt/nuxt/pull/19576)) ##### 🩹 Fixes - **nuxt:** Clear loading indicator on unmount ([#​19340](https://togithub.com/nuxt/nuxt/pull/19340)) - **nuxt:** Deprecate scanning directory index plugins ([#​18418](https://togithub.com/nuxt/nuxt/pull/18418)) - **nuxt:** Prevent fallthrough attributes on custom `NuxtLink` ([#​19379](https://togithub.com/nuxt/nuxt/pull/19379)) - **schema:** Update vite `import.meta` types ([#​19338](https://togithub.com/nuxt/nuxt/pull/19338)) - **vite:** Omit `/` from `sourcemapIgnoreList` for windows support ([73ade185b](https://togithub.com/nuxt/nuxt/commit/73ade185b)) - **nuxt:** Pass transform options to component loader plugin ([#​19414](https://togithub.com/nuxt/nuxt/pull/19414)) - **nuxi:** Avoid top-level await in wrapper ([44068420d](https://togithub.com/nuxt/nuxt/commit/44068420d)) - **nuxt:** Add `kit.*` files to published package ([#​19430](https://togithub.com/nuxt/nuxt/pull/19430)) - **nuxt:** Don't print layout warning if page is not ssr ([#​19434](https://togithub.com/nuxt/nuxt/pull/19434)) - **kit:** Match commit hashes of other lengths ([#​19450](https://togithub.com/nuxt/nuxt/pull/19450)) - **nuxi:** Handle different kind of shutdown signals ([#​19485](https://togithub.com/nuxt/nuxt/pull/19485)) - **nuxt:** Exclude nitro output dir from type checking ([#​19532](https://togithub.com/nuxt/nuxt/pull/19532)) - **vite:** Allow disabling clear screen behaviour ([#​19531](https://togithub.com/nuxt/nuxt/pull/19531)) - **nuxt:** Only log boot errors on client-side ([#​19553](https://togithub.com/nuxt/nuxt/pull/19553)) - **nuxt:** Dedupe payload cache by payload url ([#​19563](https://togithub.com/nuxt/nuxt/pull/19563)) - **nuxt:** Provide node16-style type exports ([#​18431](https://togithub.com/nuxt/nuxt/pull/18431)) - **nuxt:** Avoid injecting adhoc modules in schema ([#​19607](https://togithub.com/nuxt/nuxt/pull/19607)) - **nuxt:** Improve types for data fetching with `transform` ([#​19487](https://togithub.com/nuxt/nuxt/pull/19487)) - **nuxi:** Resolve kit from nuxt modules dir ([#​19601](https://togithub.com/nuxt/nuxt/pull/19601)) - **nuxt,schema:** Merge custom and resolved app configs ([#​19602](https://togithub.com/nuxt/nuxt/pull/19602)) - **nuxt:** Resolve builder using esm syntax ([#​19608](https://togithub.com/nuxt/nuxt/pull/19608)) - **nuxt:** Exclude `boolean` from inline module definitions ([#​19621](https://togithub.com/nuxt/nuxt/pull/19621)) - **schema:** Show `payloadExtraction` warning only when unset ([#​18516](https://togithub.com/nuxt/nuxt/pull/18516)) - **nuxt:** Mark non-augmented NuxtApp properties as unknown ([#​19643](https://togithub.com/nuxt/nuxt/pull/19643)) - **nuxt:** Fix default injection type for plugins ([#​19669](https://togithub.com/nuxt/nuxt/pull/19669)) ##### 💅 Refactors - **nuxi:** Hard restart with communication channel ([#​19423](https://togithub.com/nuxt/nuxt/pull/19423)) - **kit,nuxi:** Resolve module paths using node algorithm ([#​19537](https://togithub.com/nuxt/nuxt/pull/19537)) - **nuxt:** Let mlly handle search paths ([#​19635](https://togithub.com/nuxt/nuxt/pull/19635)) ##### 📖 Documentation - Use consistent indentation in examples ([#​19342](https://togithub.com/nuxt/nuxt/pull/19342)) - Update esm link ([c35104c76](https://togithub.com/nuxt/nuxt/commit/c35104c76)) - Add frontmatter note for docs readme to remove from live preview ([008426cd3](https://togithub.com/nuxt/nuxt/commit/008426cd3)) - Add edge banners on `versions` and modules ([#​19448](https://togithub.com/nuxt/nuxt/pull/19448)) - Add local modules ordering ([5977adb4d](https://togithub.com/nuxt/nuxt/commit/5977adb4d)) - Fix link to nitro `routeRules` ([#​19455](https://togithub.com/nuxt/nuxt/pull/19455)) - Fix dead link to useSeoMeta guide ([#​19463](https://togithub.com/nuxt/nuxt/pull/19463)) - Update `devServer.https` example ([#​19486](https://togithub.com/nuxt/nuxt/pull/19486)) - Add info `~/server/utils` directory in `~/utils` page ([#​19500](https://togithub.com/nuxt/nuxt/pull/19500)) - Update `addComponent` jsdoc comment ([#​19503](https://togithub.com/nuxt/nuxt/pull/19503)) - Update cli docs for `--log-level` ([06b9233b1](https://togithub.com/nuxt/nuxt/commit/06b9233b1)) - Update pr template to include jsdoc annotations ([#​19511](https://togithub.com/nuxt/nuxt/pull/19511)) - Add new release cycle info ([#​19509](https://togithub.com/nuxt/nuxt/pull/19509)) - Fix local modules ([c4222b1f6](https://togithub.com/nuxt/nuxt/commit/c4222b1f6)) - Update nitro plugins url ([#​19547](https://togithub.com/nuxt/nuxt/pull/19547)) - Ui components - pinceau migration ([#​19533](https://togithub.com/nuxt/nuxt/pull/19533)) - Update $fetch documentation ([#​19356](https://togithub.com/nuxt/nuxt/pull/19356)) - Move prerequisites into a summary ([e0cb950f0](https://togithub.com/nuxt/nuxt/commit/e0cb950f0)) - Remove note since already in code block for pnpm ([d67a873c4](https://togithub.com/nuxt/nuxt/commit/d67a873c4)) - Add nuxt 2 to nuxt 3 workshop ([2905282de](https://togithub.com/nuxt/nuxt/commit/2905282de)) - Update various nitro links ([#​19562](https://togithub.com/nuxt/nuxt/pull/19562)) - Use consistent page name in example ([#​19583](https://togithub.com/nuxt/nuxt/pull/19583)) - Add missing backquotes ([#​19590](https://togithub.com/nuxt/nuxt/pull/19590)) - Remove reference to beta/rc/coming soon ([4ad5c959e](https://togithub.com/nuxt/nuxt/commit/4ad5c959e)) - Warn about modules with side-effects ([#​19592](https://togithub.com/nuxt/nuxt/pull/19592)) - Mention config file name before code block ([#​19634](https://togithub.com/nuxt/nuxt/pull/19634)) ##### 🏡 Chore - Bump edge version based on commits ([#​19397](https://togithub.com/nuxt/nuxt/pull/19397)) - Add branch to edge release script ([171288586](https://togithub.com/nuxt/nuxt/commit/171288586)) - Add chore to type of change in pr template ([#​19420](https://togithub.com/nuxt/nuxt/pull/19420)) - Mark `@nuxt/test-utils` package as external group ([#​19419](https://togithub.com/nuxt/nuxt/pull/19419)) - Restrict commit hash strings to 8 chars ([abcd27ae0](https://togithub.com/nuxt/nuxt/commit/abcd27ae0)) - **deps:** ⚠️ Update dependency fork-ts-checker-webpack-plugin to v8 (main) ([#​19468](https://togithub.com/nuxt/nuxt/pull/19468)) - Force minor bumps at most ([0b82f6751](https://togithub.com/nuxt/nuxt/commit/0b82f6751)) - **nuxt:** Update to new `hasProtocol` options format ([#​19555](https://togithub.com/nuxt/nuxt/pull/19555)) - Improve internal type safety ([#​19599](https://togithub.com/nuxt/nuxt/pull/19599)) - Refresh lockfile ([#​19653](https://togithub.com/nuxt/nuxt/pull/19653)) - Constrain nitro to minor version ([88a5f38de](https://togithub.com/nuxt/nuxt/commit/88a5f38de)) - Bump package versions ([615750614](https://togithub.com/nuxt/nuxt/commit/615750614)) ##### ✅ Tests - Close pages after use ([#​19558](https://togithub.com/nuxt/nuxt/pull/19558)) ##### 🤖 CI - Limit nuxt2 nightly build to nuxt org ([#​19352](https://togithub.com/nuxt/nuxt/pull/19352)) - Fetch git history ([e11d55a49](https://togithub.com/nuxt/nuxt/commit/e11d55a49)) - Lint workflows ([#​19556](https://togithub.com/nuxt/nuxt/pull/19556)) - Move typecheck to build step ([99cda4f38](https://togithub.com/nuxt/nuxt/commit/99cda4f38)) - Stub before typecheck ([f92fedc8e](https://togithub.com/nuxt/nuxt/commit/f92fedc8e)) - Rename step ([34875bc0e](https://togithub.com/nuxt/nuxt/commit/34875bc0e)) ##### ⚠️ Breaking Changes - **deps:** ⚠️ Update dependency fork-ts-checker-webpack-plugin to v8 (main) ([#​19468](https://togithub.com/nuxt/nuxt/pull/19468)) ##### ❤️ Contributors - Daniel Roe - Pooya Parsa - Joff Tiquez ([@​jofftiquez](http://github.com/jofftiquez)) - Hyunseung Lee ([@​hslee2008](http://github.com/hslee2008)) - Xin Du (Clark) - Julien Huang - Harlan Wilton ([@​harlan-zw](http://github.com/harlan-zw)) - Lei ([@​oizhaolei](http://github.com/oizhaolei)) - 江麻妞 - Sébastien Chopin ([@​Atinux](http://github.com/Atinux)) - Özüm Eldoğan ([@​ozum](http://github.com/ozum)) - Florent Delerue - S96EA - Mehmet ([@​productdevbook](https://togithub.com/productdevbook)) - Anthony Fu - Sebastian Landwehr ([@​dword-design](http://github.com/dword-design)) - Clément Ollivier ([@​clemcode](http://github.com/clemcode)) - Jakub Andrzejewski ([@​Baroshem](https://togithub.com/Baroshem)) - Paulius Varna - Alex Korytskyi ([@​alex-key](http://github.com/alex-key)) - Samuel DIDIER-LAURENT - Alex Liu ([@​Mini-ghost](http://github.com/Mini-ghost)) - Alexander Lichter ([@​manniL](http://github.com/manniL)) - Horu - Ivan - Stefan - Lucie - Inesh Bose - Mahdi Shah Abbasian ([@​shahabbasian](http://github.com/shahabbasian)) ### [`v3.3.0`](https://togithub.com/nuxt/nuxt/compare/v3.2.3...v3.3.0) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.2.3...v3.3.0) ### [`v3.2.3`](https://togithub.com/nuxt/nuxt/releases/tag/v3.2.3) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.2.2...v3.2.3) > **3.2.3** is a patch release with bug fixes and performance improvements. #### 👉 Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.2.2...v3.2.3) ##### 🔥 Performance - **nuxt:** Don't update manifest in dev mode ([#​19315](https://togithub.com/nuxt/nuxt/pull/19315)) ##### 🩹 Fixes - **cli:** Restart nuxt when `distDir` is unlinked ([#​19131](https://togithub.com/nuxt/nuxt/pull/19131)) - **vite:** Normalize path emitted by vite watcher ([#​19179](https://togithub.com/nuxt/nuxt/pull/19179)) - **nuxt:** Prefetch object-syntax routes with `` ([#​19144](https://togithub.com/nuxt/nuxt/pull/19144)) - **webpack:** Use default export from webpack ([#​19166](https://togithub.com/nuxt/nuxt/pull/19166)) - **nuxt:** Preserve (re)named imports in meta ([#​19192](https://togithub.com/nuxt/nuxt/pull/19192)) - **nuxt:** Log errors thrown when booting the nuxt app ([#​19187](https://togithub.com/nuxt/nuxt/pull/19187)) - **nuxt:** Preserve explicit `rel` attribute on internal link ([#​19309](https://togithub.com/nuxt/nuxt/pull/19309)) - **nuxt:** Compatible route object for custom external routes ([#​19261](https://togithub.com/nuxt/nuxt/pull/19261)) - **vite:** Handle non-iterable `noExternal` option ([#​19256](https://togithub.com/nuxt/nuxt/pull/19256)) ##### 📖 Documentation - Fix components path ([#​19163](https://togithub.com/nuxt/nuxt/pull/19163)) - **pages:** Add example of limiting scanned routes ([#​19181](https://togithub.com/nuxt/nuxt/pull/19181)) - Update link ([#​19197](https://togithub.com/nuxt/nuxt/pull/19197)) - Clarify that app config is not available (yet) in nitro ([#​19200](https://togithub.com/nuxt/nuxt/pull/19200)) - Improved going further modules documentation ([#​19219](https://togithub.com/nuxt/nuxt/pull/19219)) - Add docs badge ([3c006b33c](https://togithub.com/nuxt/nuxt/commit/3c006b33c)) ##### 🏡 Chore - Bump package versions ([82cf19d6b](https://togithub.com/nuxt/nuxt/commit/82cf19d6b)) ##### 🤖 CI - Reduce artifact retention days ([b3ce9566a](https://togithub.com/nuxt/nuxt/commit/b3ce9566a)) ##### ❤️ Contributors - Daniel Roe - Igayamaguchi - Sébastien Chopin ([@​Atinux](http://github.com/Atinux)) - Rafael Magalhaes ([@​rafaelmagalhaes](http://github.com/rafaelmagalhaes)) - ML ([@​ijkml](http://github.com/ijkml)) - Clément Ollivier ([@​clemcode](http://github.com/clemcode)) - Joel Wenzel - Alex Liu ([@​Mini-ghost](http://github.com/Mini-ghost)) - Anthony Fu - Julien Huang - Usagizmo ### [`v3.2.2`](https://togithub.com/nuxt/nuxt/releases/tag/v3.2.2) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.2.1...v3.2.2) > **3.2.1** is a patch release with (lots of) bug fixes and performance improvements since last week's minor release. > **3.2.2** was a swiftly following release to patch an issue with `nuxi init` ##### 👀 Highlights As a patch release, there are mostly bug fixes and performance improvements in the changelog. (Nevertheless, it's always worth reading through!) But one point of note is an experimental reload strategy when chunk errors are encountered. We're hoping to finalise the API and land it in v3.3 (our next feature release) with [https://github.com/nuxt/nuxt/pull/19086](https://togithub.com/nuxt/nuxt/pull/19086), but you can test out an experimental version with the following config: ```ts export default defineNuxtConfig({ experimental: { emitRouteChunkError: 'reload' } }) ``` With this strategy, your app will hard reload on route changes if there's a chunk error. More info at [https://github.com/nuxt/nuxt/pull/19038](https://togithub.com/nuxt/nuxt/pull/19038). ##### 👉 Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.2.0...v3.2.1) ##### 🚀 Enhancements - **nuxt:** Add experimental `app:chunkError` hook and reload strategy ([#​19038](https://togithub.com/nuxt/nuxt/pull/19038)) ##### 🔥 Performance - **nuxt:** Allow tree-shaking empty meta from build ([#​19032](https://togithub.com/nuxt/nuxt/pull/19032)) - **nuxt:** Animate transform rather than width ([#​19073](https://togithub.com/nuxt/nuxt/pull/19073)) - **nuxt:** Don't include side-effects from `#components` ([#​19008](https://togithub.com/nuxt/nuxt/pull/19008)) ##### 🩹 Fixes - **schema:** Allow type inference of arrays in runtime config ([#​18931](https://togithub.com/nuxt/nuxt/pull/18931)) - **nuxt:** Avoid recursive import in nitro renderer ([#​18948](https://togithub.com/nuxt/nuxt/pull/18948)) - **nuxt:** Expose `nuxt/schema` subpath for augmentation ([#​18922](https://togithub.com/nuxt/nuxt/pull/18922)) - **nitro:** Ensure ssr error `statusCode` is a number ([#​19001](https://togithub.com/nuxt/nuxt/pull/19001)) - **nuxt:** Prevent hyphens forming child routes & warn if dupes are detected ([#​18944](https://togithub.com/nuxt/nuxt/pull/18944)) - **schema:** Transpile `nuxt/app` by default ([#​19009](https://togithub.com/nuxt/nuxt/pull/19009)) - **vite:** Exclude `nuxt/app` from optimised deps ([9e789c76c](https://togithub.com/nuxt/nuxt/commit/9e789c76c)) - **vite:** Respect `isCustomElement` config for jsx transform ([#​19053](https://togithub.com/nuxt/nuxt/pull/19053)) - **nuxt:** Use parser to treeshake client-only declarations ([#​18951](https://togithub.com/nuxt/nuxt/pull/18951)) - **cli:** Pass through exit code from test errors ([#​18959](https://togithub.com/nuxt/nuxt/pull/18959)) - **nuxt:** Show client error if no page matches after validate fails ([#​18978](https://togithub.com/nuxt/nuxt/pull/18978)) - **cli:** Read `devServer` options from nuxt config ([#​19055](https://togithub.com/nuxt/nuxt/pull/19055)) - **nuxt:** Validate no `//` in path when constructing payload url ([#​19085](https://togithub.com/nuxt/nuxt/pull/19085)) - **nuxt:** Restore previous check on payload url ([e9ff34ace](https://togithub.com/nuxt/nuxt/commit/e9ff34ace)) - **nuxt:** Test generated pathname ([af55b9882](https://togithub.com/nuxt/nuxt/commit/af55b9882)) - **nuxt:** Respect redirects which differ only by trailing slash ([#​18593](https://togithub.com/nuxt/nuxt/pull/18593)) - **nuxt:** Pass nuxt + workspace paths when importing builder ([#​19099](https://togithub.com/nuxt/nuxt/pull/19099)) ##### 💅 Refactors - **nuxt:** Combine imports from same relative path ([ee2f568fc](https://togithub.com/nuxt/nuxt/commit/ee2f568fc)) ##### 📖 Documentation - Add info for `nuxi devtools` command ([#​18888](https://togithub.com/nuxt/nuxt/pull/18888)) - Update link to bridge repo ([#​18950](https://togithub.com/nuxt/nuxt/pull/18950)) - Fix typos ([#​18976](https://togithub.com/nuxt/nuxt/pull/18976)) - Fix typo ([#​18975](https://togithub.com/nuxt/nuxt/pull/18975)) - Fix link to ESM page ([#​19000](https://togithub.com/nuxt/nuxt/pull/19000)) - Fix spacing ([#​19018](https://togithub.com/nuxt/nuxt/pull/19018)) - Flatten top-level project in layers example ([#​18967](https://togithub.com/nuxt/nuxt/pull/18967)) - Remove reference to obsolete `static` property ([80f73d39c](https://togithub.com/nuxt/nuxt/commit/80f73d39c)) - Add note about nested directory order ([#​19061](https://togithub.com/nuxt/nuxt/pull/19061)) - Updated public directory explanation ([#​18464](https://togithub.com/nuxt/nuxt/pull/18464)) - Add information on when mw runs & how to skip ([#​19083](https://togithub.com/nuxt/nuxt/pull/19083)) - Add `sendRedirect` usage ([#​19070](https://togithub.com/nuxt/nuxt/pull/19070)) ##### 📦 Build - **nuxt:** Add `nuxt/schema` to externals ([e3e768873](https://togithub.com/nuxt/nuxt/commit/e3e768873)) - Add `nuxt` to nuxt externals ([b1b908b1e](https://togithub.com/nuxt/nuxt/commit/b1b908b1e)) ##### 🏡 Chore - Increase node 14 minor version constraint ([#​19111](https://togithub.com/nuxt/nuxt/pull/19111)) - Update nitropack and unjs dependencies ([#​19100](https://togithub.com/nuxt/nuxt/pull/19100)) - Dedupe rollup ([576ce9ee3](https://togithub.com/nuxt/nuxt/commit/576ce9ee3)) ##### ✅ Tests - Skip vnode warning on windows dev mode ([71bcd9550](https://togithub.com/nuxt/nuxt/commit/71bcd9550)) ##### 🤖 CI - Run webpack/vite and dev/prod as matrices ([#​18905](https://togithub.com/nuxt/nuxt/pull/18905)) ##### ❤️ Contributors - Daniel Roe - Pooya Parsa - Mathieu Magalhaes - Yuyin - Hamish Claxton - Nathan Chase - Alex - Julien Huang - Nick Williams - Favour Felix Chinemerem - Alois Sečkár - Florent Delerue - Xin Du (Clark) - Tim Van Den Eijnden - Benjamin Flesch - Lioness100 - Felix ### [`v3.2.1`](https://togithub.com/nuxt/nuxt/compare/v3.2.0...v3.2.1) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.2.0...v3.2.1) ### [`v3.2.0`](https://togithub.com/nuxt/nuxt/releases/tag/v3.2.0) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.1.2...v3.2.0) > **3.2.0** is the first minor release since we've started our new release schedule. We've brought it forward by a couple of weeks to include some goodies we want you to be able to play with soon. ##### 👀 Highlights - ⚡️ **Nuxt DevTools** > You can opt-in to Nuxt DevTools per-project by going to the project root and running: > > ```bash > npx nuxi@latest devtools enable > ``` > > Restart your Nuxt server and open your app in browser. Click the Nuxt icon on the bottom (or press `Alt+D`) to toggle the DevTools. More information in the [docs](https://togithub.com/nuxt/devtools)! - ✨ **Better DX for overriding** `runtimeConfig`, including inline type helpers

- 🪄 **Automatically inferred return type** for `useFetch` and `$fetch` based on method. > It'll be a type error to use the wrong method when hitting an endpoint. > > Plus, if you have multiple methods served by a single endpoint (like `~/server/api/test.get.ts` and `~/server/api/test.post.ts` then the response type will match the kind of response you make. - 🍪 `useFetch` is now integrated with `event.$fetch`, meaning **cookies and context are now passed to api requests automagically** within internal requests. - 🔥 We now **treeshake client-only components** out of the server build more effectively using the experimental `treeshakeClientOnly` feature > This is turned on by default but if you experience any issues, you can turn this off via: > > ```js > export default defineNuxtConfig({ > experimental: { > treeshakeClientOnly: false > } > }) > ``` - 🛠️ New **`addRouteMiddleware` kit utility** for module authors - 💪 **Nitropack v2.2** has been released > Lots of features, including runtime proxy support using route rules, nested fetch calls, binary and raw storage operations, exposed `event.context.cf` (cloudflare) and built-in session support. > > For full details see [release notes](https://togithub.com/unjs/nitro/blob/main/CHANGELOG.md#v220) ##### Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.1.2...v3.2.0) ##### 🚀 Enhancements - **kit:** Add `addRouteMiddleware` method ([#​18553](https://togithub.com/nuxt/nuxt/pull/18553)) - **cli:** Warn when prerendering routes with `ssr: false` ([#​18783](https://togithub.com/nuxt/nuxt/pull/18783)) - **schema:** Add type hints for runtime config ([#​18652](https://togithub.com/nuxt/nuxt/pull/18652)) - **nuxt:** Support type auto-import ([#​18859](https://togithub.com/nuxt/nuxt/pull/18859)) - **nuxt:** Infer `useFetch` return based on the method ([#​18526](https://togithub.com/nuxt/nuxt/pull/18526)) - **cli:** Add initial support for enabling/disabling devtools ([#​18864](https://togithub.com/nuxt/nuxt/pull/18864)) - **nuxt:** Upgrade to nitropack 2.2 ([#​18889](https://togithub.com/nuxt/nuxt/pull/18889)) ##### 🔥 Performance - **vite:** Use stub entry in vite server build when ` ssr: false ` ([#​18782](https://togithub.com/nuxt/nuxt/pull/18782)) ##### 🩹 Fixes - **nuxt:** Treeshake client-only components with placeholders ([#​8789](https://togithub.com/nuxt/nuxt/pull/8789)) - **webpack:** Client-side typechecking when `ssr: false` ([#​18828](https://togithub.com/nuxt/nuxt/pull/18828)) - **vite:** Exclude styles, not all assets ([#​18752](https://togithub.com/nuxt/nuxt/pull/18752)) - **nuxt:** Defer adding route path to preloaded record ([#​18862](https://togithub.com/nuxt/nuxt/pull/18862)) - **nuxt:** Don't exclude pnpm layers from nitro esbuild/imports ([#​9952](https://togithub.com/nuxt/nuxt/pull/9952)) - **nuxt:** Use parser to treeshake `` ([#​8713](https://togithub.com/nuxt/nuxt/pull/8713)) - Reorder the types field in package.json ([#​18880](https://togithub.com/nuxt/nuxt/pull/18880)) ##### 💅 Refactors - **nuxt:** Within nuxt app, import directly from source file ([#​18902](https://togithub.com/nuxt/nuxt/pull/18902)) ##### 📖 Documentation - Remove extra word ([#​18750](https://togithub.com/nuxt/nuxt/pull/18750)) - **example:** Fix app config link ([#​18760](https://togithub.com/nuxt/nuxt/pull/18760)) - Add `useError` composable ([#​8912](https://togithub.com/nuxt/nuxt/pull/8912)) - Clarify augmenting input/output app config ([#​8953](https://togithub.com/nuxt/nuxt/pull/8953)) - Add explanation of composable lifecycle ([#​8116](https://togithub.com/nuxt/nuxt/pull/8116)) - **typescript:** Type-checking guide ([#​18768](https://togithub.com/nuxt/nuxt/pull/18768)) - **schema:** Add NuxtHooks interface documentation ([#​18756](https://togithub.com/nuxt/nuxt/pull/18756)) - Resolve `preloadRouteComponents` page heading error ([#​18804](https://togithub.com/nuxt/nuxt/pull/18804)) - Update to nuxt 2.16.0 in bridge installation ([#​18836](https://togithub.com/nuxt/nuxt/pull/18836)) - Add link to vue hydration mismatch docs ([#​18842](https://togithub.com/nuxt/nuxt/pull/18842)) - Update auto-imports for the server part ([#​18848](https://togithub.com/nuxt/nuxt/pull/18848)) - Warn about slots in server components ([#​18854](https://togithub.com/nuxt/nuxt/pull/18854)) - Add explanation with augmented meta for new routes ([#​18901](https://togithub.com/nuxt/nuxt/pull/18901)) ##### ✅ Tests - Decrease vite logging during tests ([5426e5609](https://togithub.com/nuxt/nuxt/commit/5426e5609)) ##### ❤️ Contributors - Daniel Roe - Pooya Parsa - Chen - Julien Huang - Yasser Lahbibi - Dany Sluijk - Alex Liu - Anthony Fu - Ayaka Rizumu - Alexander Lichter - Sébastien Chopin - Mehdi HosseinZade - Yesid - Lucas - Joseph Ojoko - Dago - Krutie Patel - Leigh ### [`v3.1.2`](https://togithub.com/nuxt/nuxt/releases/tag/v3.1.2) [Compare Source](https://togithub.com/nuxt/nuxt/compare/3.1.1...v3.1.2) > **3.1.2** is a patch release with bug fixes (particularly focusing on performance and DX). #### Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.1.1...v3.1.2) ##### 🔥 Performance - **nuxt:** Simplify generated variable names ([#​18629](https://togithub.com/nuxt/nuxt/pull/18629)) - **vite:** Use compiled regexp for test ([#​18646](https://togithub.com/nuxt/nuxt/pull/18646)) - **nuxt:** Cache result of importing styles module ([#​18734](https://togithub.com/nuxt/nuxt/pull/18734)) ##### 🩹 Fixes - **nuxt:** Provide fallback values for undefined runtime config ([#​18586](https://togithub.com/nuxt/nuxt/pull/18586)) - **kit:** Don't use default export of defu ([#​18589](https://togithub.com/nuxt/nuxt/pull/18589)) - Use named export from `defu` in all places ([#​18624](https://togithub.com/nuxt/nuxt/pull/18624)) - **nuxt:** Dedupe vue-router ([#​18626](https://togithub.com/nuxt/nuxt/pull/18626)) - **test-utils:** Prevent orphaned processes and use baseURL when loading ([#​18623](https://togithub.com/nuxt/nuxt/pull/18623)) - **vite:** Ensure `__publicAssetsURL` set before loading assets ([#​18642](https://togithub.com/nuxt/nuxt/pull/18642)) - **kit:** Avoid adding already installed modules to internal `_installedModules` ([#​18647](https://togithub.com/nuxt/nuxt/pull/18647)) - **nuxt:** Make `onNuxtReady` safe to run on server-side ([#​18706](https://togithub.com/nuxt/nuxt/pull/18706)) - **vite, webpack:** Omit magic keys when import of same name is detected ([#​18733](https://togithub.com/nuxt/nuxt/pull/18733)) ##### 📖 Documentation - Update `vue-gtag` plugin example ([#​18528](https://togithub.com/nuxt/nuxt/pull/18528)) - Mention virtual file system ([#​18546](https://togithub.com/nuxt/nuxt/pull/18546)) - Mention head composable as alternative to `useHead` ([#​18552](https://togithub.com/nuxt/nuxt/pull/18552)) - Use `defineEventHandler()` to avoid warnings ([#​18557](https://togithub.com/nuxt/nuxt/pull/18557)) - Remove unnecessary `JSON.stringify()` ([#​18590](https://togithub.com/nuxt/nuxt/pull/18590)) - Updated unreachable docus url in documentation ([#​18618](https://togithub.com/nuxt/nuxt/pull/18618)) - Add link to pages documentation to routing ([#​18602](https://togithub.com/nuxt/nuxt/pull/18602)) - Add comment about needing to install `@types/node` manually ([6b2bc680b](https://togithub.com/nuxt/nuxt/commit/6b2bc680b)) - Add note about directory import ([d2c00dc46](https://togithub.com/nuxt/nuxt/commit/d2c00dc46)) - Fix array syntax ([f14f3815f](https://togithub.com/nuxt/nuxt/commit/f14f3815f)) - Fix buttons width on getting started ([#​18643](https://togithub.com/nuxt/nuxt/pull/18643)) - Add `.env` to directory structure and improve config docs ([#​18594](https://togithub.com/nuxt/nuxt/pull/18594)) - Mention options api equivalent for `head()` ([#​18650](https://togithub.com/nuxt/nuxt/pull/18650)) - Fix broken link to esm section ([#​18716](https://togithub.com/nuxt/nuxt/pull/18716)) - Improve routing `validate` example ([#​18728](https://togithub.com/nuxt/nuxt/pull/18728)) ##### 🏡 Chore - Update `2.x` branch name ([727cf7958](https://togithub.com/nuxt/nuxt/commit/727cf7958)) ##### ✅ Tests - **nuxt:** Exclude new internal vue `assertNumber` helper ([aa646f065](https://togithub.com/nuxt/nuxt/commit/aa646f065)) ##### 🤖 CI - Publish nightly `nuxt-edge` for nuxt v2 ([dd0e2643c](https://togithub.com/nuxt/nuxt/commit/dd0e2643c)) - Fix ref for 2.x branch ([21badd9f2](https://togithub.com/nuxt/nuxt/commit/21badd9f2)) - Allow manually dispatching nightly nuxt2 build ([09114125c](https://togithub.com/nuxt/nuxt/commit/09114125c)) ##### ❤️ Contributors - Daniel Roe - Aimer-fan - Rémi Robichet - Pooya Parsa - Florent Delerue - Tobias Diez - Jenni - Arun Govil - 华晨 - Inesh Bose - Theo Ephraim ### [`v3.1.1`](https://togithub.com/nuxt/nuxt/releases/tag/v3.1.1) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.1.0...3.1.1) > **3.1.1** is a bugfix release to address a problem rendering components injected by Vue or Nuxt plugins. #### Update notes There's also a [Nitro upgrade to v2.1.0](https://togithub.com/unjs/nitro/blob/main/CHANGELOG.md) released shortly after v3.1.1, so when upgrading, please either run `nuxt upgrade --force` or refresh your lockfile. #### Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.1.0...v3.1.1) ##### 🩹 Fixes - **nuxt:** Do not override inferred type of `` ([#​18495](https://togithub.com/nuxt/nuxt/pull/18495)) - **nuxt:** Don't render unknown components with placeholder ([#​18494](https://togithub.com/nuxt/nuxt/pull/18494)) - **vite:** Ensure newly created pages do not return 404 ([#​18447](https://togithub.com/nuxt/nuxt/pull/18447)) - **nuxt:** Async transform for inline middleware ([#​18460](https://togithub.com/nuxt/nuxt/pull/18460)) - **nuxt:** Augment interfaces exported from `vue` ([#​18505](https://togithub.com/nuxt/nuxt/pull/18505)) ##### 📖 Documentation - Remove useNuxtData release alert ([#​18488](https://togithub.com/nuxt/nuxt/pull/18488)) - Simplify the docs directory ([#​18506](https://togithub.com/nuxt/nuxt/pull/18506)) - Add info about server-components async limits ([#​18513](https://togithub.com/nuxt/nuxt/pull/18513)) - Keep `app.vue` file name consistent ([#​18517](https://togithub.com/nuxt/nuxt/pull/18517)) ##### ❤️ Contributors - Daniel Roe - 华晨 - Fabian B - Sébastien Chopin - Mahdi Boomeri ### [`v3.1.0`](https://togithub.com/nuxt/nuxt/releases/tag/v3.1.0) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.0.0...v3.1.0) > **3.1.0** is the first minor release after [Nuxt 3.0](https://togithub.com/nuxt/framework/releases/tag/v3.0.0) including bug fixes and enhancements. 💬 [**Release Discussion**](https://togithub.com/nuxt/nuxt/discussions/18486) ##### 👀 Highlights - 📖 Lots of improvements to the documentation and website (you can already see them in [nuxt.com](https://nuxt.com)) - 🏝️ Experimental component Islands and [server only components](https://nuxt.com/docs/guide/directory-structure/components#server-components) - ✨ New `onNuxtReady`, `useNuxtData` and `useSeoMeta` composables - ﹛ experimental [config schema](https://togithub.com/nuxt/nuxt/pull/18410) (for module or theme authors) - 💪 Upgraded to [Nitropack v2](https://togithub.com/unjs/nitro/releases/tag/v2.0.0) - ⚡️ Migrated to [Vite 4](https://vitejs.dev/blog/announcing-vite4.html) and [Rollup 3](https://togithub.com/rollup/rollup/blob/master/CHANGELOG.md#​300). ##### Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.0.0...chore/v3.1.0) ##### 🚀 Enhancements - **nuxt:** Experimental server component islands ([#​5689](https://togithub.com/nuxt/framework/pull/5689)) - **nuxt:** Add `onNuxtReady` composable ([#​9478](https://togithub.com/nuxt/framework/pull/9478)) - `useNuxtData` composable ([#​9262](https://togithub.com/nuxt/framework/pull/9262)) - **nuxt:** Support for extending error.vue in layers ([#​9521](https://togithub.com/nuxt/framework/pull/9521)) - **vite:** Upgrade to vite 4 ([#​9238](https://togithub.com/nuxt/framework/pull/9238)) - **nuxt:** Deep watch `useCookie` ref value by default ([#​9664](https://togithub.com/nuxt/framework/pull/9664)) - **vite:** Display production build stats ([#​9761](https://togithub.com/nuxt/framework/pull/9761)) - **nuxt:** Server-only components ([#​9972](https://togithub.com/nuxt/framework/pull/9972)) - **imports:** `imports:context` hook for unimport context ([#​9971](https://togithub.com/nuxt/framework/pull/9971)) - **vite:** Support `build.transpile` as function ([#​7767](https://togithub.com/nuxt/framework/pull/7767)) - **nuxt:** Prefetch middleware/layouts + await layout loading ([#​10155](https://togithub.com/nuxt/framework/pull/10155)) - **nuxt:** Support server components with extracted payloads ([#​10113](https://togithub.com/nuxt/framework/pull/10113)) - **kit:** Add `extendRouteRules` method ([#​9771](https://togithub.com/nuxt/framework/pull/9771)) - **nuxt:** Allow disabling color for `` ([#​18432](https://togithub.com/nuxt/nuxt/pull/18432)) - **head:** `useSeoMeta` composable ([#​18441](https://togithub.com/nuxt/nuxt/pull/18441)) - Experimental config schema ([#​18410](https://togithub.com/nuxt/nuxt/pull/18410)) ##### 🔥 Performance - **nuxt:** Use static import of `@unhead/ssr` ([#​9826](https://togithub.com/nuxt/framework/pull/9826)) - **nuxt:** Add tree-shaken `useServerSeoMeta` composable ([#​18476](https://togithub.com/nuxt/nuxt/pull/18476)) ##### 🩹 Fixes - Remove `postcss.config` from schema ([#​9181](https://togithub.com/nuxt/framework/pull/9181)) - **nuxt:** Include missing `` component props ([#​9204](https://togithub.com/nuxt/framework/pull/9204)) - **nuxt:** Allow layouts to receive custom props ([#​9395](https://togithub.com/nuxt/framework/pull/9395)) - **test-utils:** Do not hide vitest output ([#​9442](https://togithub.com/nuxt/framework/pull/9442)) - **nuxt:** `useCookie` with defaults should return non-null value ([#​9449](https://togithub.com/nuxt/framework/pull/9449)) - **nuxt:** Defer render-blocking prefetches until after load ([#​9475](https://togithub.com/nuxt/framework/pull/9475)) - **nuxt:** Speculation rules should be reactive ([#​9472](https://togithub.com/nuxt/framework/pull/9472)) - **kit:** Support applying `.nuxtignore` within external layers ([#​9599](https://togithub.com/nuxt/framework/pull/9599)) - **nuxt:** Remove deprecated `req`/`res` access ([#​9636](https://togithub.com/nuxt/framework/pull/9636)) - **nuxt:** Await plugin asyncdata promises in nuxt hook ([#​9616](https://togithub.com/nuxt/framework/pull/9616)) - **schema:** Add hookable dependency ([#​9648](https://togithub.com/nuxt/framework/pull/9648)) - **vite:** Skip *only* vite transform middleware ([#​9602](https://togithub.com/nuxt/framework/pull/9602)) - **nuxt:** Remove absolute paths from routes objects ([#​9655](https://togithub.com/nuxt/framework/pull/9655)) - **nuxt:** Make dev-only regexp less greedy ([#​9679](https://togithub.com/nuxt/framework/pull/9679)) - **nuxt:** Set is loading state for `` after throttle ([#​9832](https://togithub.com/nuxt/framework/pull/9832)) - **cli:** Show an error if no value is supplied for the `--template` flag ([#​9946](https://togithub.com/nuxt/framework/pull/9946)) - **vite:** Defer to nitro to copy public dir ([#​10013](https://togithub.com/nuxt/framework/pull/10013)) - **nuxt:** Include components `runtime` dir in build output ([#​10046](https://togithub.com/nuxt/framework/pull/10046)) - **nuxt:** Add `build.transpile` strings to nitro inline list ([#​10094](https://togithub.com/nuxt/framework/pull/10094)) - **nuxt:** Support deep assign on empty object for app config ([#​10087](https://togithub.com/nuxt/framework/pull/10087)) - **nuxt:** Don't short circuit middleware after validate function ([#​9180](https://togithub.com/nuxt/framework/pull/9180)) - **nuxt:** Don't try to override computed layouts in `definePageMeta` ([#​9161](https://togithub.com/nuxt/framework/pull/9161)) - **nuxt:** Allow overriding lower layer composables ([#​10017](https://togithub.com/nuxt/framework/pull/10017)) - **nuxt:** Update `class` prop type for head components ([#​9133](https://togithub.com/nuxt/framework/pull/9133)) - **nuxt:** Avoid injecting url helpers into `globalThis` ([#​9627](https://togithub.com/nuxt/framework/pull/9627)) - **nuxt:** Name anonymous components in render tree ([#​10011](https://togithub.com/nuxt/framework/pull/10011)) - **vite:** Add additional before skipping vite transform ([#​10120](https://togithub.com/nuxt/framework/pull/10120)) - **kit:** Resolve group syntax of `ignore` ([#​15884](https://togithub.com/nuxt/nuxt/pull/15884)) - **nuxt:** Use query for hashing the fetch key ([#​18411](https://togithub.com/nuxt/nuxt/pull/18411)) - **cli:** Prevent showing stack traces while scaffolding ([#​9962](https://togithub.com/nuxt/framework/pull/9962)) - **nuxt:** Provide types for modules as array ([#​18416](https://togithub.com/nuxt/nuxt/pull/18416)) - **vite:** Don't skip loading styles in hydration phase ([#​18433](https://togithub.com/nuxt/nuxt/pull/18433)) - **vite:** Enable css sourcemaps in dev based on `sourcemap` ([#​18446](https://togithub.com/nuxt/nuxt/pull/18446)) - **nuxt:** Await async `callWithNuxt` calls ([#​18443](https://togithub.com/nuxt/nuxt/pull/18443)) - **nuxt:** Let router handle internal redirects within middleware ([#​18445](https://togithub.com/nuxt/nuxt/pull/18445)) - **nuxt:** Import `onServerPrefetch` ([629d2c099](https://togithub.com/nuxt/nuxt/commit/629d2c099)) - Upgrade unimport, close [#​15594](https://togithub.com/nuxt/nuxt/issues/15594) ([#​15594](https://togithub.com/nuxt/nuxt/ssue/15594)) - Upgrade unimport ([#​18475](https://togithub.com/nuxt/nuxt/pull/18475)) ##### 💅 Refactors - **jobs:** Remove unused asset ([#​9116](https://togithub.com/nuxt/framework/pull/9116)) - **nuxt:** Fix typo in internal plugin names ([#​9201](https://togithub.com/nuxt/framework/pull/9201)) - **nuxt:** Use `pathe.join` for layer lookup ([#​9540](https://togithub.com/nuxt/framework/pull/9540)) - Split out type imports from value imports ([#​9225](https://togithub.com/nuxt/framework/pull/9225)) - **nuxt:** Remove `vue-meta` for head support ([#​9638](https://togithub.com/nuxt/framework/pull/9638)) - **nuxt:** Do not add all composable auto-imports to `globalThis` ([#​9630](https://togithub.com/nuxt/framework/pull/9630)) - **vite:** Show log when client build is starting ([#​9759](https://togithub.com/nuxt/framework/pull/9759)) - **home:** Sections ([#​9882](https://togithub.com/nuxt/framework/pull/9882)) - Heros ([#​9886](https://togithub.com/nuxt/framework/pull/9886)) - Improve internal type definitions of `` ([#​9869](https://togithub.com/nuxt/framework/pull/9869)) ##### 📖 Documentation - Update to 3.0 and upgrade theme ([cd2ad7108](https://togithub.com/nuxt/nuxt/commit/cd2ad7108)) - Fix paths to migration guides ([#​9071](https://togithub.com/nuxt/framework/pull/9071)) - Fix broken paths ([#​9076](https://togithub.com/nuxt/framework/pull/9076)) - Set nuxt stability to stable ([#​9075](https://togithub.com/nuxt/framework/pull/9075)) - Fix broken link ([24c8653b2](https://togithub.com/nuxt/nuxt/commit/24c8653b2)) - Update redirects ([f01fc1863](https://togithub.com/nuxt/nuxt/commit/f01fc1863)) - **seo:** Add robots file ([#​9111](https://togithub.com/nuxt/framework/pull/9111)) - Improve images quality ([#​9112](https://togithub.com/nuxt/framework/pull/9112)) - Fix broken links in examples ([#​9119](https://togithub.com/nuxt/framework/pull/9119)) - Bump website theme version to 0.1.5 ([#​9125](https://togithub.com/nuxt/framework/pull/9125)) - Bump nuxt-website-theme to 0.1.6 ([71fed589c](https://togithub.com/nuxt/nuxt/commit/71fed589c)) - Update vercel icon to support dark mode ([a4768fd56](https://togithub.com/nuxt/nuxt/commit/a4768fd56)) - Update website-theme version ([16117060e](https://togithub.com/nuxt/nuxt/commit/16117060e)) - Fix typo in `commands/add` ([#​9206](https://togithub.com/nuxt/framework/pull/9206)) - Remove stable release warning regarding options api ([#​9186](https://togithub.com/nuxt/framework/pull/9186)) - Fix typos in modules section ([#​9227](https://togithub.com/nuxt/framework/pull/9227)) - Updated info about `404.vue` ([#​9155](https://togithub.com/nuxt/framework/pull/9155)) - External configuration table ([#​9189](https://togithub.com/nuxt/framework/pull/9189)) - **homepage:** Optimize gem textures ([#​9234](https://togithub.com/nuxt/framework/pull/9234)) - Add space between sentences ([#​9207](https://togithub.com/nuxt/framework/pull/9207)) - Improve seo titleTemplate and add social images ([#​9235](https://togithub.com/nuxt/framework/pull/9235)) - Update link to mdc extension ([#​9251](https://togithub.com/nuxt/framework/pull/9251)) - Add missing space ([#​9276](https://togithub.com/nuxt/framework/pull/9276)) - **partners:** Add brain agency partner ([#​9277](https://togithub.com/nuxt/framework/pull/9277)) - Bump website theme to 0.1.11 ([#​9299](https://togithub.com/nuxt/framework/pull/9299)) - Add warning about `.client` onMounted hook ([#​9263](https://togithub.com/nuxt/framework/pull/9263)) - Use `layout` in example of `definePageMeta` ([#​9322](https://togithub.com/nuxt/framework/pull/9322)) - **schema:** Add example and description for `imports.dirs` ([#​9346](https://togithub.com/nuxt/framework/pull/9346)) - Change app-config url to avoid naming conflicts with app.vue ([#​9377](https://togithub.com/nuxt/framework/pull/9377)) - Add redirect for app.config to app-config ([66efcd59d](https://togithub.com/nuxt/nuxt/commit/66efcd59d)) - **installation:** Add button to nuxt.new ([7c998982f](https://togithub.com/nuxt/nuxt/commit/7c998982f)) - **installation:** Typo in sentence ([53d5a5a5a](https://togithub.com/nuxt/nuxt/commit/53d5a5a5a)) - **roadmap:** Add i18n module to the roadmap ([#​9403](https://togithub.com/nuxt/framework/pull/9403)) - Add more social cards ([a50855bab](https://togithub.com/nuxt/nuxt/commit/a50855bab)) - Bump version to 0.1.12 ([#​9423](https://togithub.com/nuxt/framework/pull/9423)) - **seo:** Add sitemap url to robots.txt ([#​9309](https://togithub.com/nuxt/framework/pull/9309)) - **introduction:** Add hero and cards ([#​9334](https://togithub.com/nuxt/framework/pull/9334)) - Disable markdownlint on mdc file ([#​9428](https://togithub.com/nuxt/framework/pull/9428)) - **homepage:** Fix typo ([#​9426](https://togithub.com/nuxt/framework/pull/9426)) - Add Project name placeholder ([#​9421](https://togithub.com/nuxt/framework/pull/9421)) - Update announcements to add stable release ([a73a75c39](https://togithub.com/nuxt/nuxt/commit/a73a75c39)) - Theme version 0.1.13 ([#​9453](https://togithub.com/nuxt/framework/pull/9453)) - Website theme 0.1.16 ([#​9456](https://togithub.com/nuxt/framework/pull/9456)) - Update playwright url ([#​9483](https://togithub.com/nuxt/framework/pull/9483)) - Make `vite` monospace too ([#​9490](https://togithub.com/nuxt/framework/pull/9490)) - Update agencies expertises ([d36d11552](https://togithub.com/nuxt/nuxt/commit/d36d11552)) - Add nuxt layers introduction and authoring guide ([#​9405](https://togithub.com/nuxt/framework/pull/9405)) - Heading and formatting improvements for layers ([c307ee8b5](https://togithub.com/nuxt/nuxt/commit/c307ee8b5)) - Update website-theme ([cf4e7bf33](https://togithub.com/nuxt/nuxt/commit/cf4e7bf33)) - Update internal links to bridge overview page ([228bc9ce2](https://togithub.com/nuxt/nuxt/commit/228bc9ce2)) - Recommend to install non-edge version of `@nuxt/test-utils` ([#​9543](https://togithub.com/nuxt/framework/pull/9543)) - Compress social image to jpg and upgrade website-theme ([770cdf90d](https://togithub.com/nuxt/nuxt/commit/770cdf90d)) - **agencies:** Add liip ([#​9552](https://togithub.com/nuxt/framework/pull/9552)) - Fix typo and update theme ([d500ac4e3](https://togithub.com/nuxt/nuxt/commit/d500ac4e3)) - Update theme version ([5fdb7b6f8](https://togithub.com/nuxt/nuxt/commit/5fdb7b6f8)) - **rendering:** Hide

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.