chore(deps): ⬆️ Update all minor and patch dependency bump #3239
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.27.9
->2.27.11
2.0.109
->2.0.116
7.25.21
->7.26.3
7.47.11
->7.48.1
7.29.8
->7.30.1
0.15.0
->0.15.1
3.14.159
->3.15.1
3.14.159
->3.15.1
2.0.0-rc.23
->2.0.2
6.1.2
->6.1.3
4.3.3
->4.3.4
5.1.4
->5.2.1
7.6.0
->7.6.2
9.1.6
->9.1.7
3.14.159
->3.15.1
3.0.1
->3.0.2
17.5.1
->17.6.0
1.80.6
->1.83.1
1.3.2
->1.4.0
2.2.5
->2.3.0
3.4.14
->3.4.17
2.2.3
->2.3.3
5.6.3
->5.7.2
1.13.1
->1.14.4
5.4.10
->5.4.11
2.1.10
->2.2.0
Release Notes
changesets/changesets (@changesets/cli)
v2.27.11
Compare Source
Patch Changes
f0270f6
]:v2.27.10
Compare Source
FRSOURCE/autoresize-textarea (@frsource/autoresize-textarea)
v2.0.116
Compare Source
v2.0.115
Compare Source
v2.0.114
Compare Source
v2.0.113
Compare Source
v2.0.112
Compare Source
v2.0.111
Compare Source
v2.0.110
Compare Source
microsoft/rushstack (@microsoft/api-documenter)
v7.26.3
Compare Source
Sat, 14 Dec 2024 01:11:07 GMT
Version update only
v7.26.2
Compare Source
Mon, 09 Dec 2024 20:31:43 GMT
Version update only
v7.26.1
Compare Source
Tue, 03 Dec 2024 16:11:07 GMT
Version update only
v7.26.0
Compare Source
Sat, 23 Nov 2024 01:18:55 GMT
Minor changes
v7.25.22
Compare Source
Fri, 22 Nov 2024 01:10:43 GMT
Version update only
microsoft/rushstack (@microsoft/api-extractor)
v7.48.1
Compare Source
Sat, 14 Dec 2024 01:11:07 GMT
Version update only
v7.48.0
Compare Source
Sat, 23 Nov 2024 01:18:55 GMT
Minor changes
v7.47.12
Compare Source
Fri, 22 Nov 2024 01:10:43 GMT
Version update only
microsoft/rushstack (@microsoft/api-extractor-model)
v7.30.1
Compare Source
Sat, 14 Dec 2024 01:11:07 GMT
Version update only
v7.30.0
Compare Source
Sat, 23 Nov 2024 01:18:55 GMT
Minor changes
v7.29.9
Compare Source
Fri, 22 Nov 2024 01:10:43 GMT
Version update only
microsoft/tsdoc (@microsoft/tsdoc)
v0.15.1
Compare Source
Sat, 23 Nov 2024 00:23:35 GMT
Patches
nuxt/nuxt (@nuxt/kit)
v3.15.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 unjs ecosystem.
👉 Changelog
compare changes
🔥 Performance
lodash-es
dependency (#30409)pathe
browser dep for deep server components (#30456)🩹 Fixes
nuxt
instance toresolvePagesRoutes
(e4a372e12)location
instead ofrange
for route meta property extraction (#30447)vueCompilerOptions.plugins
type (#30454)baseURL
when ignoring prerendered manifest (#30446)router.options
when hmring routes (#30455)💅 Refactors
consola
withnuxt
tag instead of console (#30408)📖 Documentation
lodash
and recommendes-toolkit
(8e2ca5bdc)🏡 Chore
❤️ Contributors
v3.15.0
Compare Source
👀 Highlights
❄️ Snowfall!
Happy holidays! You'll notice when you start Nuxt that (if you're in the Northern Hemisphere) there's some snow on the loading screen (#29871).
⚡️ Vite 6 included
Nuxt v3.15 includes Vite 6 for the first time. Although this is a major version, we expect that this won't be a breaking change for Nuxt users (see full migration guide). However, please take care if you have dependencies that rely on a particular Vite version.
One of the most significant changes with Vite 6 is the new Environment API, which we hope to use in conjunction with Nitro to improve the server dev environment. Watch this space!
You can read the full list of changes in the Vite 6 changelog.
🪵 Chromium devtools improvements
We talk a lot about the Nuxt DevTools, but v3.15 ships with better integration in dev mode for Chromium-based browser devtools.
We now use the Chrome DevTools extensibility API to add support for printing nuxt hook timings in the browser devtools performance panel.
🗺️ Navigation mode for
callOnce
callOnce
is a built-in Nuxt composable for running code only once. For example, if the code runs on the server it won't run again on the client. But sometimes you do want code to run on every navigation - just avoid the initial server/client double load. For this, there's a newmode: 'navigation'
option that will run the code only once per navigation. (See #30260 for more info.)🥵 HMR for templates, pages + page metadata
We now implement hot module reloading for Nuxt's virtual files (like routes, plugins, generated files) as well as for the content of page metadata (within a
definePageMeta
macro) (#30113).This should mean you have a faster experience in development, as well as not needing to reload the page when making changes to your routes.
📋 Page meta enhancements
We now support extracting extra page meta keys (likely used by module authors) via
experimental.extraPageMetaExtractionKeys
(#30015). This enables module authors to use this information at build time, in thepages:resolved
hook.We also now support local functions in
definePageMeta
(#30241). This means you can do something like this:🔥 Performance improvements
We now preload the app manifest in the browser if it will be used when hydrating the app (#30017).
We'll also tree shake vue-router's hash mode history out of your bundle if we can - specifically, if you haven't customised your
app/router.options.ts
(#30297).🐣 v4 updates
A few more changes shipped for the new defaults for v4, including only inlining styles by default for Vue components (#30305).
✅ 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
extraPageMetaExtractionKeys
(#30015)definePageMeta
(#30241)mode: 'navigation'
tocallOnce
(#30260)🔥 Performance
hashMode
option (#30297)🩹 Fixes
addServerTemplate
(a02af2348)extraExtractionKeys
on runtimeroute.meta
(ae9f42f4a)style
value for head components (#29999)useId
implementation (40f437d25)buildDir
tonormalizeTemplate
(#30115)useRequestFetch
(#30117)nitropack
rather thannitro
import (2d5b53b23)engines.node
to match dependencies (#30139)routerOptions.history
to return null (#30192)useId
for island client component teleport id (#30151)nuxt
andnuxt/app
(#30148)getRouteRules
works with nitro signature (#30277)replace
in middleware withnavigateTo
(#30283)nitropack
(f220314a5)<RouterLink>
for links starting with#
(#30190)#app-manifest
(ec613e533)useId
forclient-fallback
component uid (#30314)@vitest/
(4171a1076)addTemplate
if undefined (#30348)import.meta.hot.data
(b1cf5781d)💅 Refactors
composable-keys
plugin into nuxt core (#30029)nuxt:
(#30028)📖 Documentation
event.waitUntil
(#29583)vite.dev
(#30111)nuxi upgrade
channel flag (#30184)useLazyFetch
(#30171)vite.css.preprocessorMaxWorkers
(eb1ba017c)compatibilityVersion
feature flag (#30274)nuxi
command pages (#30199)inlineStyles
(2660bffbc)🏡 Chore
unimport
(7ee455969)installed-check
dependency (0e84cb9a4)engines.node
to reflect only deps (d3d276919)rimraf
(cf9d82c5a)div
wrapper in client-only page (#30359)✅ Tests
🤖 CI
❤️ Contributors
v3.14.1592
Compare Source
👉 Changelog
compare changes
🩹 Fixes
webpackbar
with support for rspack (#29823)dst
to deduplicate templates when adding them (#29895)dst
to invalidate modules (6cd3352de)change
events (#29954)<NuxtWelcome>
when building (#29956)💅 Refactors
📖 Documentation
🏡 Chore
✅ Tests
🤖 CI
❤️ Contributors
harlan-zw/nuxt-seo (@nuxtjs/seo)
v2.0.2
Compare Source
No significant changes
View changes on GitHub
v2.0.1
Compare Source
No significant changes
View changes on GitHub
v2.0.0
Compare Source
Nuxt SEO v2 Stable 🎉
This release has been almost two years in the making. Please read the Announcing Nuxt SEO Stable post to learn about the history of Nuxt SEO, what the stable means and what is planned for the module.
Ready to upgrade? Check out the migration guides:
Changelog
🚨 Breaking Changes
defineOgImage()
- by @harlan-zw (f50ec)defineOgImage()
- by @harlan-zw (5eac2)nuxt-seo-ui
module - by @harlan-zw (cc7c5)@nuxtjs/robots
- by @harlan-zw (991bf)@nuxtjs/sitemap
v6 beta - by @harlan-zw (a6204)nuxt-seo-utils
- by @harlan-zw (dd466)🚀 Features
canonicalDomain
config - by @harlan-zw (1a6ce)identity
site config - by @harlan-zw (5a90e)twitter
site config - by @harlan-zw (807f7)currentLocale
site config - by @harlan-zw (47b2f)fallbackTitle
as separate plugin - by [@harlan-zw](https:/Configuration
📅 Schedule: Branch creation - "before 5am on Monday" in timezone Europe/Warsaw, 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.