vrtpro / chocolattech

🍫 Choco Latte's replacement & open source alternative website with better improvements
https://chocolatte.falcxxdev.cyou
MIT License
13 stars 1 forks source link

chore(deps): update dependency nuxt to v3.6.0 #56

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 3.5.3 -> 3.6.0 age adoption passing confidence

Release Notes

nuxt/nuxt ### [`v3.6.0`](https://togithub.com/nuxt/nuxt/releases/tag/v3.6.0) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.5.3...v3.6.0) > 3.6.0 is the next minor release, packed with improvements and bug fixes. #### 📣 Upcoming news In the coming week you can expect two announcements: 1. The open-sourcing of `nuxt/cli` by [**@​pi0**](https://togithub.com/pi0) - a new, drop-in replacement for `nuxi` featuring more extensibility and better DX. We are aiming to release this alongside Nuxt 3.7, but you would be very welcome to test and contribute to `nuxi-ng` before then! 2. Three significant RFCs: **Nuxt Font**, **Nuxt Assets** and **Nuxt Scripts**. We're expecting an initial POC to take shape in the next month, and would very much appreciate community feedback on this. #### 👀 Highlights This minor release contains quite a lot, and we have big plans #####  SPA loading indicator If your site is served with `ssr: false` or you have disabled server-rendering on some of your pages, you might be particularly interested in the new [built-in SPA loading indicator](https://togithub.com/nuxt/nuxt/pull/21640). You can now place an HTML file in `~/app/spa-loading-template.html` with some HTML you would like to use to render a loading screen that will be rendered until your app is hydrated on these pages. 👉 **By default an animated Nuxt icon is rendered**. You can completely disable this indicator by setting `spaLoadingTemplate: false` in your nuxt configuration file. ##### ⚡️ Performance improvements The first thing that happens when your app is hydrated is that your plugins run, and so we now perform [build-time optimisations on your plugins](https://togithub.com/nuxt/nuxt/pull/21611), meaning they do not need to be normalised or reordered at runtime. We also include your error component JS in your main entrypoint, meaning that if an error occurs when a user has no connectivity, you can still handle it with your `~/error.vue`. (This also should decrease your total bundle size.) 👉 Compared to Nuxt 3.5.3, the minimal client bundle has decreased by ~0.7kB. Let's keep this up! ##### 🔥 Fully static server components It has been possible to use server components on static pages, but until now they would increase the payload size of your application. That is no longer true. We now store [rendered server components as separate files, which are preloaded before navigation](https://togithub.com/nuxt/nuxt/pull/21461). 👉 **This does rely on the new, richer JSON payload format**, so make sure you have not disabled this by setting `experimental.renderJsonPayloads` to false. ##### 🎨 Better style inlining If you're monitoring your metrics closely and have not turned off `experimental.inlineSSRStyles`, you should see more CSS inlined in your page, and a significantly external CSS file. We're now [better at deduplicating global CSS](https://togithub.com/nuxt/nuxt/pull/21573), particularly added by libraries like tailwind or unocss. ##### 🎬 Animation controls To give you more fine-grained control over your page/layout components, for example to create custom transitions with GSAP or other libraries, we now allow you to set [`pageRef` on ``](https://togithub.com/nuxt/nuxt/pull/19403) and [`layoutRef` on `` ([#​21613](https://togithub.com/nuxt/nuxt/pull/21613)) - **nuxt:** Replace `:` in rendered server components (for win) ([#​21645](https://togithub.com/nuxt/nuxt/pull/21645)) - **cli:** Add back default `baseUrl` in `tsconfig.json` ([#​21632](https://togithub.com/nuxt/nuxt/pull/21632)) - **nuxt:** Post non-proxied cookie value via `BroadcastChannel` ([#​21653](https://togithub.com/nuxt/nuxt/pull/21653)) - **nuxt:** Stop indicator when not changing page component ([#​21656](https://togithub.com/nuxt/nuxt/pull/21656)) - **nuxt:** Scroll to top in nested routes ([#​21657](https://togithub.com/nuxt/nuxt/pull/21657)) - **nuxt:** Inline css directly in root component ([#​21573](https://togithub.com/nuxt/nuxt/pull/21573)) - **nuxt:** Move to `@typescript-eslint/typescript-estree` ([#​21664](https://togithub.com/nuxt/nuxt/pull/21664)) - **nuxt:** Guard `res.end()` calls with check if event is handled ([#​21665](https://togithub.com/nuxt/nuxt/pull/21665)) - **nuxt:** Do not embed error path in payload ([#​21671](https://togithub.com/nuxt/nuxt/pull/21671)) - **nuxt:** Use static nitro build if possible ([#​21655](https://togithub.com/nuxt/nuxt/pull/21655)) - **nuxt:** Add aliases and augmentations for nitro context ([#​21680](https://togithub.com/nuxt/nuxt/pull/21680)) - **nuxt,schema:** Prefer unknown rather than any for signatures ([#​21700](https://togithub.com/nuxt/nuxt/pull/21700)) - **schema:** Change `redirect` type for `NuxtPage` type ([#​21713](https://togithub.com/nuxt/nuxt/pull/21713)) - **nuxt:** Fix error on layout switching ([#​21450](https://togithub.com/nuxt/nuxt/pull/21450)) ##### 📖 Documentation - Add info about vue configuration ([#​21303](https://togithub.com/nuxt/nuxt/pull/21303)) - Include example for server utilities ([#​21337](https://togithub.com/nuxt/nuxt/pull/21337)) - Improved recommended gitignore list ([#​21451](https://togithub.com/nuxt/nuxt/pull/21451)) - Add info about merging strategy in app config ([#​21462](https://togithub.com/nuxt/nuxt/pull/21462)) - Avoid using `render` when defining `rendering` ([#​21490](https://togithub.com/nuxt/nuxt/pull/21490)) - Remove example of deprecated reactivity transform ([#​21396](https://togithub.com/nuxt/nuxt/pull/21396)) - Fix `addTypeTemplate` typos ([#​21520](https://togithub.com/nuxt/nuxt/pull/21520)) - Add warning about redirect check ([#​20680](https://togithub.com/nuxt/nuxt/pull/20680)) - Remove link to closed RFC ([#​21564](https://togithub.com/nuxt/nuxt/pull/21564)) - Info icon fix on "Standalone server" section ([#​21589](https://togithub.com/nuxt/nuxt/pull/21589)) - Add note to use `nuxt` with bridge if `nitro` is false ([#​21586](https://togithub.com/nuxt/nuxt/pull/21586)) - Add styling section ([#​21525](https://togithub.com/nuxt/nuxt/pull/21525)) - Add full stop ([#​21614](https://togithub.com/nuxt/nuxt/pull/21614)) - Reorder sfc blocks and add initial slash in link ([#​21618](https://togithub.com/nuxt/nuxt/pull/21618)) - Add info on extending the HTML template ([#​21615](https://togithub.com/nuxt/nuxt/pull/21615)) - Document `parallel` option on plugins ([#​21622](https://togithub.com/nuxt/nuxt/pull/21622)) - Americanize spelling + fix typos ([#​21627](https://togithub.com/nuxt/nuxt/pull/21627)) - Remove `examples/` from repository ([#​21538](https://togithub.com/nuxt/nuxt/pull/21538)) - **examples:** Add bullet points ([9df892a17](https://togithub.com/nuxt/nuxt/commit/9df892a17)) - Add experimental features page ([#​21617](https://togithub.com/nuxt/nuxt/pull/21617)) - Fix typo in experimental features ([#​21663](https://togithub.com/nuxt/nuxt/pull/21663)) - Update specified Nuxt 2 version in migration guide ([#​21699](https://togithub.com/nuxt/nuxt/pull/21699)) - Added `@latest` to install commands ([#​21702](https://togithub.com/nuxt/nuxt/pull/21702)) ##### 🏡 Chore - Add `vitest` renovate group ([7695aca93](https://togithub.com/nuxt/nuxt/commit/7695aca93)) - Add full version for `octokit/request-action` ([dd5955caf](https://togithub.com/nuxt/nuxt/commit/dd5955caf)) - Widen peer deps in renovate updates ([b0ba4b864](https://togithub.com/nuxt/nuxt/commit/b0ba4b864)) - Bump bundle size 🤔 ([ce4f46385](https://togithub.com/nuxt/nuxt/commit/ce4f46385)) - Ignore `webpack-dev-middleware` updates on 2.x branch ([7f7ae96d1](https://togithub.com/nuxt/nuxt/commit/7f7ae96d1)) - Ignore vercel/netlify build directories ([5d4b71426](https://togithub.com/nuxt/nuxt/commit/5d4b71426)) ##### ✅ Tests - Update bundle size ([08df73801](https://togithub.com/nuxt/nuxt/commit/08df73801)) - Skip instance error test in vite ecosystem CI ([f97052cba](https://togithub.com/nuxt/nuxt/commit/f97052cba)) ##### 🤖 CI - Move bundle skipping logic to workflow ([#​21448](https://togithub.com/nuxt/nuxt/pull/21448)) - Build project before calculating bundle size ([ce096da96](https://togithub.com/nuxt/nuxt/commit/ce096da96)) ##### ❤️ Contributors - Anthony Fu ([@​antfu](https://togithub.com/antfu)) - Portnoy Vladislav ([@​silencerspirit](https://togithub.com/silencerspirit)) - Roman Vašek ([@​Droutin](https://togithub.com/Droutin)) - Daniel Roe ([@​danielroe](https://togithub.com/danielroe)) - Damian Głowala ([@​DamianGlowala](https://togithub.com/DamianGlowala)) - C-schwan ([@​c-schwan](https://togithub.com/c-schwan)) - Vasily Kuzin ([@​ExEr7um](https://togithub.com/ExEr7um)) - Hebilicious ([@​Hebilicious](https://togithub.com/Hebilicious)) - Israel Ortuño ([@​IsraelOrtuno](https://togithub.com/IsraelOrtuno)) - Sébastien Chopin ([@​Atinux](https://togithub.com/Atinux)) - Lehoczky Zoltán ([@​Lehoczky](https://togithub.com/Lehoczky)) - Julien Huang ([@​huang-julien](https://togithub.com/huang-julien)) - Nozomu Ikuta ([@​NozomuIkuta](https://togithub.com/NozomuIkuta)) - Bruno Braga ([@​brunobragaw8t](https://togithub.com/brunobragaw8t)) - Inesh Bose ([@​ineshbose](https://togithub.com/ineshbose)) - Quentin ([@​quentint](https://togithub.com/quentint)) - Wattanx ([@​wattanx](https://togithub.com/wattanx)) - Zaid Kureshi ([@​imzedi](https://togithub.com/imzedi)) - Rodrigo Pimentel ([@​RodrigoProjects](https://togithub.com/RodrigoProjects)) - Nicolas Payot ([@​nicolaspayot](https://togithub.com/nicolaspayot)) - David De Sloovere ([@​DavidDeSloovere](https://togithub.com/DavidDeSloovere)) - Miachel Brevard ([@​GalacticHypernova](https://togithub.com/GalacticHypernova)) - Edward Hibbert ([@​edwh](https://togithub.com/edwh)) - Žan Fras ([@​frasza](https://togithub.com/frasza)) - Jongmin Yoon ([@​jongmin4943](https://togithub.com/jongmin4943)) - Léonce Aklin ([@​leonceaklin](https://togithub.com/leonceaklin)) - Wilson Pinto ([@​wilsonpinto](https://togithub.com/wilsonpinto)) - Albaraa Hasan ([@​Null78](https://togithub.com/Null78)) - Pooya Parsa ([@​pi0](https://togithub.com/pi0)) - Markus ([@​MSchutt](https://togithub.com/MSchutt)) - John Jenkins ([@​johnjenkins](https://togithub.com/johnjenkins)) - Asher White ([@​AWBroch](https://togithub.com/AWBroch)) - Harlan Wilton ([@​harlan-zw](https://togithub.com/harlan-zw)) - Alexander B ([@​xanderbarkhatov](https://togithub.com/xanderbarkhatov))

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.