chore(deps): update all non-major dependencies #73
+1,422
−509
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:
^2.6.2
->^2.6.3
^4.0.3
->^4.1.0
^4.0.3
->^4.1.0
^0.1.17
->^0.1.78
^0.1.8
->^0.1.18
^6.7.0
->^6.8.0
^1.2.20
->^1.2.21
^19.1.10
->^19.1.12
^19.1.7
->^19.1.9
^5.0.1
->^5.0.2
^1.2.20
->^1.2.21
^16.1.5
->^16.1.6
20.19.4
->20.19.5
^4.0.3
->^4.1.0
^4.0.3
->^4.1.0
2.35.3
->2.35.4
^3.5.18
->^3.5.21
^3.5.18
->^3.5.21
4
->4.5.1
Release Notes
nuxt/devtools (@nuxt/devtools)
v2.6.3
Compare Source
nuxt/nuxt (@nuxt/kit)
v4.1.0
Compare Source
👀 Highlights
🔥 Build and Performance Improvements
🍫 Enhanced Chunk Stability
Build stability has been significantly improved with import maps (#33075). This prevents cascading hash changes that could invalidate large portions of your build when small changes are made:
By default, JS chunks emitted in a Vite build are hashed, which means they can be cached immutably. However, this can cause a significant issue: a change to a single component can cause every hash to be invalidated, massively increasing the chance of 404s.
In short:
Obviously this wasn't optimal. With this new feature, the hash of (otherwise) unchanged files which import the entry won't be affected.
This feature is automatically enabled and helps maintain better cache efficiency in production. It does require native import map support, but Nuxt will automatically disable it if you have configured
vite.build.target
to include a browser that doesn't support import maps.And of course you can disable it if needed:
🦀 Experimental Rolldown Support
Nuxt now includes experimental support for
rolldown-vite
(#31812), bringing Rust-powered bundling for potentially faster builds.To try Rolldown in your Nuxt project, you need to override Vite with the rolldown-powered version since Vite is a dependency of Nuxt. Add the following to your
package.json
:npm:
pnpm:
yarn:
bun:
After adding the override, reinstall your dependencies. Nuxt will automatically detect when Rolldown is available and adjust its build configuration accordingly.
For more details on Rolldown integration, see the Vite Rolldown guide.
🧪 Improved Lazy Hydration
Lazy hydration macros now work without auto-imports (#33037), making them more reliable when component auto-discovery is disabled:
This ensures that components that are not "discovered" through Nuxt (e.g., because
components
is set tofalse
in the config) can still be used in lazy hydration macros.📄 Enhanced Page Rules
If you have enabled experimental extraction of route rules, these are now exposed on a dedicated
rules
property onNuxtPage
objects (#32897), making them more accessible to modules and improving the overall architecture:The
defineRouteRules
function continues to work exactly as before, but now provides better integration possibilities for modules.🚀 Module Development Enhancements
Module Dependencies and Integration
Modules can now specify dependencies and modify options for other modules (#33063). This enables better module integration and ensures proper setup order:
This replaces the deprecated
installModule
function and provides a more robust way to handle module dependencies with version constraints and configuration merging.🪝 Module Lifecycle Hooks
Module authors now have access to two new lifecycle hooks:
onInstall
andonUpgrade
(#32397). These hooks allow modules to perform additional setup steps when first installed or when upgraded to a new version:The hooks are only triggered when both
name
andversion
are provided in the module metadata. Nuxt uses the.nuxtrc
file internally to track module versions and trigger the appropriate hooks. (If you haven't come across it before, the.nuxtrc
file should be committed to version control.)🙈 Enhanced File Resolution
The new
ignore
option forresolveFiles
(#32858) allows module authors to exclude specific files based on glob patterns:📂 Layer Directories Utility
A new
getLayerDirectories
utility (#33098) provides a clean interface for accessing layer directories without directly accessing private APIs:✨ Developer Experience Improvements
🎱 Simplified Kit Utilities
Several kit utilities have been improved for better developer experience:
addServerImports
now supports single imports (#32289):🔥 Performance Optimizations
This release includes several internal performance optimizations:
🐛 Notable Fixes
useFetch
hook typing (#32891)<NuxtTime>
(#32893)✅ Upgrading
As usual, our recommendation for upgrading is to run:
This will refresh your lockfile and pull in all the latest dependencies that Nuxt relies on, especially from the unjs ecosystem.
👉 Changelog
compare changes
🚀 Enhancements
ignore
option toresolveFiles
(#32858)onInstall
andonUpgrade
module hooks (#32397)rolldown-vite
(#31812)defineRouteRules
to pagerules
property (#32897)getLayerDirectories
util and refactor to use it (#33098)🔥 Performance
🩹 Fixes
satisfies
in page augmentation (#32902)useFetch
hooks (#32891)resolvePath
and normalize file extensions (#32857)requestTimeout
+ allow configuration (#32874)node_modules/
if no customsrcDir
(#32987)route
object (#32899)defineNuxtModule().with()
(#33081)nuxtApp._runningTransition
on resolve (#33025)💅 Refactors
async/await
inafterEach
(#32999)📖 Documentation
setupTimeout
and addteardownTimeout
(#32868)webRoot
to use new app directory (df7177bff)app/
directory in layer guide (eee55ea41)--nightly
command (#32907)features.inlineStyles
default value (6ff3fbebb)useRoute
and accessing route in middleware (#33004)🏡 Chore
type: 'module'
in playground (#33099)✅ Tests
import.meta.dev
(#33023)findWorkspaceDir
rather than relative paths to repo root (a6dec5bd9)expect.poll
(53fb61d5d)expect.poll
instead ofexpectWithPolling
(357492ca7)vi.waitUntil
instead of custom retry logic (611e66a47)🤖 CI
❤️ Contributors
stacksjs/bumpx (@stacksjs/bumpx)
v0.1.78
Compare Source
No significant changes
View changes on GitHub
v0.1.77
Compare Source
No significant changes
View changes on GitHub
v0.1.76
Compare Source
No significant changes
View changes on GitHub
v0.1.75
Compare Source
No significant changes
View changes on GitHub
v0.1.74
Compare Source
No significant changes
View changes on GitHub
v0.1.71
Compare Source
No significant changes
View changes on GitHub
v0.1.70
Compare Source
No significant changes
View changes on GitHub
v0.1.69
Compare Source
No significant changes
View changes on GitHub
v0.1.68
Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.1.65
Compare Source
No significant changes
View changes on GitHub
v0.1.61
Compare Source
No significant changes
View changes on GitHub
v0.1.60
Compare Source
No significant changes
View changes on GitHub
v0.1.59
Compare Source
No significant changes
View changes on GitHub
v0.1.58
Compare Source
No significant changes
View changes on GitHub
v0.1.57
Compare Source
No significant changes
View changes on GitHub
v0.1.56
Compare Source
No significant changes
View changes on GitHub
v0.1.55
Compare Source
No significant changes
View changes on GitHub
v0.1.54
Compare Source
No significant changes
View changes on GitHub
v0.1.53
Compare Source
No significant changes
View changes on GitHub
v0.1.52
Compare Source
No significant changes
View changes on GitHub
v0.1.46
Compare Source
No significant changes
View changes on GitHub
v0.1.45
Compare Source
No significant changes
View changes on GitHub
v0.1.38
Compare Source
No significant changes
View changes on GitHub
v0.1.37
Compare Source
No significant changes
View changes on GitHub
v0.1.36
Compare Source
No significant changes
View changes on GitHub
v0.1.35
Compare Source
No significant changes
View changes on GitHub
v0.1.34
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.1.33
Compare Source
No significant changes
View changes on GitHub
v0.1.32
Compare Source
No significant changes
View changes on GitHub
v0.1.30
Compare Source
No significant changes
View changes on GitHub
v0.1.29
Compare Source
No significant changes
View changes on GitHub
v0.1.28
Compare Source
No significant changes
View changes on GitHub
v0.1.27
Compare Source
No significant changes
View changes on GitHub
v0.1.26
Compare Source
No significant changes
View changes on GitHub
v0.1.25
Compare Source
No significant changes
View changes on GitHub
v0.1.24
Compare Source
No significant changes
View changes on GitHub
v0.1.23
Compare Source
No significant changes
View changes on GitHub
v0.1.22
Compare Source
No significant changes
View changes on GitHub
v0.1.21
Compare Source
No significant changes
View changes on GitHub
v0.1.20
Compare Source
No significant changes
View changes on GitHub
v0.1.19
Compare Source
No significant changes
View changes on GitHub
v0.1.18
Compare Source
No significant changes
View changes on GitHub
stacksjs/logsmith (@stacksjs/logsmith)
v0.1.18
Compare Source
No significant changes
View changes on GitHub
v0.1.15
Compare Source
No significant changes
View changes on GitHub
v0.1.14
Compare Source
No significant changes
View changes on GitHub
v0.1.11
Compare Source
No significant changes
View changes on GitHub
v0.1.10
Compare Source
No significant changes
View changes on GitHub
v0.1.9
Compare Source
No significant changes
View changes on GitHub
testing-library/jest-dom (@testing-library/jest-dom)
v6.8.0
Compare Source
vitejs/vite-plugin-react (@vitejs/plugin-react)
v5.0.2
Compare Source
Skip transform hook completely in rolldown-vite in dev if possible (#783)
oven-sh/bun (bun-types)
v1.2.21
Compare Source
lint-staged/lint-staged (lint-staged)
v16.1.6
Compare Source
Patch Changes
e93578e
Thanks @iiroj! - Try to improve terminating of subprocess of tasks by usingSIGKILL
, and only callingpidtree
when the the main task process has a known pid.actions/node-versions (node)
v20.19.5
: 20.19.5Compare Source
Node.js 20.19.5
nuxt/nuxt (nuxt)
v4.1.0
Compare Source
shivammathur/setup-php (shivammathur/setup-php)
v2.35.4
Compare Source
Changelog
Fixed updating brew core tap before installing PHP on macOS.
Updated actions in internal workflows.
Updated Node.js dependencies.
For the complete list of changes, please refer to the Full Changelog
Follow for updates
vuejs/core (vue)
v3.5.21
Compare Source
Bug Fixes
${configDir}
in paths for TypeScript 5.5+ ([#13491](https://redirect.github.com/vuejs/coConfiguration
📅 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 was generated by Mend Renovate. View the repository job log.