Open
Conversation
a81e158 to
f2710fe
Compare
f2710fe to
352abbf
Compare
352abbf to
303ce7b
Compare
303ce7b to
fb3985f
Compare
fb3985f to
dabf95b
Compare
dabf95b to
3b0ac0d
Compare
3b0ac0d to
0cfaee3
Compare
680fd54 to
7896486
Compare
a2e07dc to
16ff9ee
Compare
16ff9ee to
c972e61
Compare
c972e61 to
bf2e9ed
Compare
bf2e9ed to
089dc28
Compare
bd02dcc to
6f2eca4
Compare
b369ba8 to
2f826eb
Compare
2f826eb to
0659d91
Compare
0659d91 to
32a9450
Compare
32a9450 to
39a1806
Compare
39a1806 to
e44b6a4
Compare
e44b6a4 to
e9aa0cc
Compare
e9aa0cc to
f148aea
Compare
5f7b273 to
7fc952b
Compare
7fc952b to
4405c75
Compare
51fe929 to
b53694c
Compare
b53694c to
bccb636
Compare
bccb636 to
6b9c872
Compare
6b9c872 to
3e27eff
Compare
f7dd36f to
df2c4aa
Compare
470c975 to
ef4ff29
Compare
ef4ff29 to
afcec43
Compare
ca441cb to
d9f4e0e
Compare
0c2f56e to
a2bff4b
Compare
a34d200 to
3099608
Compare
b897ab0 to
5e5c2e4
Compare
5e5c2e4 to
60cbcbd
Compare
60cbcbd to
b729dd2
Compare
90f8b85 to
51dc100
Compare
a9bbbe4 to
d0fcc91
Compare
d0fcc91 to
5f3c7fd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.4.0→^8.0.04.2.1→6.14.0Release Notes
nuxt-modules/sitemap (@nuxtjs/sitemap)
v8.0.13Compare Source
🐞 Bug Fixes
View changes on GitHub
v8.0.12Compare Source
🐞 Bug Fixes
View changes on GitHub
v8.0.11Compare Source
🐞 Bug Fixes
zeroRuntimeprerender detection when no manualnitro.prerender.routes- by @harlan-zw in #593 (688d1)View changes on GitHub
v8.0.9Compare Source
🐞 Bug Fixes
autoI18n: false- by @harlan-zw in #589 (28b65)article:published_timefor lastmod - by @harlan-zw in #590 (f537f)chunkSizeconfig precedence overchunksnumber - by @harlan-zw in #591 (ad522)View changes on GitHub
v8.0.8Compare Source
🐞 Bug Fixes
View changes on GitHub
v8.0.7Compare Source
🐞 Bug Fixes
autoI18n: falseto suppress hreflang tag generation - by @harlan-zw in #587 (ee92b)View changes on GitHub
v8.0.6Compare Source
🐞 Bug Fixes
View changes on GitHub
v8.0.5Compare Source
No significant changes
View changes on GitHub
v8.0.4Compare Source
No significant changes
View changes on GitHub
v8.0.3Compare Source
No significant changes
View changes on GitHub
v8.0.2Compare Source
🐞 Bug Fixes
definePageMetasitemap data during ssg - by @harlan-zw in #585 (8b7d4)View changes on GitHub
v8.0.1Compare Source
🐞 Bug Fixes
View changes on GitHub
v8.0.0Compare Source
The v8 release focuses on a fully rewritten devtools experience and several quality of life improvements for Nuxt Content v3 and i18n users.
Site Config v4
Nuxt Site Config is a module used internally by Nuxt Sitemap.
The major update to v4.0.0 shouldn't have any direct effect on your site, however, you may want to double-check
the breaking changes.
asSitemapCollection()DeprecatedThe
asSitemapCollection()composable has been replaced bydefineSitemapSchema(). The old API still works but will log a deprecation warning.import { defineCollection, z } from '#content/collections' - import { asSitemapCollection } from '#sitemap/content' + import { defineSitemapSchema } from '#sitemap/content' export const collections = { - content: defineCollection(asSitemapCollection({ - type: 'page', - source: '**/*.md', - schema: z.object({ title: z.string() }) - })) + content: defineCollection({ + type: 'page', + source: '**/*.md', + schema: z.object({ + title: z.string(), + sitemap: defineSitemapSchema() + }) + }) }🚀 New Features
defineSitemapSchema()ComposableA new composable for Nuxt Content v3 that provides a cleaner API for integrating sitemap configuration into your content collections. Supports
filter,onUrl, andnameoptions.definePageMetaSitemap ConfigurationYou can now configure sitemap options directly in your page components using
definePageMeta.i18n Multi-Sitemap with Custom Sitemaps
Custom sitemaps with
includeAppSources: trueare now automatically expanded per locale, generating{locale}-{name}formatted sitemaps.Debug Production Endpoint
A new
/__sitemap__/debug-production.jsonendpoint is available in development mode, allowing you to inspect what the production sitemap output will look like during development.🐛 Bug Fixes
.navigationpaths from sitemap URL generationafterParsehook to prevent silent HMR failuresautoI18n: falseto generate single sitemap instead of per-locale sitemapsrobotsinstead ofindexin route rules type definitionsitemapsPathPrefix: '/'⚡ Performance
chalkwithconsola/utilsfor a smaller bundleURL.canParse()instead of try/catchnew URL()for URL validationaddPrerenderRoutes()API instead of manual route pushing🚀 Features
defineSitemapSchema()composable - by @harlan-zw in #576 (603e6)🐞 Bug Fixes
definePageMetasitemap configuration not applied - by @harlan-zw in #572 (9f74a)autoI18n: falseto generate single sitemap - by @harlan-zw in #570 (94458)robotsinstead ofindexin route rules - by @harlan-zw in #569 (e9167)🏎 Performance
chalkwithconsola/utils- by @KazariEX in #555 (ae520)View changes on GitHub
v7.6.0Compare Source
🚀 Features
definePageMeta- by @harlan-zw (b61c5)onUrlfunction - by @harlan-zw (0eebd)parseSitemapIndex()- by @harlan-zw (6001c)🐞 Bug Fixes
View changes on GitHub
v7.5.2Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.5.1Compare Source
🐞 Bug Fixes
sitemap:sourceshook - by @harlan-zw (a021e)View changes on GitHub
v7.5.0Compare Source
🚀 Features
zeroRuntimemode - by @harlan-zw in #532 (1fa92)sitemap:prerender:done- by @harlan-zw in #534 (a4051)_encoded: true- by @harlan-zw (b1b17)🐞 Bug Fixes
1->1.0- by @harlan-zw (f6b9c)View changes on GitHub
v7.4.11Compare Source
🐞 Bug Fixes
🏎 Performance
View changes on GitHub
v7.4.10Compare Source
🐞 Bug Fixes
🏎 Performance
View changes on GitHub
v7.4.9Compare Source
🐞 Bug Fixes
zodpeer dependency for schema merge - by @harlan-zw (9fca6)View changes on GitHub
v7.4.8Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.4.7Compare Source
No significant changes
View changes on GitHub
v7.4.5Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.4.4Compare Source
🐞 Bug Fixes
moduleDependencies- by @harlan-zw (03ef4).to be included in sitemap - by @harlan-zw (947d1)View changes on GitHub
v7.4.3Compare Source
🐞 Bug Fixes
#importusage - by @harlan-zw (cb336)View changes on GitHub
v7.4.2Compare Source
🐞 Bug Fixes
fast-xml-parserside effects - by @harlan-zw (f2a75)View changes on GitHub
v7.4.1Compare Source
🏎 Performance
View changes on GitHub
v7.4.0Compare Source
🚀 Features
🐞 Bug Fixes
nitro.staticover_generate- by @danielroe in #458 (6bd89)urlsmore gracefully - by @harlan-zw (ec35f)View changes on GitHub
v7.3.1Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.3.0Compare Source
🚀 Features
🐞 Bug Fixes
_i18nTransformwithpagesconfig - by @harlan-zw (9e537)🏎 Performance
View changes on GitHub
v7.2.10Compare Source
🐞 Bug Fixes
buildAssetsDirover/_nuxt- by @harlan-zw (6ca39)sitemap: false- by @harlan-zw (0b85c)falsepage mappings - by @harlan-zw (d4893)View changes on GitHub
v7.2.9Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.2.8Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.2.7Compare Source
No significant changes
View changes on GitHub
v7.2.6Compare Source
🐞 Bug Fixes
eventon all nitro hooks - by @harlan-zw (30b46)🏎 Performance
shikibundle size - by @harlan-zw (cf5e5)View changes on GitHub
v7.2.5Compare Source
No significant changes
View changes on GitHub
v7.2.4Compare Source
🐞 Bug Fixes
style.xsl- by @harlan-zw (5be8f)View changes on GitHub
v7.2.3Compare Source
🐞 Bug Fixes
Hostheader getting merged - by @harlan-zw (2420e)View changes on GitHub
v7.2.2Compare Source
🐞 Bug Fixes
sitemapnot included - by @harlan-zw (7f111)View changes on GitHub
v7.2.1Compare Source
🐞 Bug Fixes
@nuxtjs/sitemap/content- by @harlan-zw (bd749)View changes on GitHub
v7.2.0Compare Source
🚀 Features
sitemap:inputNitro hook - by @harlan-zw in #397 (e4a98)🐞 Bug Fixes
sitemapsPathPrefix- by @harlan-zw (c7b1e)View changes on GitHub
v7.0.2Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.0.1Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.0.0Compare Source
Introduction
The v5 major of Nuxt Sitemap is a simple release to remove deprecations and add support for the Nuxt SEO v2 stable.
Site Config v3
Nuxt Site Config is a module used internally by Nuxt Sitemap.
The major update to v3.0.0 shouldn't have any direct effect on your site, however, you may want to double-check
the breaking changes.
Changelog
🚨 Breaking Changes
🐞 Bug Fixes
View changes on GitHub
v6.1.5Compare Source
🐞 Bug Fixes
getNuxtModuleVersionfails - by @harlan-zw (3625c)View changes on GitHub
v6.1.4Compare Source
🐞 Bug Fixes
View changes on GitHub
v6.1.3Compare Source
🐞 Bug Fixes
View changes on GitHub
v6.1.2Compare Source
🐞 Bug Fixes
View changes on GitHub
v6.1.1Compare Source
🐞 Bug Fixes
View changes on GitHub
v6.1.0Compare Source
🚀 Features
nuxt-i18n-micromodule integration - by @harlan-zw in #357 (39b91)🐞 Bug Fixes
/not being matched with route rules - by @harlan-zw (c1aab)sourceswarning - by @harlan-zw (624a8)View changes on GitHub
v6.0.1Compare Source
🐞 Bug Fixes
experimentalWarmUphitting wrong sitemap paths - by @harlan-zw (7951f)View changes on GitHub
v6.0.0Compare Source
Introduction
The v6 represents hopefully the last major that the module will undergo. It brings many underlying
logic improvements which aim to solve stability and performance issues and set up the module to support
chunked multi-sitemaps in the future.
🚨 Breaking Change
Google Search Console
If you're using multi-sitemaps it's important to check Google Search Console after the update and verify you haven't submitted the old multi-sitemap paths. If so, you should update them.
Sitemap Output
Please verify your sitemap output after the update. Many changes have been made to the underlying logic and it's important to verify that your sitemap is still being generated correctly.
Changelog
🚨 Breaking Changes
🚀 Features
sitemapsPathPrefixconfig - by @harlan-zw in #325 (4b94c)🐞 Bug Fixes
robotsroute rules - by @harlan-zw in #321 (ae455)include,excludeto i18n pages - by @harlan-zw in #322 (a7c04)SERVER_PRESETto detect env - by @harlan-zw (295c9)loc's - by @harlan-zw (c0666)useNitroAppimport warning - by @harlan-zw (f5ab8)--target- by @harlan-zw (2f6bc)<NuxtImage>components - by @harlan-zw (469e7)locis always a string - by @harlan-zw (de9ec)locnormalizing - by @harlan-zw in #354 (6ef8d)differentDomains- by @harlan-zw (e8799)View changes on GitHub
v5.3.5Compare Source
No significant changes
View changes on GitHub
v5.3.4Compare Source
No significant changes
View changes on GitHub
v5.3.2[Compare Source](https://redi
Configuration
📅 Schedule: (in timezone Asia/Seoul)
🚦 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.