Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(nuxt): experimental option for rich json payloads #19205

Merged
merged 34 commits into from Apr 7, 2023
Merged

Conversation

pi0
Copy link
Member

@pi0 pi0 commented Feb 21, 2023

πŸ”— Linked issue

Resolves #19201

❓ Type of change

  • πŸ“– Documentation (updates to the documentation or readme)
  • 🐞 Bug fix (a non-breaking change that fixes an issue)
  • πŸ‘Œ Enhancement (improving an existing functionality like performance)
  • ✨ New feature (a non-breaking change that adds functionality)
  • ⚠️ Breaking change (fix or feature that would cause existing functionality to change)

πŸ“š Description

Started PR as a smaller refactor to switch to devalue v4. However other than the uneval function that works identically to the current version of devalue in Nuxt, devalue now supports native JSON and reduces/revives with it. This has many advantages over self-evaluating scripts we had been always using for Nuxt since devalue.

Note: This PR is a work in progress and needs more testing, iterations, and reactors. Will be working with @danielroe on it. Meanwhile, feedback is more than welcome regarding the direction and API.

New features:

  • Using devalue v4
  • Using <script type="application/json"> for payloads (instead of injecting a self-evaluating window.__NUXT__ payload)
  • Payload scripts are loaded using cross-origin fetch now (instead of inline import in HTML)
  • Custom Types can be registered

TODO:

  • Discuss and validate the proposed custom types system
  • Benchmark JSON performances over the current self-eval
  • Verify XSS not happening
  • Verify payload extraction mode behavior

Custom Payload Types

Custom Payload types need to be globally registered by users so that we can reduce (serialize) them on rendering and revive (desrialize) them when initializing the Nuxt application. Previously things like custom classes were considered non-pojos and ignored.

// plugins/vector.ts
class Vector {
  x: number
  y: number
  constructor (x: number, y: number) {
    this.x = x
    this.y = y
  }

  magnitude () {
    return Math.sqrt(this.x * this.x + this.y * this.y)
  }
}

definePayloadType('Vector',
  value => value instanceof Vector && [value.x, value.y],
  ([x, y]) => new Vector(x, y)
)

export default defineNuxtPlugin(() => {
  return {
    provide: {
      Vector
    }
  }
})
<script setup lang="ts">

const test = [1, 2, 3]
const { $Vector } = useNuxtApp()

const s = useState('s', () => ({
  vector: new $Vector(30, 40),
  test,
  nested: {
    test
  }
}))

</script>

<template>
  <div>
    {{ s }}
  </div>
</template>

HTML:

image

Output (hydrated!)

{ "vector": { "x": 30, "y": 40 }, "test": [ 1, 2, 3 ], "nested": { "test": [ 1, 2, 3 ] } }

πŸ“ Checklist

  • I have linked an issue or discussion.
  • I have updated the documentation accordingly.

@pi0 pi0 requested review from Atinux and a team February 21, 2023 23:32
@pi0 pi0 assigned pi0 and danielroe Feb 21, 2023
@pi0 pi0 requested review from manniL and harlan-zw and removed request for a team February 21, 2023 23:32
@codesandbox
Copy link

codesandbox bot commented Feb 21, 2023

CodeSandbox logoCodeSandbox logoΒ  Open in CodeSandbox Web Editor | VS Code | VS Code Insiders

@pi0 pi0 changed the title feat(nuxt): render ssr payloads as json and reviver feat(nuxt): render ssr payloads as json with custom types support Feb 21, 2023
Co-authored-by: Horu <73709188+HigherOrderLogic@users.noreply.github.com>
@danielroe
Copy link
Member

danielroe commented Apr 7, 2023

Some key changes for consideration:

  1. The feature is now opt-in, so we can merge and iterate over the 3.4 release cycle, and hopefully release stably in 3.5.
  2. Registering custom types is now done in Nuxt plugins to avoid the risk of XRSP. Once we add object syntax plugins, we can add an easy way for users to ensure their plugin runs at the right time. We can still consider adding global type support later (maybe for $fetch integration? πŸ‘€).
  3. We support default Vue types of ref/reactive/shallowRef/shallowReactive as well as NuxtError, which will automatically be handled. This allows us to decrease memory usage on client by using shallowReactive for payload. I plan to add support shortly for using shallowRef for their useAsyncData/useFetch requests by passing default: shallowRef, resolving AsyncData with a shallow refΒ #12406.

Would very much appreciate any thoughts/review, particularly from @pi0 ❀️

@pi0
Copy link
Member Author

pi0 commented Apr 7, 2023

Thanks for the updates specially making it opt-in @danielroe πŸ’― Changes look good to me overall.

@danielroe danielroe marked this pull request as ready for review April 7, 2023 09:45
@danielroe danielroe changed the title feat(nuxt): render ssr payloads as json with custom types support feat(nuxt): experimental option for rich json payloads Apr 7, 2023
@danielroe danielroe merged commit 9e503be into main Apr 7, 2023
12 checks passed
@danielroe danielroe deleted the feat/devalue branch April 7, 2023 10:34
huang-julien pushed a commit to huang-julien/nuxt-hydration that referenced this pull request May 16, 2023
[![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

<details>
<summary>nuxt/nuxt</summary>

### [`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
([nuxt/nuxt#20777),
thanks to [@&#8203;antfu](https://togithub.com/antfu) and
[@&#8203;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
([nuxt/nuxt#19205,
[nuxt/nuxt#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#&#8203;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 === '<original-blink>' && '_')
  definePayloadReviver('BlinkingText', () => '<revivified-blink>')
})
```

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
[@&#8203;huang-julien](https://togithub.com/huang-julien) we now support
interactive content within server components via *slots*
([nuxt/nuxt#20284).

You can follow the server component roadmap at
[nuxt/nuxt#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:
[nuxt/nuxt#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 [@&#8203;posva](https://togithub.com/posva)! Out of the box, this
will enable typed usage of `navigateTo`, `<NuxtLink>`, `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
([nuxt/nuxt#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`
([#&#8203;20307](https://togithub.com/nuxt/nuxt/pull/20307))
- **nuxt:** Add scoped helper for clearing error within boundary
([#&#8203;20508](https://togithub.com/nuxt/nuxt/pull/20508))
- **nuxt:** Auto import 'watchPostEffect' and 'watchSyncEffect' from vue
([#&#8203;20279](https://togithub.com/nuxt/nuxt/pull/20279))
- **vite:** Introduce `vite:configResolved` hook
([#&#8203;20411](https://togithub.com/nuxt/nuxt/pull/20411))
- **webpack:** Introduce `webpack:configResolved` hook
([#&#8203;20412](https://togithub.com/nuxt/nuxt/pull/20412))
- **kit:** Allow vite and webpack plugins to be prepended
([#&#8203;20403](https://togithub.com/nuxt/nuxt/pull/20403))
- **nuxt:** Add layer meta and env overrides to config types
([#&#8203;20329](https://togithub.com/nuxt/nuxt/pull/20329))
- **test-utils:** Add option to configure test server port
([#&#8203;20443](https://togithub.com/nuxt/nuxt/pull/20443))
- **nuxt:** Allow access to components within app
([#&#8203;20604](https://togithub.com/nuxt/nuxt/pull/20604))
- **kit:** Support passing getter to `addVitePlugin` and
`addWebpackPlugin`
([#&#8203;20525](https://togithub.com/nuxt/nuxt/pull/20525))
- **cli:** Allow greater control of `nuxi analyze` from cli
([#&#8203;20387](https://togithub.com/nuxt/nuxt/pull/20387))
- **nuxt:** Add `nuxtApp.runWithContext`
([#&#8203;20608](https://togithub.com/nuxt/nuxt/pull/20608))
- **deps:** Upgrade to nitropack v2.4
([#&#8203;20688](https://togithub.com/nuxt/nuxt/pull/20688))
- **nuxt:** Add experimental `typedPages` option
([#&#8203;20367](https://togithub.com/nuxt/nuxt/pull/20367))
- **nuxt:** Add apps to nuxt build-time instance
([#&#8203;20637](https://togithub.com/nuxt/nuxt/pull/20637))
- **cli:** Allow passing overrides to other nuxi commands
([#&#8203;20760](https://togithub.com/nuxt/nuxt/pull/20760))
- **schema:** Enable rich json payloads by default
([#&#8203;20770](https://togithub.com/nuxt/nuxt/pull/20770))
- **deps:** Update vue to v3.3
([#&#8203;20478](https://togithub.com/nuxt/nuxt/pull/20478))
- **nuxt:** Use `runWithContext` within `callWithNuxt`
([#&#8203;20775](https://togithub.com/nuxt/nuxt/pull/20775))
- **nuxt:** Add `useRequestURL` helper
([#&#8203;20765](https://togithub.com/nuxt/nuxt/pull/20765))
- **nuxt:** Allow fallback production content in `<DevOnly>`
([#&#8203;20817](https://togithub.com/nuxt/nuxt/pull/20817))
- **kit:** `addBuildPlugin` for builder-agnostic implementation
([#&#8203;20587](https://togithub.com/nuxt/nuxt/pull/20587))
- **nuxt:** Allow keeping fallback for `NuxtClientFallback`
([#&#8203;20336](https://togithub.com/nuxt/nuxt/pull/20336))
- **nuxt:** Support separate server tsconfig
([#&#8203;20559](https://togithub.com/nuxt/nuxt/pull/20559))
- **nuxt:** Full scoped slots support for server components
([#&#8203;20284](https://togithub.com/nuxt/nuxt/pull/20284))
- **nuxt:** Support parallel plugins
([#&#8203;20460](https://togithub.com/nuxt/nuxt/pull/20460))

##### 🩹 Fixes

- **nuxt:** Remove backwards-compatible runtimeConfig proxy
([#&#8203;20340](https://togithub.com/nuxt/nuxt/pull/20340))
- **nuxt:** Add `@nuxt/devtools` module before core modules
([#&#8203;20595](https://togithub.com/nuxt/nuxt/pull/20595))
- **nuxt:** Properly handle query for component wrapper
([#&#8203;20591](https://togithub.com/nuxt/nuxt/pull/20591))
- **nuxt:** Skip payload extraction for island context
([#&#8203;20590](https://togithub.com/nuxt/nuxt/pull/20590))
- **nuxt:** Remove internal `<FragmentWrapper>`
([#&#8203;20607](https://togithub.com/nuxt/nuxt/pull/20607))
- **nuxt:** Ensure `useError` is called with nuxt app context
([#&#8203;20585](https://togithub.com/nuxt/nuxt/pull/20585))
- **nuxt:** Run page meta plugin on all pages (and only pages)
([#&#8203;20628](https://togithub.com/nuxt/nuxt/pull/20628))
- **nuxt, vite:** Ignore `nuxt_component` ssr style and `isVue`
([#&#8203;20679](https://togithub.com/nuxt/nuxt/pull/20679))
- **webpack:** Warn when using deprecated `build.extend` hook
([#&#8203;20605](https://togithub.com/nuxt/nuxt/pull/20605))
- **nuxt:** Allow resolving client nuxt app to singleton
([#&#8203;20639](https://togithub.com/nuxt/nuxt/pull/20639))
- **nuxt:** Generate empty sourcemaps for wrappers
([#&#8203;20744](https://togithub.com/nuxt/nuxt/pull/20744))
- **nuxt:** Prevent treeshaking hooks with composable names
([#&#8203;20745](https://togithub.com/nuxt/nuxt/pull/20745))
- **kit:** Prefer esm resolution for modules to install
([#&#8203;20757](https://togithub.com/nuxt/nuxt/pull/20757))
- **vite:** Expand `fs.allow` dirs to include app files
([#&#8203;20755](https://togithub.com/nuxt/nuxt/pull/20755))
- **nuxt:** Deduplicate global components before registration
([#&#8203;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
([#&#8203;20777](https://togithub.com/nuxt/nuxt/pull/20777))
- **cli:** Hard-reload nuxt when `.env` changes
([#&#8203;20501](https://togithub.com/nuxt/nuxt/pull/20501))
- **nuxt:** Avoid destructuring error prop (works around upstream bug)
([#&#8203;20795](https://togithub.com/nuxt/nuxt/pull/20795))
- **nuxt:** Always inline styles for server/island components
([#&#8203;20599](https://togithub.com/nuxt/nuxt/pull/20599))
- **nuxt:** Allow serialising undefined refs
([#&#8203;20828](https://togithub.com/nuxt/nuxt/pull/20828))
- **nuxt:** Transform client fallbacks directly on SFCs
([#&#8203;20835](https://togithub.com/nuxt/nuxt/pull/20835))
- **vite:** Dedupe/optimize more vue core deps
([#&#8203;20829](https://togithub.com/nuxt/nuxt/pull/20829))
- **nuxt:** Get fallback for `<DevOnly>` from parsed html
([#&#8203;20840](https://togithub.com/nuxt/nuxt/pull/20840))
- **nuxt:** Ensure all dir parts are present in component name
([#&#8203;20779](https://togithub.com/nuxt/nuxt/pull/20779))
- **nuxt:** Allow `pages:extend` to enable pages module
([#&#8203;20806](https://togithub.com/nuxt/nuxt/pull/20806))
- **nuxt:** Stop loading indicator on vue errors
([#&#8203;20738](https://togithub.com/nuxt/nuxt/pull/20738))
- **nuxt:** Add types for webpack/vite environments
([#&#8203;20749](https://togithub.com/nuxt/nuxt/pull/20749))
- **nuxt:** Pass from + savedPosition to first `scrollBehavior`
([#&#8203;20859](https://togithub.com/nuxt/nuxt/pull/20859))

##### πŸ’… Refactors

- **schema:** Move `runtimeCompiler` option out of experimental
([#&#8203;20606](https://togithub.com/nuxt/nuxt/pull/20606))
- **kit:** Use esm utils for `resolvePath`
([#&#8203;20756](https://togithub.com/nuxt/nuxt/pull/20756))

##### πŸ“– Documentation

- Fix typo ([#&#8203;20577](https://togithub.com/nuxt/nuxt/pull/20577))
- Update tailwind configuration guide
([#&#8203;20598](https://togithub.com/nuxt/nuxt/pull/20598))
- Fix fetch composable examples
([#&#8203;20603](https://togithub.com/nuxt/nuxt/pull/20603))
- Note that `useCookie` does not share state
([#&#8203;20665](https://togithub.com/nuxt/nuxt/pull/20665))
- Selective pre-rendering options
([#&#8203;20670](https://togithub.com/nuxt/nuxt/pull/20670))
- Ensure we guard all `navigateTo` examples
([#&#8203;20678](https://togithub.com/nuxt/nuxt/pull/20678))
- Add `useSeoMeta` and `useServerSeoMeta` pages
([#&#8203;20656](https://togithub.com/nuxt/nuxt/pull/20656))
- Recommend `<NuxtLayout>` when migrating `error.vue`
([#&#8203;20690](https://togithub.com/nuxt/nuxt/pull/20690))
- Add lagon to presets list
([#&#8203;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`
([#&#8203;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
([#&#8203;20689](https://togithub.com/nuxt/nuxt/pull/20689))
- Disallow `.only` in tests
([ad97cb45a](https://togithub.com/nuxt/nuxt/commit/ad97cb45a))
- Type-check `.mjs` files
([#&#8203;20711](https://togithub.com/nuxt/nuxt/pull/20711))
- Fix typo in `pnpm-workspace.yaml`
([#&#8203;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
([#&#8203;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 ([@&#8203;danielroe](https://togithub.com/danielroe))
-   SΓ©bastien Chopin ([@&#8203;Atinux](https://togithub.com/Atinux))
-   Anthony Fu ([@&#8203;antfu](https://togithub.com/antfu))
- Julien Huang
([@&#8203;huang-julien](https://togithub.com/huang-julien))
- Alexander
([@&#8203;xanderbarkhatov](https://togithub.com/xanderbarkhatov))
- Dario Ferderber
([@&#8203;darioferderber](https://togithub.com/darioferderber))
-   η™½ι›ΎδΈ‰θ―­ ([@&#8203;baiwusanyu-c](https://togithub.com/baiwusanyu-c))
-   Inesh Bose ([@&#8203;ineshbose](https://togithub.com/ineshbose))
-   Lehoczky ZoltΓ‘n ([@&#8203;Lehoczky](https://togithub.com/Lehoczky))
-   Emile Caron ([@&#8203;emilecaron](https://togithub.com/emilecaron))
- Eckhardt (Kaizen) Dreyer
([@&#8203;Eckhardt-D](https://togithub.com/Eckhardt-D))
-   Eduardo San Martin Morote
-   Tom Lienard ([@&#8203;QuiiBz](https://togithub.com/QuiiBz))
-   Scscgit ([@&#8203;scscgit](https://togithub.com/scscgit))
-   ClΓ©ment Ollivier ([@&#8203;clemcode](https://togithub.com/clemcode))
- Jamie Warburton ([@&#8203;Jamiewarb](https://togithub.com/Jamiewarb))
-   Enkot ([@&#8203;enkot](https://togithub.com/enkot))
-   Phojie Rengel ([@&#8203;phojie](https://togithub.com/phojie))
-   Harlan Wilton ([@&#8203;harlan-zw](https://togithub.com/harlan-zw))
- GergΕ‘ Jedlicska
([@&#8203;gjedlicska](https://togithub.com/gjedlicska))
- Stefan Milosevic
([@&#8203;smilosevic](https://togithub.com/smilosevic))
-   Pavel Mokin ([@&#8203;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
([#&#8203;20424](https://togithub.com/nuxt/nuxt/pull/20424))
- **nuxt:** Use key to force server component re-rendering
([#&#8203;19911](https://togithub.com/nuxt/nuxt/pull/19911))
- **nuxt:** Add basic typings for `<ClientOnly>`
([f1ded44e8](https://togithub.com/nuxt/nuxt/commit/f1ded44e8))
- **nuxt:** Use `event.node.req` in cookie utility
([#&#8203;20474](https://togithub.com/nuxt/nuxt/pull/20474))
- **deps:** Relax upper node version constraint
([#&#8203;20472](https://togithub.com/nuxt/nuxt/pull/20472))
- **nuxi,schema:** Support `devServer.https: true`
([#&#8203;20498](https://togithub.com/nuxt/nuxt/pull/20498))
- **nuxt:** Throw 404 when accessing `/__nuxt_error` directly
([#&#8203;20497](https://togithub.com/nuxt/nuxt/pull/20497))
- **nuxt:** Use `callAsync` for executing hooks with context
([#&#8203;20510](https://togithub.com/nuxt/nuxt/pull/20510))
- **nuxt:** Improved typing support for app config
([#&#8203;20526](https://togithub.com/nuxt/nuxt/pull/20526))
- **nuxt:** Call `app:error` in SSR before rendering error page
([#&#8203;20511](https://togithub.com/nuxt/nuxt/pull/20511))
- **nuxt:** Restrict access to single renderer outside of test/rootDir
([#&#8203;20543](https://togithub.com/nuxt/nuxt/pull/20543))
- **nuxt:** Throw errors when running legacy `asyncData`
([#&#8203;20535](https://togithub.com/nuxt/nuxt/pull/20535))
- **nuxt:** Transform `#components` imports into direct component
imports ([#&#8203;20547](https://togithub.com/nuxt/nuxt/pull/20547))
- **nuxt:** Return `RenderResponse` for redirects
([#&#8203;20496](https://togithub.com/nuxt/nuxt/pull/20496))

##### πŸ“– Documentation

- Fix typos on docs homepage
([#&#8203;20456](https://togithub.com/nuxt/nuxt/pull/20456))
- Update links to `vue-router` docs
([#&#8203;20454](https://togithub.com/nuxt/nuxt/pull/20454))
- Remove RC reference and add link to vue migration build
([#&#8203;20485](https://togithub.com/nuxt/nuxt/pull/20485))
- Add cdn proxy section
([#&#8203;20408](https://togithub.com/nuxt/nuxt/pull/20408))
- Add a next steps link to first page of migration docs
([#&#8203;20512](https://togithub.com/nuxt/nuxt/pull/20512))
- Add custom fetch composable example
([#&#8203;20115](https://togithub.com/nuxt/nuxt/pull/20115))
- Adjust wrong link after repo migration
([#&#8203;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 ([@&#8203;danielroe](https://togithub.com/danielroe))
-   Anthony Fu ([@&#8203;antfu](https://togithub.com/antfu))
- Julien Huang
([@&#8203;huang-julien](https://togithub.com/huang-julien))
- Andrew Luca
([@&#8203;iamandrewluca](https://togithub.com/iamandrewluca))
-   Adrien Zaganelli ([@&#8203;adrienZ](https://togithub.com/adrienZ))
- Michael Gale (he/him)
([@&#8203;miclgael](https://togithub.com/miclgael))
-   ClΓ©ment Ollivier ([@&#8203;clemcode](https://togithub.com/clemcode))
-   Paul Melero ([@&#8203;gangsthub](https://togithub.com/gangsthub))
- Jonas Thelemann
([@&#8203;dargmuesli](https://togithub.com/dargmuesli))
-   Johannes Przymusinski ([@&#8203;cngJo](https://togithub.com/cngJo))
- Idorenyin Udoh
([@&#8203;idorenyinudoh](https://togithub.com/idorenyinudoh))

</details>

---

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

---

- [ ] <!-- rebase-check -->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).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS44Ny4xIiwidXBkYXRlZEluVmVyIjoiMzUuODcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@manniL manniL mentioned this pull request Jan 19, 2024
4 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Switch back to devalue mainstream
3 participants