chore(deps): update all non-major dependencies #487
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:
^7.47.7->^7.47.11^1.4.1->^1.6.0^0.5.6->^0.6.1^3.13.1->^3.14.159^0.8.3->^0.8.4^3.13.1->^3.14.159^3.14.1->^3.14.4^5.1.0->^5.1.1^26.0.1->^26.0.3^15.2.3->^15.3.0^11.1.4->^11.1.6^22.5.4->^22.9.0^2.0.5->^2.1.5^9.10.0->^9.14.0^15.7.3->^15.11.6^3.12.4->^3.14.159^3.13.1->^3.14.1599.9.0->9.13.2^4.21.2->^4.27.0^11.1.4->^11.1.6^0.26.6->^0.26.11^5.5.4->^5.6.3^2.0.5->^2.1.5^2.1.6->^2.1.10Release Notes
microsoft/rushstack (@microsoft/api-extractor)
v7.47.11Compare Source
Thu, 17 Oct 2024 08:35:06 GMT
Version update only
v7.47.10Compare Source
Tue, 15 Oct 2024 00:12:31 GMT
Patches
getModeForUsageLocationin TypeScript 5.6v7.47.9Compare Source
Fri, 13 Sep 2024 00:11:42 GMT
Version update only
v7.47.8Compare Source
Tue, 10 Sep 2024 20:08:11 GMT
Version update only
nuxt/devtools (@nuxt/devtools)
v1.6.0Compare Source
Bug Fixes
1.5.2 (2024-10-02)
Bug Fixes
vite-plugin-vue-inspector(572a0d6)1.5.1 (2024-09-23)
Bug Fixes
v1.5.2Compare Source
Bug Fixes
vite-plugin-vue-inspector(572a0d6)v1.5.1Compare Source
Bug Fixes
v1.5.0Compare Source
Bug Fixes
quicktypeschema generation temporary (c1554a3)1.4.2 (2024-09-10)
Bug Fixes
1.4.1 (2024-08-26)
Bug Fixes
v1.4.2Compare Source
Bug Fixes
nuxt/eslint (@nuxt/eslint-config)
v0.6.1Compare Source
🚀 Features
vite-plugin-eslint2v5, close #516 - by @antfu in https://github.com/nuxt/eslint/issues/516 (a6b4e)View changes on GitHub
v0.6.0Compare Source
🚀 Features
nuxt-config-keys-orderrule - by @antfu in https://github.com/nuxt/eslint/issues/491 (b65a8)View changes on GitHub
v0.5.7Compare Source
🚀 Features
@types/eslint- by @antfu (a24f3)View changes on GitHub
nuxt/nuxt (@nuxt/kit)
v3.14.159Compare Source
We're leaning into the π theme - future patch releases of this minor version will just continue adding digits. (Sorry for any inconvenience! 😆)
👉 Changelog
compare changes
🩹 Fixes
module.json(#29793)mllyto resolve module paths to avoid cjs fallback (#29799)webpack-dev-middleware(#29806)📖 Documentation
🏡 Chore
❤️ Contributors
v3.14.0Compare Source
👀 Highlights
Behind the scenes, a lot has been going on in preparation for the release of Nuxt v4 (particularly on the
unjsside with preparations for Nitro v3!)⚡️ Faster starts powered by
jitiLoading the nuxt config file, as well as modules and other build-time code, is now powered by
jitiv2. You can see more about the release in the jiti v2 release notes, but one of the most important pieces is native node esm import (where possible), which should mean a faster start. ✨📂 Shared folder for code and types shared with client/server
You should never import Vue app code in your nitro code (or the other way around). But this has meant a friction point when it comes to sharing types or utilities that don't rely on the nitro/vue contexts.
For this, we have a new
shared/folder (#28682). You can't import Vue or nitro code into files in this folder, but it produces auto-imports you can consume throughout the rest of your app.If needed you can use the new
#sharedalias which points to this folder.The shared folder is alongside your
server/folder. (If you're usingcompatibilityVersion: 4, this means it's not inside yourapp/folder.)🦀
rspackbuilderWe're excited to announce a new first-class Nuxt builder for
rspack. It's still experimental but we've refactored the internal Nuxt virtual file system to useunpluginto make this possible.Let us know if you like it - and feel free to raise any issues you experience with it.
👉 To try it out, you can use this starter - or just install
@nuxt/rspack-builderand setbuilder: 'rspack'in your nuxt config file.✨ New composables
We have new
useResponseHeaderanduseRuntimeHookcomposables (#27131 and #29741).🔧 New module utilities
We now have a new
addServerTemplateutility (#29320) for adding virtual files for access inside nitro runtime routes.🚧 v4 changes
We've merged some changes which only take effect with
compatibilityVersion: 4, but which you can opt-into earlier.previously, if you had a component like
~/components/App/Header.vuethis would be visible in your devtools as<Header>. From v4 we ensure this is<AppHeader>, but it's opt-in to avoid breaking any manual<KeepAlive>you might have implemented. (#28745).Nuxt scans page metadata from your files, before calling
pages:extend. But this has led to some confusing behaviour, as pages added at this point do not end up having their page metadata respected. So we now do not scan metadata before callingpages:extend. Instead, we have a newpages:resolvedhook, which is called afterpages:extend, after all pages have been augmented with their metadata. I'd recommend opting into this by settingexperimental.scanPageMetatoafter-resolve, as it solves a number of bugs.🗺️ Roadmap to v3.15
They didn't quite make it in time for v3.14 but for the next minor release you can expect (among other things):
✅ 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
jiti(#29073)addServerTemplateutility (#29320)useResponseHeadercomposable (#27131)rspackbuilder (#29142)pages:resolvedhook + scan meta post extend (#28861)definePageMeta(#29586)shared/folder and#sharedalias (#28682)useRuntimeHookcomposable (#29741)🔥 Performance
useNuxtApp(#29514)🩹 Fixes
InjectionTypetemplate conditional (#29023)webpackmemfs (#29027)DOMExceptionas fetch abort exception (#29058)devServer.https(#29049)buildDirin dev mode (#29068)node_modules/from parent urls (5bd42c893)crossoriginattribute for stylesheets (#29138)routeRulesto hint pages to prerender (#29172)link:prefetch(#29321)ConfigLayertype fromc12(#29370)typedPages(#29352)configFileas required in layer type (3bbcd7d21)createIsExternal(686be8168)propsvalue indefinePageMeta(#29683)nitropack/typesto ensure api routes are typed (54096875e)💅 Refactors
addBuildPlugininternally (#29157)📖 Documentation
defineNuxtComponentinstead ofdefineComponent(#29011)useRequestFetchandevent.$fetch(#29099)useFetcherrors (#29253)ofetchheaders for interceptors (#29118).env.test(#29398)mockImplementation()call (#29669)$fetch(#29755)--envNameflag (#28909)📦 Build
beasties(1b5391182)🏡 Chore
unbuildupdate (71e0fb06f)jiti.import(7ece49f9b)✅ Tests
unctxtransform (d81196122)🤖 CI
❤️ Contributors
v3.13.2Compare 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 unjs ecosystem.
👉 Changelog
compare changes
🔥 Performance
🩹 Fixes
propsDestructureby default (#28830)routehas enumerable keys (#28841)asyncData(#28842)ssr: false(#28834)injectAtEndto reduce circular auto-imports (#28822)buildDirfor unimport (#28899)<NuxtErrorBoundary>(#28901)modulesarray (#28922)filePath(#28925)runWithContextgeneric (#28926)inheritAttrs: falsefor fragment components (#28939)<script>blocks (4fd24381c)isNuxtMajorVersionexport (#29016)useError(#28996)💅 Refactors
vite:preloadErrorevent (#28862)📖 Documentation
useFetchparameter signature (#28993)🏡 Chore
noUncheckedSideEffectImports(#28903)pending triageto blank issues (#28923)htmlnano+ pin workflow deps (#28946)✅ Tests
routein template (#28967)🤖 CI
❤️ Contributors
nuxt/module-builder (@nuxt/module-builder)
v0.8.4Compare Source
compare changes
🩹 Fixes
nuxt/schemaaugment (2a20ed0)❤️ Contributors
nuxt/test-utils (@nuxt/test-utils)
v3.14.4Compare Source
compare changes
🩹 Fixes
NODE_ENVwhen running built server (#969)❤️ Contributors
v3.14.3Compare Source
compare changes
🩹 Fixes
directivestomountSuspended(#960)directivestorenderSuspended(cf1b48ff)🏡 Chore
✅ Tests
❤️ Contributors
v3.14.2Compare Source
compare changes
🔥 Performance
tinyexecto run commands (#939)🩹 Fixes
📖 Documentation
🏡 Chore
vitest-environment-nuxt(e30c044cf)@nuxtjs/i18nseparately (3d8955d36)compatibilityDatein fixtures (7723f969c)tinyexecstdout (2b50cfee0)❤️ Contributors
rollup/plugins (@rollup/plugin-alias)
v5.1.12024-09-22
Bugfixes
rollup/plugins (@rollup/plugin-commonjs)
v26.0.32024-09-23
Updates
e98927b)rollup/plugins (@rollup/plugin-node-resolve)
v15.3.02024-09-23
Features
v15.2.42024-09-22
Updates
Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.