chore(deps): update all non-major dependencies #2475
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.1.9
->^1.1.10
^1.1.85
->^1.1.88
^2.9.0
->^2.10.0
^1.0.6
->^1.0.8
^3.8.2
->^3.9.2
^0.5.4
->^0.5.5
3.8.2
->3.9.2
^0.6.1
->^0.7.0
^6.10.1
->^6.10.4
^10.7.0
->^10.7.2
^10.7.0
->^10.7.2
^6.1.3
->^6.1.4
^1.9.0
->^1.10.0
^1.5.5
->^1.5.6
3.8.2
->3.9.2
^3.8.2
->^3.9.2
^1.1.1
->^1.1.2
8.12.1
->8.14.1
^1.1.1
->^1.2.0
^0.9.18
->^0.9.19
^4.7.2
->^4.7.4
^1.1.0
->^1.2.0
^8.15.1
->^8.16.0
Release Notes
nuxt/content (@nuxt/content)
v2.10.0
Compare Source
compare changes
🚀 Enhancements
🩹 Fixes
bundler
module resolution works with runtime type imports (#2470)📖 Documentation
🏡 Chore
ts-ignore
as unstorage has fixed subpath export (#2472)❤️ Contributors
nuxt/devtools (@nuxt/devtools)
v1.0.8
Compare Source
Bug Fixes
v1.0.7
Compare Source
Bug Fixes
module.d.ts
/.mts
(#559) (2ecd32c)iframeProps
option for CSP, fix Stackblitz (0eb7a82)Features
nuxt/nuxt (@nuxt/kit)
v3.9.2
Compare Source
✅ Upgrading
As usual, our recommendation for upgrading is to run:
This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the vue and unjs ecosystems.
👉 Changelog
compare changes
🔥 Performance
Object.fromEntries
(#24953)🩹 Fixes
options
inaddTemplate
(#25109)pages/
files inen-US
locale (#25195)nextTick
(#25197)💅 Refactors
data-island-component
(#25232)📖 Documentation
<NuxtPage>
rather than<RouterView>
(#25106)@nuxt/bridge-edge
(3f09ddc31)--log-level
description (#25211)immediate: false
in the appropriate example (#25224).global.vue
filename for global components (#25144)lagon
from deployment providers (#24955)definePageMeta
(#25073)addDevServerHandler
API (#25233)nuxi
for bridge (637f5622d)🏡 Chore
v3
branch sandbox in issue template (#25174)❤️ Contributors
v3.9.1
Compare Source
✅ Upgrading
As usual, our recommendation for upgrading is to run:
This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the vue and unjs ecosystems.
👉 Changelog
compare changes
🔥 Performance
useRequestHeaders
(#24853)startsWith
to array access (#24744)🩹 Fixes
NuxtErrorBoundary
withssr: false
(#24896)any
in inferred injections (#25010)<ClientOnly>
(#25009)currentRoute
inRef
(#25026)💅 Refactors
nuxt-config-schema
(#25067)📖 Documentation
features
/future
docs (f5676fba5)vue-router
docs link (#24948)readValidatedBody
andgetValidatedQuery
(#24990)getValidatedRouterParams
(#25057)🏡 Chore
✅ Tests
❤️ Contributors
v3.9.0
Compare Source
👀 Highlights
A very merry Christmas to you and yours from all Nuxters involved in this release! 🎁🎄
We have lots of features packed into v3.9.0 and can't wait for you to try them out.
⚡️ Vite 5
This release comes with Vite 5 and Rollup 4 support. Module authors may need to check to ensure that any vite plugins you're creating are compatible with these latest releases.
This comes with a whole host of great improvements and bug fixes - check out the Vite changelog for more info.
✨ Vue 3.4 ready
This release is tested with the latest Vue 3.4 release candidate, and has the necessary configuration to take advantage of new features in Vue 3.4, including debugging hydration errors in production (just set
debug: true
) in your Nuxt config.👉 To take advantage, just update your
vue
version once v3.4 is released, or try out the release candidate today:🏝️ Interactive Server Components
This is a highly-experimental update, but it's now possible to play around with interactive components within Nuxt server components. You'll need to enable this new feature additionally to component islands:
Now, within a server component, you can specify components to hydrate by using the
nuxt-client
directive:We're pretty excited about this one - so do let us know how you're using it! 🙏
🔥 Automatic Server Optimisations
We now use Vite's new AST-aware 'define' to perform more accurate replacements on server-side code, meaning code like this will no longer throw an error:
This hasn't been possible until now because we haven't wanted to run the risk of accidentally replacing normal words like
document
within non-JS parts of your apps. But Vite's newdefine
functionality is powered byesbuild
and is syntax-aware, so we feel confident in enabling this functionality. Nevertheless, you can opt out if you need to:🚦 Granular Loading API
We now have a new hook-based system for
<NuxtLoadingIndicator>
, including auseLoadingIndicator
composable that lets you control/stop/start the loading state. You can also hook intopage:loading:start
andpage:loading:end
if you prefer.You can read more in the docs and in the original PR (#24010).
🏁 Run single events in
callOnce
Sometimes you only want to run code once, no matter how many times you load a page - and you don't want to run it again on the client if it ran on the server.
For this, we have a new utility:
callOnce
(#24787).Note that this utility is context-aware so it must be called in component setup function or Nuxt plugin, as with other Nuxt composables.
Read more in the docs.
🚨 Error Types
For a while now, errors returned by
useAsyncData
anduseFetch
have been typed pretty generically asError
. We've significantly improved the type possibilities for them to make them more accurate in terms of what you'll actually receive. (We normalise errors with theh3
createError
utility under the hood, so they can be serialised from server to client, for example.)We've tried to implement the type change in a backwards compatible way, but you might notice that you need to update the generic if you're manually configuring the generics for these composables. See (#24396) for more information, and do let us know if you experience any issues.
🔥 Schema Performance
We've taken some time in this release to make some minor performance improvements, so you should notice some things are a bit faster. This is an ongoing project and we have ideas for improving initial load time of the Nuxt dev server.
✅ Upgrading
As usual, our recommendation for upgrading is to run:
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
🚀 Enhancements
<NuxtLayout>
(#24116)addComponentsDir
(#24309)useCookie
(#24503)error.data
when throwing 404 errors (#24674)/module
or/nuxt
module subpath if it exists (#24707)refresh
on islands and server components (#24261)dedupe
option for data fetching composables (#24564)undefined
on server (#24711)addServerScanDir
composable (#24001)setup
withindefineComponent
options (#24515)useRequestHeader
utility (#24781)callOnce
util to allow running code only once (#24787)NuxtIsland
(#22649)bundler
module resolution (#22821)toArray
util (#24857)🔥 Performance
resolve
operation (#24736)join
operation (#24717)get
operations (#24734)useRuntimeConfig
call (#24843)JSON.stringify
operation (#24848)🩹 Fixes
import.d.ts
(#24413)reactivityTransform
(vue 3.4) (#24477)<DevOnly>
(#24511)isBuiltin
polyfill for greater node support (#24512)<NuxtLayout>
usage in islands (#24529)error
inuseAsyncData
has correct type (#24396)appManifest
middleware after modules run (#24786)setup
withindefineComponent
(#24784)__VUE_PROD_HYDRATION_MISMATCH_DETAILS__
(#24836)mode
fromfilePath
foraddComponent
(#24835)bundler
module resolution due to lack of support (22ce98d61)~/modules
dirs tomodulesDir
(#24457)💅 Refactors
defineComponent
to infer prop types for router-link stub (dc0e8347b)jiti.import
for schema (#24526)process.*
usage in nuxt vue app (#24749)future
andfeatures
namespace (#24880)📖 Documentation
typedPages
(#24436)defineNuxtConfig
to deployment example (#24451)~
to@
alias in examples (#24574)-o
option to--open
(#24644)<NuxtPage>
(#24675)getCachedData
option (#24697)addServerScanDir
example (7cd02e290)loadNuxt
options (#24201)nuxi module
(#24790)useFetch
anduseAsyncData
#24407 (#24775, #24407)addComponentsDir
example to modules author guide (#24876)🏡 Chore
dev:prepare
instead ofbuild:stub
(802b3e28c)✅ Tests
🤖 CI
nuxt/bridge
when composables change (#24752)❤️ Contributors
nuxt/module-builder (@nuxt/module-builder)
v0.5.5
Compare Source
compare changes
🩹 Fixes
RuntimeModuleHooks
toModuleRuntimeHooks
(#194).d.mts
file (#202)📖 Documentation
ModulePrivateRuntimeConfig
(34ee148)🏡 Chore
package.json
(#192)✅ Tests
🤖 CI
❤️ Contributors
nuxt-modules/tailwindcss (@nuxtjs/tailwindcss)
v6.10.4
Compare Source
compare changes
🩹 Fixes
📖 Documentation
🏡 Chore
❤️ Contributors
v6.10.3
Compare Source
compare changes
🩹 Fixes
❤️ Contributors
v6.10.2
Compare Source
compare changes
🩹 Fixes
🏡 Chore
❤️ Contributors
vueuse/vueuse (@vueuse/core)
v10.7.2
Compare Source
🐞 Bug Fixes
nuxt
out of dependencies - by @antfu (866a1)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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.