Skip to content

chore(deps): update dependency @nuxtjs/sitemap to v8 - #134

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/nuxtjs-sitemap-8.x
Open

chore(deps): update dependency @nuxtjs/sitemap to v8#134
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/nuxtjs-sitemap-8.x

Conversation

@renovate

@renovate renovate Bot commented Mar 29, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@nuxtjs/sitemap ^7.6.0^8.3.3 age confidence

Release Notes

nuxt-modules/sitemap (@​nuxtjs/sitemap)

v8.3.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v8.3.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.3.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.3.0

Compare Source

   🚀 Features
   🏎 Performance
    View changes on GitHub

v8.2.3

Compare Source

No significant changes

    View changes on GitHub

v8.2.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.2.1

Compare Source

No significant changes

    View changes on GitHub

v8.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v8.1.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v8.0.15

Compare Source

   🏎 Performance
    View changes on GitHub

v8.0.14

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v8.0.13

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.0.12

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.0.11

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.0.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.0.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.0.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.0.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.0.5

Compare Source

No significant changes

    View changes on GitHub

v8.0.4

Compare Source

No significant changes

    View changes on GitHub

v8.0.3

Compare Source

No significant changes

    View changes on GitHub

v8.0.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.0.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v8.0.0

Compare Source

The v8 release focuses on a fully rewritten devtools experience and several quality of life improvements for Nuxt Content v3 and i18n users.

⚠️ Breaking Changes

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() Deprecated

The asSitemapCollection() composable has been replaced by defineSitemapSchema(). 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() Composable

A new composable for Nuxt Content v3 that provides a cleaner API for integrating sitemap configuration into your content collections. Supports filter, onUrl, and name options.

import { defineCollection, z } from '#content/collections'
import { defineSitemapSchema } from '#sitemap/content'

export const collections = {
  content: defineCollection({
    type: 'page',
    source: '**/*.md',
    schema: z.object({
      title: z.string(),
      sitemap: defineSitemapSchema({
        filter: entry => !entry.path?.startsWith('/draft'),
        onUrl: (url) => {
          // customize URL entries
          return url
        }
      })
    })
  })
}
definePageMeta Sitemap Configuration

You can now configure sitemap options directly in your page components using definePageMeta.

<script setup>
definePageMeta({
  sitemap: {
    changefreq: 'daily',
    priority: 0.8
  }
})
</script>
i18n Multi-Sitemap with Custom Sitemaps

Custom sitemaps with includeAppSources: true are now automatically expanded per locale, generating {locale}-{name} formatted sitemaps.

Debug Production Endpoint

A new /__sitemap__/debug-production.json endpoint is available in development mode, allowing you to inspect what the production sitemap output will look like during development.

🐛 Bug Fixes

  • Content v3: Filter .navigation paths from sitemap URL generation
  • Content v3: Guard afterParse hook to prevent silent HMR failures
  • i18n: Include base URL in multi-sitemap redirect
  • i18n: Fix exclude filters when base URL and i18n prefixes are present
  • i18n: Respect autoI18n: false to generate single sitemap instead of per-locale sitemaps
  • Types: Use robots instead of index in route rules type definition
  • Chunked sitemaps: Fix path resolution with sitemapsPathPrefix: '/'

⚡ Performance

  • Replaced chalk with consola/utils for a smaller bundle
  • Use URL.canParse() instead of try/catch new URL() for URL validation
  • Use addPrerenderRoutes() API instead of manual route pushing
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 12pm on Sunday"
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Mar 29, 2026

Copy link
Copy Markdown

Deploying blog-skyra-pw with  Cloudflare Pages  Cloudflare Pages

Latest commit: 6fbe4d0
Status:🚫  Build failed.

View logs

@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch 2 times, most recently from 26132bb to e063d50 Compare April 1, 2026 17:02
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch 2 times, most recently from b5cc0af to 4751c49 Compare April 8, 2026 16:41
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch from 4751c49 to e6d8526 Compare April 16, 2026 11:51
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch 3 times, most recently from 75231a4 to a5b3258 Compare May 1, 2026 13:16
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch 2 times, most recently from a20a811 to e6d6bc4 Compare May 18, 2026 09:45
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch 2 times, most recently from 1e8493c to f0c93ab Compare June 1, 2026 23:16
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch 3 times, most recently from c0c0535 to 3f5601a Compare June 12, 2026 11:06
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch from 3f5601a to e7a7650 Compare June 26, 2026 08:11
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch 2 times, most recently from 51c1a65 to 2600493 Compare July 16, 2026 20:49
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch 3 times, most recently from 77ce47c to b3daf69 Compare July 24, 2026 20:40
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch 2 times, most recently from bc381e9 to c55202c Compare July 30, 2026 05:01
@renovate
renovate Bot force-pushed the renovate/nuxtjs-sitemap-8.x branch from c55202c to 6fbe4d0 Compare August 4, 2026 18:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants