From d73ccf0ed6c8b360424007ba712112953ed4795f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 16 May 2023 22:30:47 +0200 Subject: [PATCH] fix(deps): update dependency nuxt to v3.5.0 (#21) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [nuxt](https://togithub.com/nuxt/nuxt) | [`3.4.2` -> `3.5.0`](https://renovatebot.com/diffs/npm/nuxt/3.4.2/3.5.0) | [![age](https://badges.renovateapi.com/packages/npm/nuxt/3.5.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/nuxt/3.5.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/nuxt/3.5.0/compatibility-slim/3.4.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/nuxt/3.5.0/confidence-slim/3.4.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
nuxt/nuxt ### [`v3.5.0`](https://togithub.com/nuxt/nuxt/releases/tag/v3.5.0) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.4.3...v3.5.0) > 3.5.0 is a minor (feature) release with lots of new features to play with. #### ๐Ÿ‘€ Highlights ##### โšก๏ธ Vue 3.3 released! Vue 3.3 has been released, with lots of exciting features, particularly around type support. This also brings a significant improvement to data fetching when navigating between nested pages ([https://github.com/nuxt/nuxt/pull/20777](https://togithub.com/nuxt/nuxt/pull/20777)), thanks to [@​antfu](https://togithub.com/antfu) and [@​baiwusanyu-c](https://togithub.com/baiwusanyu-c). - new `defineOptions` macro - 'generic' components - typed slots and using external types in defineProps - ... and more Read **[the full release announcement](https://blog.vuejs.org/posts/vue-3-3)** for more details. ##### ๐Ÿ™Œ Nitropack v2.4 We've been working on lots of improvements to Nitro and these have landed already in Nitro v2.4 - you may already have this upgrade, which contains a lot of bug fixes, updates to the module worker format for Cloudflare, Vercel KV support and more. One note: if you're deploying to Vercel or Netlify and want to benefit from incremental static regeneration, you should now update your route rules: ```diff routeRules: { -- '/blog/**': { swr: 3000 }, ++ '/blog/**': { isr: 3000 }, } ``` Read **[the full release notes](https://togithub.com/unjs/nitro/releases/tag/v2.4.0)**. ##### ๐Ÿ’– New defaults **Rich JSON payload serialisation** is now enabled by default ([https://github.com/nuxt/nuxt/pull/19205](https://togithub.com/nuxt/nuxt/pull/19205), [https://github.com/nuxt/nuxt/pull/20770](https://togithub.com/nuxt/nuxt/pull/20770)). This is both faster and allows serialising complex objects in the payload passed from the Nuxt server to client (and also when extracting payload data for prerendered sites). This now means that **various rich JS types are supported out-of-the-box**: regular expressions, dates, Map and Set and BigInt as well as NuxtError - and Vue-specific objects like `ref`, `reactive`, `shallowRef` and `shallowReactive`. You can find [an example](https://togithub.com/nuxt/nuxt/blob/main/test/fixtures/basic/pages/json-payload.vue) in our test suite. This is all possible due to [Rich-Harris/devalue#​58](https://togithub.com/Rich-Harris/devalue/pull/58). For a long time, Nuxt has been using our own fork of devalue owing to issues serialising Errors and other non-POJO objects, but we now have transitioned back to the original. You can even register your own custom types with a new object-syntax Nuxt plugin: ```ts [plugins/custom-payload-type.ts] export default definePayloadPlugin(() => { definePayloadReducer('BlinkingText', data => data === '' && '_') definePayloadReviver('BlinkingText', () => '') }) ``` You can read more about how this works [here](https://togithub.com/rich-harris/devalue#custom-types). ##### ๐Ÿ› Interactive server components This feature should be considered highly experimental, but thanks to some great work from [@​huang-julien](https://togithub.com/huang-julien) we now support interactive content within server components via *slots* ([https://github.com/nuxt/nuxt/pull/20284](https://togithub.com/nuxt/nuxt/pull/20284)). You can follow the server component roadmap at [https://github.com/nuxt/nuxt/issues/19772](https://togithub.com/nuxt/nuxt/issues/19772). ##### โฐ Environment config You can now configure fully typed, per-environment overrides in your `nuxt.config`: ```js export default defineNuxtConfig({ $production: { routeRules: { '/**': { isr: true } } }, $development: { // } }) ``` If you're authoring layers, you can also use the `$meta` key to provide metadata that you or the consumers of your layer might use. Read more: [https://github.com/nuxt/nuxt/pull/20329](https://togithub.com/nuxt/nuxt/pull/20329). ##### ๐Ÿ’ช Fully typed pages You can benefit from fully typed routing within your Nuxt app via this experimental integration with https://github.com/posva/unplugin-vue-router - thanks to some great work from [@​posva](https://togithub.com/posva)! Out of the box, this will enable typed usage of `navigateTo`, ``, `router.push()` and more. You can even get typed params within a page by using `const route = useRoute('route-name')`. ```ts export default defineNuxtConfig({ experimental: { typedPages: true } }) ``` ##### ๐Ÿ”Ž 'Bundler' module resolution We now have full support within Nuxt for the `bundler` strategy of [module resolution](https://www.typescriptlang.org/docs/handbook/module-resolution.html). We would recommend adopting this if possible. It has type support for subpath exports, for example, but more exactly matches the behaviour of build tools like Vite and Nuxt than `Node16` resolution. ```ts export default defineNuxtConfig({ typescript: { tsConfig: { compilerOptions: { moduleResolution: 'bundler' } } } }) ``` This turns on TypeScript's ability to 'follow' Node subpath exports. For example, if a library has a subpath export like `mylib/path` that is mapped to `mylib/dist/path.mjs` then the types for this can be pulled in from `mylib/dist/path.d.ts` rather than requiring the library author to create `mylib/path.d.ts`. ##### โš—๏ธ Separate server types We plan to improve clarity within your IDE between the 'nitro' and 'vue' part of your app, and we've shipped the first part of this via a separate generated `tsconfig.json` for your `~/server` directory ([https://github.com/nuxt/nuxt/pull/20559](https://togithub.com/nuxt/nuxt/pull/20559)). You can use by adding an additional `~/server/tsconfig.json` with the following content: ```json { "extends": "../.nuxt/tsconfig.server.json" } ``` Although right now these values won't be respected when type checking, you should get better type hints in your IDE. ##### ๐Ÿ’€ Deprecations Although we have not typed or documented the `build.extend` hook from Nuxt 2, we have been calling it within the webpack builder. We are now explicitly deprecating this and will remove it in a future minor version. #### โœ… 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.4.3...v3.5.0) ##### ๐Ÿš€ Enhancements - **kit:** Add `prepend` option to `addImportsDir` ([#​20307](https://togithub.com/nuxt/nuxt/pull/20307)) - **nuxt:** Add scoped helper for clearing error within boundary ([#​20508](https://togithub.com/nuxt/nuxt/pull/20508)) - **nuxt:** Auto import 'watchPostEffect' and 'watchSyncEffect' from vue ([#​20279](https://togithub.com/nuxt/nuxt/pull/20279)) - **vite:** Introduce `vite:configResolved` hook ([#​20411](https://togithub.com/nuxt/nuxt/pull/20411)) - **webpack:** Introduce `webpack:configResolved` hook ([#​20412](https://togithub.com/nuxt/nuxt/pull/20412)) - **kit:** Allow vite and webpack plugins to be prepended ([#​20403](https://togithub.com/nuxt/nuxt/pull/20403)) - **nuxt:** Add layer meta and env overrides to config types ([#​20329](https://togithub.com/nuxt/nuxt/pull/20329)) - **test-utils:** Add option to configure test server port ([#​20443](https://togithub.com/nuxt/nuxt/pull/20443)) - **nuxt:** Allow access to components within app ([#​20604](https://togithub.com/nuxt/nuxt/pull/20604)) - **kit:** Support passing getter to `addVitePlugin` and `addWebpackPlugin` ([#​20525](https://togithub.com/nuxt/nuxt/pull/20525)) - **cli:** Allow greater control of `nuxi analyze` from cli ([#​20387](https://togithub.com/nuxt/nuxt/pull/20387)) - **nuxt:** Add `nuxtApp.runWithContext` ([#​20608](https://togithub.com/nuxt/nuxt/pull/20608)) - **deps:** Upgrade to nitropack v2.4 ([#​20688](https://togithub.com/nuxt/nuxt/pull/20688)) - **nuxt:** Add experimental `typedPages` option ([#​20367](https://togithub.com/nuxt/nuxt/pull/20367)) - **nuxt:** Add apps to nuxt build-time instance ([#​20637](https://togithub.com/nuxt/nuxt/pull/20637)) - **cli:** Allow passing overrides to other nuxi commands ([#​20760](https://togithub.com/nuxt/nuxt/pull/20760)) - **schema:** Enable rich json payloads by default ([#​20770](https://togithub.com/nuxt/nuxt/pull/20770)) - **deps:** Update vue to v3.3 ([#​20478](https://togithub.com/nuxt/nuxt/pull/20478)) - **nuxt:** Use `runWithContext` within `callWithNuxt` ([#​20775](https://togithub.com/nuxt/nuxt/pull/20775)) - **nuxt:** Add `useRequestURL` helper ([#​20765](https://togithub.com/nuxt/nuxt/pull/20765)) - **nuxt:** Allow fallback production content in `` ([#​20817](https://togithub.com/nuxt/nuxt/pull/20817)) - **kit:** `addBuildPlugin` for builder-agnostic implementation ([#​20587](https://togithub.com/nuxt/nuxt/pull/20587)) - **nuxt:** Allow keeping fallback for `NuxtClientFallback` ([#​20336](https://togithub.com/nuxt/nuxt/pull/20336)) - **nuxt:** Support separate server tsconfig ([#​20559](https://togithub.com/nuxt/nuxt/pull/20559)) - **nuxt:** Full scoped slots support for server components ([#​20284](https://togithub.com/nuxt/nuxt/pull/20284)) - **nuxt:** Support parallel plugins ([#​20460](https://togithub.com/nuxt/nuxt/pull/20460)) ##### ๐Ÿฉน Fixes - **nuxt:** Remove backwards-compatible runtimeConfig proxy ([#​20340](https://togithub.com/nuxt/nuxt/pull/20340)) - **nuxt:** Add `@nuxt/devtools` module before core modules ([#​20595](https://togithub.com/nuxt/nuxt/pull/20595)) - **nuxt:** Properly handle query for component wrapper ([#​20591](https://togithub.com/nuxt/nuxt/pull/20591)) - **nuxt:** Skip payload extraction for island context ([#​20590](https://togithub.com/nuxt/nuxt/pull/20590)) - **nuxt:** Remove internal `` ([#​20607](https://togithub.com/nuxt/nuxt/pull/20607)) - **nuxt:** Ensure `useError` is called with nuxt app context ([#​20585](https://togithub.com/nuxt/nuxt/pull/20585)) - **nuxt:** Run page meta plugin on all pages (and only pages) ([#​20628](https://togithub.com/nuxt/nuxt/pull/20628)) - **nuxt, vite:** Ignore `nuxt_component` ssr style and `isVue` ([#​20679](https://togithub.com/nuxt/nuxt/pull/20679)) - **webpack:** Warn when using deprecated `build.extend` hook ([#​20605](https://togithub.com/nuxt/nuxt/pull/20605)) - **nuxt:** Allow resolving client nuxt app to singleton ([#​20639](https://togithub.com/nuxt/nuxt/pull/20639)) - **nuxt:** Generate empty sourcemaps for wrappers ([#​20744](https://togithub.com/nuxt/nuxt/pull/20744)) - **nuxt:** Prevent treeshaking hooks with composable names ([#​20745](https://togithub.com/nuxt/nuxt/pull/20745)) - **kit:** Prefer esm resolution for modules to install ([#​20757](https://togithub.com/nuxt/nuxt/pull/20757)) - **vite:** Expand `fs.allow` dirs to include app files ([#​20755](https://togithub.com/nuxt/nuxt/pull/20755)) - **nuxt:** Deduplicate global components before registration ([#​20743](https://togithub.com/nuxt/nuxt/pull/20743)) - **nuxt:** Remove webstorm compatibility augmentation ([0258acdc8](https://togithub.com/nuxt/nuxt/commit/0258acdc8)) - **nuxt:** Enable suspensible behaviour for nested pages ([#​20777](https://togithub.com/nuxt/nuxt/pull/20777)) - **cli:** Hard-reload nuxt when `.env` changes ([#​20501](https://togithub.com/nuxt/nuxt/pull/20501)) - **nuxt:** Avoid destructuring error prop (works around upstream bug) ([#​20795](https://togithub.com/nuxt/nuxt/pull/20795)) - **nuxt:** Always inline styles for server/island components ([#​20599](https://togithub.com/nuxt/nuxt/pull/20599)) - **nuxt:** Allow serialising undefined refs ([#​20828](https://togithub.com/nuxt/nuxt/pull/20828)) - **nuxt:** Transform client fallbacks directly on SFCs ([#​20835](https://togithub.com/nuxt/nuxt/pull/20835)) - **vite:** Dedupe/optimize more vue core deps ([#​20829](https://togithub.com/nuxt/nuxt/pull/20829)) - **nuxt:** Get fallback for `` from parsed html ([#​20840](https://togithub.com/nuxt/nuxt/pull/20840)) - **nuxt:** Ensure all dir parts are present in component name ([#​20779](https://togithub.com/nuxt/nuxt/pull/20779)) - **nuxt:** Allow `pages:extend` to enable pages module ([#​20806](https://togithub.com/nuxt/nuxt/pull/20806)) - **nuxt:** Stop loading indicator on vue errors ([#​20738](https://togithub.com/nuxt/nuxt/pull/20738)) - **nuxt:** Add types for webpack/vite environments ([#​20749](https://togithub.com/nuxt/nuxt/pull/20749)) - **nuxt:** Pass from + savedPosition to first `scrollBehavior` ([#​20859](https://togithub.com/nuxt/nuxt/pull/20859)) ##### ๐Ÿ’… Refactors - **schema:** Move `runtimeCompiler` option out of experimental ([#​20606](https://togithub.com/nuxt/nuxt/pull/20606)) - **kit:** Use esm utils for `resolvePath` ([#​20756](https://togithub.com/nuxt/nuxt/pull/20756)) ##### ๐Ÿ“– Documentation - Fix typo ([#​20577](https://togithub.com/nuxt/nuxt/pull/20577)) - Update tailwind configuration guide ([#​20598](https://togithub.com/nuxt/nuxt/pull/20598)) - Fix fetch composable examples ([#​20603](https://togithub.com/nuxt/nuxt/pull/20603)) - Note that `useCookie` does not share state ([#​20665](https://togithub.com/nuxt/nuxt/pull/20665)) - Selective pre-rendering options ([#​20670](https://togithub.com/nuxt/nuxt/pull/20670)) - Ensure we guard all `navigateTo` examples ([#​20678](https://togithub.com/nuxt/nuxt/pull/20678)) - Add `useSeoMeta` and `useServerSeoMeta` pages ([#​20656](https://togithub.com/nuxt/nuxt/pull/20656)) - Recommend `` when migrating `error.vue` ([#​20690](https://togithub.com/nuxt/nuxt/pull/20690)) - Add lagon to presets list ([#​20706](https://togithub.com/nuxt/nuxt/pull/20706)) - Add `await` before lazy composable examples ([7e7e006e9](https://togithub.com/nuxt/nuxt/commit/7e7e006e9)) - Add missing step migrating to `pinia` ([#​20778](https://togithub.com/nuxt/nuxt/pull/20778)) - Server directory improvements ([d53cc604d](https://togithub.com/nuxt/nuxt/commit/d53cc604d)) ##### ๐Ÿก Chore - Revert markdownlint upgrade ([da29dea5c](https://togithub.com/nuxt/nuxt/commit/da29dea5c)) - Run docs lint workflow on dep upgrades ([c536e5a63](https://togithub.com/nuxt/nuxt/commit/c536e5a63)) - Revert `markdownlint-cli` update and prevent auto-update ([675445f98](https://togithub.com/nuxt/nuxt/commit/675445f98)) - Ban `@ts-ignore` ([4f0d3d4ae](https://togithub.com/nuxt/nuxt/commit/4f0d3d4ae)) - Do not install example dependencies ([#​20689](https://togithub.com/nuxt/nuxt/pull/20689)) - Disallow `.only` in tests ([ad97cb45a](https://togithub.com/nuxt/nuxt/commit/ad97cb45a)) - Type-check `.mjs` files ([#​20711](https://togithub.com/nuxt/nuxt/pull/20711)) - Fix typo in `pnpm-workspace.yaml` ([#​20751](https://togithub.com/nuxt/nuxt/pull/20751)) - Update target for `externalVue` removal ([a33d2e7ae](https://togithub.com/nuxt/nuxt/commit/a33d2e7ae)) - Lint ([742f61766](https://togithub.com/nuxt/nuxt/commit/742f61766)) ##### โœ… Tests - Test with bundler module resolution ([#​20629](https://togithub.com/nuxt/nuxt/pull/20629)) ##### ๐Ÿค– CI - Run autofix on renovate branches ([af75f18cf](https://togithub.com/nuxt/nuxt/commit/af75f18cf)) - Run 2.x nightly release on node 16 ([a81f9e4c8](https://togithub.com/nuxt/nuxt/commit/a81f9e4c8)) - Add conditional for node 16 test ([aee1218e6](https://togithub.com/nuxt/nuxt/commit/aee1218e6)) - Set max memory for nuxt2 release script globally ([d1a5719cb](https://togithub.com/nuxt/nuxt/commit/d1a5719cb)) - Add workflow to release branches ([bc28d536c](https://togithub.com/nuxt/nuxt/commit/bc28d536c)) - Update pr condition ([f8c7b34bd](https://togithub.com/nuxt/nuxt/commit/f8c7b34bd)) - Update repo ๐Ÿคฃ ([f88c1e645](https://togithub.com/nuxt/nuxt/commit/f88c1e645)) - Allow specifying tag for edge releases ([5fdb6a6d6](https://togithub.com/nuxt/nuxt/commit/5fdb6a6d6)) - Comment with link to tag of released version ([f945cb197](https://togithub.com/nuxt/nuxt/commit/f945cb197)) - Pass tag as argument ([1aec0e503](https://togithub.com/nuxt/nuxt/commit/1aec0e503)) - Release edge versions of labelled prs ([cdc42d044](https://togithub.com/nuxt/nuxt/commit/cdc42d044)) ##### โค๏ธ Contributors - Daniel Roe ([@​danielroe](https://togithub.com/danielroe)) - Sรฉbastien Chopin ([@​Atinux](https://togithub.com/Atinux)) - Anthony Fu ([@​antfu](https://togithub.com/antfu)) - Julien Huang ([@​huang-julien](https://togithub.com/huang-julien)) - Alexander ([@​xanderbarkhatov](https://togithub.com/xanderbarkhatov)) - Dario Ferderber ([@​darioferderber](https://togithub.com/darioferderber)) - ็™ฝ้›พไธ‰่ฏญ ([@​baiwusanyu-c](https://togithub.com/baiwusanyu-c)) - Inesh Bose ([@​ineshbose](https://togithub.com/ineshbose)) - Lehoczky Zoltรกn ([@​Lehoczky](https://togithub.com/Lehoczky)) - Emile Caron ([@​emilecaron](https://togithub.com/emilecaron)) - Eckhardt (Kaizen) Dreyer ([@​Eckhardt-D](https://togithub.com/Eckhardt-D)) - Eduardo San Martin Morote - Tom Lienard ([@​QuiiBz](https://togithub.com/QuiiBz)) - Scscgit ([@​scscgit](https://togithub.com/scscgit)) - Clรฉment Ollivier ([@​clemcode](https://togithub.com/clemcode)) - Jamie Warburton ([@​Jamiewarb](https://togithub.com/Jamiewarb)) - Enkot ([@​enkot](https://togithub.com/enkot)) - Phojie Rengel ([@​phojie](https://togithub.com/phojie)) - Harlan Wilton ([@​harlan-zw](https://togithub.com/harlan-zw)) - Gergล‘ Jedlicska ([@​gjedlicska](https://togithub.com/gjedlicska)) - Stefan Milosevic ([@​smilosevic](https://togithub.com/smilosevic)) - Pavel Mokin ([@​Lyrialtus](https://togithub.com/Lyrialtus)) ### [`v3.4.3`](https://togithub.com/nuxt/nuxt/releases/tag/v3.4.3) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.4.2...v3.4.3) > 3.4.3 is a patch release with the latest bug fixes. ๐Ÿž It is expected that the next release will be v3.5, in approximately two weeks' time. #### โœ… 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.4.2...v3.4.3) ##### ๐Ÿฉน Fixes - **nuxt:** Don't call `timeEnd` unless we're debugging ([#​20424](https://togithub.com/nuxt/nuxt/pull/20424)) - **nuxt:** Use key to force server component re-rendering ([#​19911](https://togithub.com/nuxt/nuxt/pull/19911)) - **nuxt:** Add basic typings for `` ([f1ded44e8](https://togithub.com/nuxt/nuxt/commit/f1ded44e8)) - **nuxt:** Use `event.node.req` in cookie utility ([#​20474](https://togithub.com/nuxt/nuxt/pull/20474)) - **deps:** Relax upper node version constraint ([#​20472](https://togithub.com/nuxt/nuxt/pull/20472)) - **nuxi,schema:** Support `devServer.https: true` ([#​20498](https://togithub.com/nuxt/nuxt/pull/20498)) - **nuxt:** Throw 404 when accessing `/__nuxt_error` directly ([#​20497](https://togithub.com/nuxt/nuxt/pull/20497)) - **nuxt:** Use `callAsync` for executing hooks with context ([#​20510](https://togithub.com/nuxt/nuxt/pull/20510)) - **nuxt:** Improved typing support for app config ([#​20526](https://togithub.com/nuxt/nuxt/pull/20526)) - **nuxt:** Call `app:error` in SSR before rendering error page ([#​20511](https://togithub.com/nuxt/nuxt/pull/20511)) - **nuxt:** Restrict access to single renderer outside of test/rootDir ([#​20543](https://togithub.com/nuxt/nuxt/pull/20543)) - **nuxt:** Throw errors when running legacy `asyncData` ([#​20535](https://togithub.com/nuxt/nuxt/pull/20535)) - **nuxt:** Transform `#components` imports into direct component imports ([#​20547](https://togithub.com/nuxt/nuxt/pull/20547)) - **nuxt:** Return `RenderResponse` for redirects ([#​20496](https://togithub.com/nuxt/nuxt/pull/20496)) ##### ๐Ÿ“– Documentation - Fix typos on docs homepage ([#​20456](https://togithub.com/nuxt/nuxt/pull/20456)) - Update links to `vue-router` docs ([#​20454](https://togithub.com/nuxt/nuxt/pull/20454)) - Remove RC reference and add link to vue migration build ([#​20485](https://togithub.com/nuxt/nuxt/pull/20485)) - Add cdn proxy section ([#​20408](https://togithub.com/nuxt/nuxt/pull/20408)) - Add a next steps link to first page of migration docs ([#​20512](https://togithub.com/nuxt/nuxt/pull/20512)) - Add custom fetch composable example ([#​20115](https://togithub.com/nuxt/nuxt/pull/20115)) - Adjust wrong link after repo migration ([#​20536](https://togithub.com/nuxt/nuxt/pull/20536)) ##### โœ… Tests - Exclude default error pages from bundle test ([ba320a558](https://togithub.com/nuxt/nuxt/commit/ba320a558)) - Update snapshot ([ac598e4f4](https://togithub.com/nuxt/nuxt/commit/ac598e4f4)) ##### ๐Ÿค– CI - Publish edge release with provenance ([ec1503731](https://togithub.com/nuxt/nuxt/commit/ec1503731)) - Run release script with node 18 ([0d10e9734](https://togithub.com/nuxt/nuxt/commit/0d10e9734)) - Try releasing `nuxt-edge` with provenance ([753c4c2a3](https://togithub.com/nuxt/nuxt/commit/753c4c2a3)) - Run nuxt2 nightly release on node 14 again ([48c034cf0](https://togithub.com/nuxt/nuxt/commit/48c034cf0)) ##### โค๏ธ Contributors - Daniel Roe ([@​danielroe](https://togithub.com/danielroe)) - Anthony Fu ([@​antfu](https://togithub.com/antfu)) - Julien Huang ([@​huang-julien](https://togithub.com/huang-julien)) - Andrew Luca ([@​iamandrewluca](https://togithub.com/iamandrewluca)) - Adrien Zaganelli ([@​adrienZ](https://togithub.com/adrienZ)) - Michael Gale (he/him) ([@​miclgael](https://togithub.com/miclgael)) - Clรฉment Ollivier ([@​clemcode](https://togithub.com/clemcode)) - Paul Melero ([@​gangsthub](https://togithub.com/gangsthub)) - Jonas Thelemann ([@​dargmuesli](https://togithub.com/dargmuesli)) - Johannes Przymusinski ([@​cngJo](https://togithub.com/cngJo)) - Idorenyin Udoh ([@​idorenyinudoh](https://togithub.com/idorenyinudoh))
--- ### 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. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/huang-julien/nuxt-hydration). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 422 +++++++++++++++++++++++-------------------------- 2 files changed, 200 insertions(+), 224 deletions(-) diff --git a/package.json b/package.json index 9b42d74..42f4ede 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "flatted": "^3.2.7", "h3": "^1.6.6", "hookable": "^5.5.3", - "nuxt": "3.4.2", + "nuxt": "3.5.0", "nuxt-icon": "^0.3.3", "sirv": "^2.0.3", "tinyws": "^0.1.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4f02692..3483034 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3,90 +3,84 @@ lockfileVersion: '6.0' overrides: consola: ^3.1.0 -importers: - - .: - dependencies: - '@nuxt/devtools': - specifier: ^0.4.6 - version: 0.4.6(nuxt@3.4.2)(rollup@3.21.8)(vite@4.3.7) - '@nuxt/devtools-kit': - specifier: ^0.4.6 - version: 0.4.6(nuxt@3.4.2)(rollup@3.21.8)(vite@4.3.7) - '@nuxt/devtools-ui-kit': - specifier: ^0.4.6 - version: 0.4.6(@nuxt/devtools@0.4.6)(nuxt@3.4.2)(postcss@8.4.23)(rollup@3.21.8)(vite@4.3.7)(vue@3.3.2)(webpack@5.82.1) - '@nuxt/kit': - specifier: ^3.5.0 - version: 3.5.0(rollup@3.21.8) - '@nuxtjs/tailwindcss': - specifier: ^6.7.0 - version: 6.7.0(rollup@3.21.8)(webpack@5.82.1) - '@vueuse/core': - specifier: ^9.13.0 - version: 9.13.0(vue@3.3.2) - '@vueuse/nuxt': - specifier: ^9.13.0 - version: 9.13.0(nuxt@3.4.2)(rollup@3.21.8)(vue@3.3.2) - birpc: - specifier: ^0.2.11 - version: 0.2.11 - changelogen: - specifier: ^0.4.1 - version: 0.4.1 - consola: - specifier: ^3.1.0 - version: 3.1.0 - eslint: - specifier: ^8.40.0 - version: 8.40.0 - flatted: - specifier: ^3.2.7 - version: 3.2.7 - h3: - specifier: ^1.6.6 - version: 1.6.6 - hookable: - specifier: ^5.5.3 - version: 5.5.3 - nuxt: - specifier: 3.4.2 - version: 3.4.2(@types/node@18.16.10)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4) - nuxt-icon: - specifier: ^0.3.3 - version: 0.3.3(rollup@3.21.8)(vue@3.3.2) - sirv: - specifier: ^2.0.3 - version: 2.0.3 - tinyws: - specifier: ^0.1.0 - version: 0.1.0(ws@8.13.0) - unstorage: - specifier: ^1.6.0 - version: 1.6.0 - devDependencies: - '@nuxt/eslint-config': - specifier: ^0.1.1 - version: 0.1.1(eslint@8.40.0) - '@nuxt/module-builder': - specifier: ^0.3.1 - version: 0.3.1 - '@nuxt/schema': - specifier: latest - version: 3.5.0(rollup@3.21.8) - '@nuxt/test-utils': - specifier: latest - version: 3.5.0(rollup@3.21.8)(vitest@0.28.5)(vue@3.3.2) - '@nuxtjs/eslint-config-typescript': - specifier: ^12.0.0 - version: 12.0.0(eslint@8.40.0)(typescript@5.0.4) - vitest: - specifier: ^0.28.5 - version: 0.28.5 - - packages/nuxt-hydration: {} - - packages/nuxt-hydration-client: {} +dependencies: + '@nuxt/devtools': + specifier: ^0.4.6 + version: 0.4.6(nuxt@3.5.0)(rollup@3.21.8)(vite@4.3.7) + '@nuxt/devtools-kit': + specifier: ^0.4.6 + version: 0.4.6(nuxt@3.5.0)(rollup@3.21.8)(vite@4.3.7) + '@nuxt/devtools-ui-kit': + specifier: ^0.4.6 + version: 0.4.6(@nuxt/devtools@0.4.6)(nuxt@3.5.0)(postcss@8.4.23)(rollup@3.21.8)(vite@4.3.7)(vue@3.3.2)(webpack@5.82.1) + '@nuxt/kit': + specifier: ^3.5.0 + version: 3.5.0(rollup@3.21.8) + '@nuxtjs/tailwindcss': + specifier: ^6.7.0 + version: 6.7.0(rollup@3.21.8)(webpack@5.82.1) + '@vueuse/core': + specifier: ^9.13.0 + version: 9.13.0(vue@3.3.2) + '@vueuse/nuxt': + specifier: ^9.13.0 + version: 9.13.0(nuxt@3.5.0)(rollup@3.21.8)(vue@3.3.2) + birpc: + specifier: ^0.2.11 + version: 0.2.11 + changelogen: + specifier: ^0.4.1 + version: 0.4.1 + consola: + specifier: ^3.1.0 + version: 3.1.0 + eslint: + specifier: ^8.40.0 + version: 8.40.0 + flatted: + specifier: ^3.2.7 + version: 3.2.7 + h3: + specifier: ^1.6.6 + version: 1.6.6 + hookable: + specifier: ^5.5.3 + version: 5.5.3 + nuxt: + specifier: 3.5.0 + version: 3.5.0(@types/node@20.1.5)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4) + nuxt-icon: + specifier: ^0.3.3 + version: 0.3.3(rollup@3.21.8)(vue@3.3.2) + sirv: + specifier: ^2.0.3 + version: 2.0.3 + tinyws: + specifier: ^0.1.0 + version: 0.1.0(ws@8.13.0) + unstorage: + specifier: ^1.6.0 + version: 1.6.0 + +devDependencies: + '@nuxt/eslint-config': + specifier: ^0.1.1 + version: 0.1.1(eslint@8.40.0) + '@nuxt/module-builder': + specifier: ^0.3.1 + version: 0.3.1 + '@nuxt/schema': + specifier: latest + version: 3.5.0(rollup@3.21.8) + '@nuxt/test-utils': + specifier: latest + version: 3.5.0(rollup@3.21.8)(vitest@0.28.5)(vue@3.3.2) + '@nuxtjs/eslint-config-typescript': + specifier: ^12.0.0 + version: 12.0.0(eslint@8.40.0)(typescript@5.0.4) + vitest: + specifier: ^0.28.5 + version: 0.28.5 packages: @@ -925,7 +919,7 @@ packages: resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==} dev: false - /@nuxt/devtools-kit@0.4.6(nuxt@3.4.2)(rollup@3.21.8)(vite@4.3.7): + /@nuxt/devtools-kit@0.4.6(nuxt@3.5.0)(rollup@3.21.8)(vite@4.3.7): resolution: {integrity: sha512-zqWvpkg7sV1spJ7ekQ4L8iRZ+3yUtJllS5j+jyUtzhjb77kEcfYagzPOSGTbg5Wv1tJCBQaCZIEchIwai+AYeA==} peerDependencies: nuxt: ^3.4.2 @@ -934,21 +928,21 @@ packages: '@nuxt/kit': 3.5.0(rollup@3.21.8) '@nuxt/schema': 3.5.0(rollup@3.21.8) execa: 7.1.1 - nuxt: 3.4.2(@types/node@18.16.10)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4) - vite: 4.3.7(@types/node@18.16.10) + nuxt: 3.5.0(@types/node@20.1.5)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4) + vite: 4.3.7(@types/node@20.1.5) transitivePeerDependencies: - rollup - supports-color dev: false - /@nuxt/devtools-ui-kit@0.4.6(@nuxt/devtools@0.4.6)(nuxt@3.4.2)(postcss@8.4.23)(rollup@3.21.8)(vite@4.3.7)(vue@3.3.2)(webpack@5.82.1): + /@nuxt/devtools-ui-kit@0.4.6(@nuxt/devtools@0.4.6)(nuxt@3.5.0)(postcss@8.4.23)(rollup@3.21.8)(vite@4.3.7)(vue@3.3.2)(webpack@5.82.1): resolution: {integrity: sha512-8jwlnOM8S+qK7DYKeKuRgfZafilRp5FOTR6V+dFe3dldZn5ZgDx7jIzWZ+YeFqF+o4FsZpuyjncFMK2XS2hnIg==} peerDependencies: '@nuxt/devtools': 0.4.6 dependencies: '@iconify-json/carbon': 1.1.16 - '@nuxt/devtools': 0.4.6(nuxt@3.4.2)(rollup@3.21.8)(vite@4.3.7) - '@nuxt/devtools-kit': 0.4.6(nuxt@3.4.2)(rollup@3.21.8)(vite@4.3.7) + '@nuxt/devtools': 0.4.6(nuxt@3.5.0)(rollup@3.21.8)(vite@4.3.7) + '@nuxt/devtools-kit': 0.4.6(nuxt@3.5.0)(rollup@3.21.8)(vite@4.3.7) '@nuxt/kit': 3.5.0(rollup@3.21.8) '@nuxtjs/color-mode': 3.2.0(rollup@3.21.8) '@unocss/core': 0.51.13 @@ -959,7 +953,7 @@ packages: '@unocss/reset': 0.51.13 '@vueuse/core': 10.1.2(vue@3.3.2) '@vueuse/integrations': 10.1.2(focus-trap@7.4.1)(vue@3.3.2) - '@vueuse/nuxt': 10.1.2(nuxt@3.4.2)(rollup@3.21.8)(vue@3.3.2) + '@vueuse/nuxt': 10.1.2(nuxt@3.5.0)(rollup@3.21.8)(vue@3.3.2) defu: 6.1.2 focus-trap: 7.4.1 unocss: 0.51.13(@unocss/webpack@0.51.13)(postcss@8.4.23)(rollup@3.21.8)(vite@4.3.7) @@ -1004,14 +998,14 @@ packages: semver: 7.5.1 dev: false - /@nuxt/devtools@0.4.6(nuxt@3.4.2)(rollup@3.21.8)(vite@4.3.7): + /@nuxt/devtools@0.4.6(nuxt@3.5.0)(rollup@3.21.8)(vite@4.3.7): resolution: {integrity: sha512-cDriP/vY0uVRSeuBg4iXIAqZfAhPzPpF4biUEKiKpsEO34Cxjs8WYFuoagbU1chZQHQ5kdHHI2N4PpnjFVc7xQ==} hasBin: true peerDependencies: nuxt: ^3.4.2 vite: '*' dependencies: - '@nuxt/devtools-kit': 0.4.6(nuxt@3.4.2)(rollup@3.21.8)(vite@4.3.7) + '@nuxt/devtools-kit': 0.4.6(nuxt@3.5.0)(rollup@3.21.8)(vite@4.3.7) '@nuxt/devtools-wizard': 0.4.6 '@nuxt/kit': 3.5.0(rollup@3.21.8) birpc: 0.2.11 @@ -1026,7 +1020,7 @@ packages: is-installed-globally: 0.4.0 launch-editor: 2.6.0 local-pkg: 0.4.3 - nuxt: 3.4.2(@types/node@18.16.10)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4) + nuxt: 3.5.0(@types/node@20.1.5)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4) nypm: 0.2.0 pacote: 15.1.3 pathe: 1.1.0 @@ -1038,7 +1032,7 @@ packages: sirv: 2.0.3 tinyws: 0.1.0(ws@8.13.0) unimport: 3.0.6(rollup@3.21.8) - vite: 4.3.7(@types/node@18.16.10) + vite: 4.3.7(@types/node@20.1.5) vite-plugin-inspect: 0.7.26(rollup@3.21.8)(vite@4.3.7) vite-plugin-vue-inspector: 3.4.2(vite@4.3.7) wait-on: 7.0.1 @@ -1068,33 +1062,6 @@ packages: - supports-color dev: true - /@nuxt/kit@3.4.2(rollup@3.21.8): - resolution: {integrity: sha512-bFUpkyG2ZF6RYqiW+tXnWssccHQQqMF4kZJJLP/0eKXf+Fkt/Is0R7IY768jy8ylnyqeMBbmpg4Zv5gSZjfZQw==} - engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} - dependencies: - '@nuxt/schema': 3.4.2(rollup@3.21.8) - c12: 1.4.1 - consola: 3.1.0 - defu: 6.1.2 - globby: 13.1.4 - hash-sum: 2.0.0 - ignore: 5.2.4 - jiti: 1.18.2 - knitwork: 1.0.0 - lodash.template: 4.5.0 - mlly: 1.2.1 - pathe: 1.1.0 - pkg-types: 1.0.3 - scule: 1.0.0 - semver: 7.5.1 - unctx: 2.3.0 - unimport: 3.0.6(rollup@3.21.8) - untyped: 1.3.2 - transitivePeerDependencies: - - rollup - - supports-color - dev: false - /@nuxt/kit@3.5.0(rollup@3.21.8): resolution: {integrity: sha512-QqhOPTan5cpaYCksSWdmtpldCGfnsqTd55blztMSF+OPxfGav4GE4BrBD3ZSMn2/5MxieF3GU/w5/tgcDXE3bA==} engines: {node: ^14.18.0 || >=16.10.0} @@ -1150,24 +1117,6 @@ packages: - webpack dev: false - /@nuxt/schema@3.4.2(rollup@3.21.8): - resolution: {integrity: sha512-DXB/fyjrAssFt9KGXyS+ZSfm1A0NYKhEoc01wyz1lGo//oETzUh3MmwE6X3x65NPqDlYZ6Mnj+IdftRRophv5Q==} - engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} - dependencies: - defu: 6.1.2 - hookable: 5.5.3 - pathe: 1.1.0 - pkg-types: 1.0.3 - postcss-import-resolver: 2.0.0 - std-env: 3.3.3 - ufo: 1.1.2 - unimport: 3.0.6(rollup@3.21.8) - untyped: 1.3.2 - transitivePeerDependencies: - - rollup - - supports-color - dev: false - /@nuxt/schema@3.5.0(rollup@3.21.8): resolution: {integrity: sha512-zz7S5RTCTGSCAyfNxO0R+TYvgk7WQdHUWJiAiTFQ+iFtqQkb/re1I86Ba9VKTJjZmm3fUI5kT5Y62emJcOLlXw==} engines: {node: ^14.18.0 || >=16.10.0} @@ -1250,13 +1199,13 @@ packages: resolution: {integrity: sha512-PjVETP7+iZXAs5Q8O4ivl4t6qjWZMZqwiTVogUXHoHGZZcw7GZW3u3tzfYfE1HbzyYJfr236IXqQ02MeR8Fz2w==} dev: false - /@nuxt/vite-builder@3.4.2(@types/node@18.16.10)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4)(vue@3.3.2): - resolution: {integrity: sha512-uLyy0sklOvGqj+yHAxSBE+wxyHvHZmYEfFjx03UEdMbYwpJlhPcqrt0pnWFJAkPWf8ZgpKymr8LNngsyYtNtAA==} - engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + /@nuxt/vite-builder@3.5.0(@types/node@20.1.5)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4)(vue@3.3.2): + resolution: {integrity: sha512-Z3awoa7laznTP8KjliKAzQH2ECrFW+2Zlmb+H/RSl2NlIAfsRU/WGnjIPBgfoa1N5GEZcqHqChnh2J04iepIKQ==} + engines: {node: ^14.18.0 || >=16.10.0} peerDependencies: - vue: ^3.2.47 + vue: ^3.3.2 dependencies: - '@nuxt/kit': 3.4.2(rollup@3.21.8) + '@nuxt/kit': 3.5.0(rollup@3.21.8) '@rollup/plugin-replace': 5.0.2(rollup@3.21.8) '@vitejs/plugin-vue': 4.2.3(vite@4.3.7)(vue@3.3.2) '@vitejs/plugin-vue-jsx': 3.0.1(vite@4.3.7)(vue@3.3.2) @@ -1276,7 +1225,7 @@ packages: mlly: 1.2.1 ohash: 1.1.2 pathe: 1.1.0 - perfect-debounce: 0.1.3 + perfect-debounce: 1.0.0 pkg-types: 1.0.3 postcss: 8.4.23 postcss-import: 15.1.0(postcss@8.4.23) @@ -1286,9 +1235,9 @@ packages: strip-literal: 1.0.1 ufo: 1.1.2 unplugin: 1.3.1 - vite: 4.3.7(@types/node@18.16.10) - vite-node: 0.30.1(@types/node@18.16.10) - vite-plugin-checker: 0.5.6(eslint@8.40.0)(typescript@5.0.4)(vite@4.3.7) + vite: 4.3.7(@types/node@20.1.5) + vite-node: 0.31.0(@types/node@20.1.5) + vite-plugin-checker: 0.6.0(eslint@8.40.0)(typescript@5.0.4)(vite@4.3.7) vue: 3.3.2 vue-bundle-renderer: 1.0.3 transitivePeerDependencies: @@ -1630,13 +1579,8 @@ packages: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true - /@types/node@18.16.10: - resolution: {integrity: sha512-sMo3EngB6QkMBlB9rBe1lFdKSLqljyWPPWv6/FzSxh/IDlyVWSzE9RiF4eAuerQHybrWdqBgAGb03PM89qOasA==} - dev: false - /@types/node@20.1.5: resolution: {integrity: sha512-IvGD1CD/nego63ySR7vrAKEX3AJTcmrAN2kn+/sDNLi1Ff5kBzDeEdqWDplK+0HAEoLYej137Sk0cUU8OLOlMg==} - dev: true /@types/normalize-package-data@2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -2148,7 +2092,7 @@ packages: chokidar: 3.5.3 fast-glob: 3.2.12 magic-string: 0.30.0 - vite: 4.3.7(@types/node@18.16.10) + vite: 4.3.7(@types/node@20.1.5) transitivePeerDependencies: - rollup dev: false @@ -2203,7 +2147,7 @@ packages: '@babel/core': 7.21.8 '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.8) '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.8) - vite: 4.3.7(@types/node@18.16.10) + vite: 4.3.7(@types/node@20.1.5) vue: 3.3.2 transitivePeerDependencies: - supports-color @@ -2216,7 +2160,7 @@ packages: vite: ^4.0.0 vue: ^3.2.25 dependencies: - vite: 4.3.7(@types/node@18.16.10) + vite: 4.3.7(@types/node@20.1.5) vue: 3.3.2 dev: false @@ -2252,6 +2196,25 @@ packages: pretty-format: 27.5.1 dev: true + /@vue-macros/common@1.3.1(rollup@3.21.8)(vue@3.3.2): + resolution: {integrity: sha512-Lc5aP/8HNJD1XrnvpeNuWcCf82bZdR3auN/chA1b/1rKZgSnmQkH9f33tKO9qLwXSy+u4hpCi8Rw+oUuF1KCeg==} + engines: {node: '>=14.19.0'} + peerDependencies: + vue: ^2.7.0 || ^3.2.25 + peerDependenciesMeta: + vue: + optional: true + dependencies: + '@babel/types': 7.21.5 + '@rollup/pluginutils': 5.0.2(rollup@3.21.8) + '@vue/compiler-sfc': 3.3.2 + local-pkg: 0.4.3 + magic-string-ast: 0.1.2 + vue: 3.3.2 + transitivePeerDependencies: + - rollup + dev: false + /@vue/babel-helper-vue-transform-on@1.0.2: resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} dev: false @@ -2432,7 +2395,7 @@ packages: resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==} dev: false - /@vueuse/nuxt@10.1.2(nuxt@3.4.2)(rollup@3.21.8)(vue@3.3.2): + /@vueuse/nuxt@10.1.2(nuxt@3.5.0)(rollup@3.21.8)(vue@3.3.2): resolution: {integrity: sha512-X9o5WCmNs1+6XztP1Uh9+H7/jGeIjwSRNQdwCWRKCDkxPlbgi9iLnDRYnKDY++JPY3nbB6jTDOVgZDrpaAU5kg==} peerDependencies: nuxt: ^3.0.0 @@ -2441,7 +2404,7 @@ packages: '@vueuse/core': 10.1.2(vue@3.3.2) '@vueuse/metadata': 10.1.2 local-pkg: 0.4.3 - nuxt: 3.4.2(@types/node@18.16.10)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4) + nuxt: 3.5.0(@types/node@20.1.5)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4) vue-demi: 0.14.1(vue@3.3.2) transitivePeerDependencies: - '@vue/composition-api' @@ -2450,7 +2413,7 @@ packages: - vue dev: false - /@vueuse/nuxt@9.13.0(nuxt@3.4.2)(rollup@3.21.8)(vue@3.3.2): + /@vueuse/nuxt@9.13.0(nuxt@3.5.0)(rollup@3.21.8)(vue@3.3.2): resolution: {integrity: sha512-JunH/w6nFIwCyaZ0s+pfrYFMfBzGfhkwmFPz7ogHFmb71Ty/5HINrYOAOZCXpN44X6QH6FiJq/wuLLdvYzqFUw==} peerDependencies: nuxt: ^3.0.0 @@ -2459,7 +2422,7 @@ packages: '@vueuse/core': 9.13.0(vue@3.3.2) '@vueuse/metadata': 9.13.0 local-pkg: 0.4.3 - nuxt: 3.4.2(@types/node@18.16.10)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4) + nuxt: 3.5.0(@types/node@20.1.5)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4) vue-demi: 0.14.1(vue@3.3.2) transitivePeerDependencies: - '@vue/composition-api' @@ -2855,6 +2818,14 @@ packages: tslib: 2.5.0 dev: false + /ast-walker-scope@0.4.1: + resolution: {integrity: sha512-Ro3nmapMxi/remlJdzFH0tiA7A59KDbxVoLlKWaLDrPELiftb9b8w+CCyWRM+sXZH5KHRAgv8feedW6mihvCHA==} + engines: {node: '>=14.19.0'} + dependencies: + '@babel/parser': 7.21.8 + '@babel/types': 7.21.5 + dev: false + /async-sema@3.1.1: resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} dev: false @@ -3396,10 +3367,6 @@ packages: /convert-source-map@1.9.0: resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - /cookie-es@0.5.0: - resolution: {integrity: sha512-RyZrFi6PNpBFbIaQjXDlFIhFVqV42QeKSZX1yQIl6ihImq6vcHNGMtqQ/QzY3RMPuYSkvsRwtnt5M9NeYxKt0g==} - dev: false - /cookie-es@1.0.0: resolution: {integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==} dev: false @@ -5463,7 +5430,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.16.10 + '@types/node': 20.1.5 merge-stream: 2.0.0 supports-color: 8.1.1 dev: false @@ -5796,6 +5763,13 @@ packages: engines: {node: 14 || >=16.14} dev: false + /magic-string-ast@0.1.2: + resolution: {integrity: sha512-P53AZrzq7hclCU6HWj88xNZHmP15DKjMmK/vBytO1qnpYP3ul4IEZlyCE0aU3JRnmgWmZPmoTKj4Bls7v0pMyA==} + engines: {node: '>=14.19.0'} + dependencies: + magic-string: 0.30.0 + dev: false + /magic-string@0.27.0: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} engines: {node: '>=12'} @@ -6439,9 +6413,9 @@ packages: dependencies: boolbase: 1.0.0 - /nuxi@3.4.2: - resolution: {integrity: sha512-kwKEbfS3EhiQX8BMwcAPgfWiFlV8gBa2dI0kPNYD3Egab5Vixs3P2h6dGq7RsEYZEJ6aU876J44ySF7l8bmDGg==} - engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + /nuxi@3.5.0: + resolution: {integrity: sha512-PQ2dhnKZBpnSbHx5pW/21nA9/X9T4P0mIStqWRX3/3qUnFwELp9DAQq4e14kwaXY6mkSohpplPr1kaasgGB2ZA==} + engines: {node: ^14.18.0 || >=16.10.0} hasBin: true optionalDependencies: fsevents: 2.3.2 @@ -6472,29 +6446,30 @@ packages: - vue dev: false - /nuxt@3.4.2(@types/node@18.16.10)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4): - resolution: {integrity: sha512-4v+oeBL4ZI8nHzF0Dm1p5kF9VCNlzrpvOt7wu3BnmzlueXsu4A/LfmFvpfZLxws+r5U74eM5Ut/LMD8B8LrZIw==} - engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} + /nuxt@3.5.0(@types/node@20.1.5)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4): + resolution: {integrity: sha512-luUmzwnywpBhA5KSJr0IulBAK36mY4XWgtq/sJXYBCthPrdEhq6yIEHFRv7xSrYso1griMIVq+ivIFKSMe/QUw==} + engines: {node: ^14.18.0 || >=16.10.0} hasBin: true peerDependencies: '@parcel/watcher': ^2.1.0 - '@types/node': ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + '@types/node': ^14.18.0 || >=16.10.0 peerDependenciesMeta: '@parcel/watcher': optional: true dependencies: '@nuxt/devalue': 2.0.2 - '@nuxt/kit': 3.4.2(rollup@3.21.8) - '@nuxt/schema': 3.4.2(rollup@3.21.8) + '@nuxt/kit': 3.5.0(rollup@3.21.8) + '@nuxt/schema': 3.5.0(rollup@3.21.8) '@nuxt/telemetry': 2.2.0(rollup@3.21.8) '@nuxt/ui-templates': 1.1.1 - '@nuxt/vite-builder': 3.4.2(@types/node@18.16.10)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4)(vue@3.3.2) - '@types/node': 18.16.10 + '@nuxt/vite-builder': 3.5.0(@types/node@20.1.5)(eslint@8.40.0)(rollup@3.21.8)(typescript@5.0.4)(vue@3.3.2) + '@types/node': 20.1.5 '@unhead/ssr': 1.1.26 '@unhead/vue': 1.1.26(vue@3.3.2) '@vue/shared': 3.3.2 + c12: 1.4.1 chokidar: 3.5.3 - cookie-es: 0.5.0 + cookie-es: 1.0.0 defu: 6.1.2 destr: 1.2.2 devalue: 4.3.1 @@ -6511,20 +6486,23 @@ packages: magic-string: 0.30.0 mlly: 1.2.1 nitropack: 2.4.0 - nuxi: 3.4.2 + nuxi: 3.5.0 nypm: 0.2.0 ofetch: 1.0.1 ohash: 1.1.2 pathe: 1.1.0 - perfect-debounce: 0.1.3 + perfect-debounce: 1.0.0 prompts: 2.4.2 scule: 1.0.0 strip-literal: 1.0.1 ufo: 1.1.2 + ultrahtml: 1.2.0 + uncrypto: 0.1.2 unctx: 2.3.0 unenv: 1.4.1 unimport: 3.0.6(rollup@3.21.8) unplugin: 1.3.1 + unplugin-vue-router: 0.6.4(rollup@3.21.8)(vue-router@4.2.0)(vue@3.3.2) untyped: 1.3.2 vue: 3.3.2 vue-bundle-renderer: 1.0.3 @@ -8523,6 +8501,10 @@ packages: /ufo@1.1.2: resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==} + /ultrahtml@1.2.0: + resolution: {integrity: sha512-vxZM2yNvajRmCj/SknRYGNXk2tqiy6kRNvZjJLaleG3zJbSh/aNkOqD1/CVzypw8tyHyhpzYuwQgMMhUB4ZVNQ==} + dev: false + /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: @@ -8697,6 +8679,33 @@ packages: - vite dev: false + /unplugin-vue-router@0.6.4(rollup@3.21.8)(vue-router@4.2.0)(vue@3.3.2): + resolution: {integrity: sha512-9THVhhtbVFxbsIibjK59oPwMI1UCxRWRPX7azSkTUABsxovlOXJys5SJx0kd/0oKIqNJuYgkRfAgPuO77SqCOg==} + peerDependencies: + vue-router: ^4.1.0 + peerDependenciesMeta: + vue-router: + optional: true + dependencies: + '@babel/types': 7.21.5 + '@rollup/pluginutils': 5.0.2(rollup@3.21.8) + '@vue-macros/common': 1.3.1(rollup@3.21.8)(vue@3.3.2) + ast-walker-scope: 0.4.1 + chokidar: 3.5.3 + fast-glob: 3.2.12 + json5: 2.2.3 + local-pkg: 0.4.3 + mlly: 1.2.1 + pathe: 1.1.0 + scule: 1.0.0 + unplugin: 1.3.1 + vue-router: 4.2.0(vue@3.3.2) + yaml: 2.2.2 + transitivePeerDependencies: + - rollup + - vue + dev: false + /unplugin@1.3.1: resolution: {integrity: sha512-h4uUTIvFBQRxUKS2Wjys6ivoeofGhxzTe2sRWlooyjHXVttcVfV/JiavNd3d4+jty0SVV0dxGw9AkY9MwiaCEw==} dependencies: @@ -8846,8 +8855,8 @@ packages: - terser dev: true - /vite-node@0.30.1(@types/node@18.16.10): - resolution: {integrity: sha512-vTikpU/J7e6LU/8iM3dzBo8ZhEiKZEKRznEMm+mJh95XhWaPrJQraT/QsT2NWmuEf+zgAoMe64PKT7hfZ1Njmg==} + /vite-node@0.31.0(@types/node@20.1.5): + resolution: {integrity: sha512-8x1x1LNuPvE2vIvkSB7c1mApX5oqlgsxzHQesYF7l5n1gKrEmrClIiZuOFbFDQcjLsmcWSwwmrWrcGWm9Fxc/g==} engines: {node: '>=v14.18.0'} hasBin: true dependencies: @@ -8856,7 +8865,7 @@ packages: mlly: 1.2.1 pathe: 1.1.0 picocolors: 1.0.0 - vite: 4.3.7(@types/node@18.16.10) + vite: 4.3.7(@types/node@20.1.5) transitivePeerDependencies: - '@types/node' - less @@ -8867,8 +8876,8 @@ packages: - terser dev: false - /vite-plugin-checker@0.5.6(eslint@8.40.0)(typescript@5.0.4)(vite@4.3.7): - resolution: {integrity: sha512-ftRyON0gORUHDxcDt2BErmsikKSkfvl1i2DoP6Jt2zDO9InfvM6tqO1RkXhSjkaXEhKPea6YOnhFaZxW3BzudQ==} + /vite-plugin-checker@0.6.0(eslint@8.40.0)(typescript@5.0.4)(vite@4.3.7): + resolution: {integrity: sha512-DWZ9Hv2TkpjviPxAelNUt4Q3IhSGrx7xrwdM64NI+Q4dt8PaMWJJh4qGNtSrfEuiuIzWWo00Ksvh5It4Y3L9xQ==} engines: {node: '>=14.16'} peerDependencies: eslint: '>=7' @@ -8879,7 +8888,7 @@ packages: vite: '>=2.0.0' vls: '*' vti: '*' - vue-tsc: '*' + vue-tsc: '>=1.3.9' peerDependenciesMeta: eslint: optional: true @@ -8909,10 +8918,11 @@ packages: lodash.debounce: 4.0.8 lodash.pick: 4.4.0 npm-run-path: 4.0.1 + semver: 7.5.1 strip-ansi: 6.0.1 tiny-invariant: 1.3.1 typescript: 5.0.4 - vite: 4.3.7(@types/node@18.16.10) + vite: 4.3.7(@types/node@20.1.5) vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.8 @@ -8931,7 +8941,7 @@ packages: fs-extra: 11.1.1 picocolors: 1.0.0 sirv: 2.0.3 - vite: 4.3.7(@types/node@18.16.10) + vite: 4.3.7(@types/node@20.1.5) transitivePeerDependencies: - rollup - supports-color @@ -8951,44 +8961,11 @@ packages: kolorist: 1.8.0 magic-string: 0.30.0 shell-quote: 1.8.1 - vite: 4.3.7(@types/node@18.16.10) + vite: 4.3.7(@types/node@20.1.5) transitivePeerDependencies: - supports-color dev: false - /vite@4.3.7(@types/node@18.16.10): - resolution: {integrity: sha512-MTIFpbIm9v7Hh5b0wSBgkcWzSBz7SAa6K/cBTwS4kUiQJfQLFlZZRJRQgqunCVzhTPCk674tW+0Qaqh3Q00dBg==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - '@types/node': 18.16.10 - esbuild: 0.17.19 - postcss: 8.4.23 - rollup: 3.21.8 - optionalDependencies: - fsevents: 2.3.2 - dev: false - /vite@4.3.7(@types/node@20.1.5): resolution: {integrity: sha512-MTIFpbIm9v7Hh5b0wSBgkcWzSBz7SAa6K/cBTwS4kUiQJfQLFlZZRJRQgqunCVzhTPCk674tW+0Qaqh3Q00dBg==} engines: {node: ^14.18.0 || >=16.0.0} @@ -9020,7 +8997,6 @@ packages: rollup: 3.21.8 optionalDependencies: fsevents: 2.3.2 - dev: true /vitest@0.28.5: resolution: {integrity: sha512-pyCQ+wcAOX7mKMcBNkzDwEHRGqQvHUl0XnoHR+3Pb1hytAHISgSxv9h0gUiSiYtISXUU3rMrKiKzFYDrI6ZIHA==}