Skip to content

Update nuxtjs packages (major)#101

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-nuxtjs-packages
Open

Update nuxtjs packages (major)#101
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-nuxtjs-packages

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 24, 2023

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxtjs/sitemap ^2.4.0^8.0.0 age adoption passing confidence
@nuxtjs/tailwindcss 4.2.16.14.0 age adoption passing confidence

Release Notes

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

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

v7.6.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.5.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.4.11

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v7.4.10

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v7.4.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.4.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.4.7

Compare Source

No significant changes

    View changes on GitHub

v7.4.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.4.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.4.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.4.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.4.1

Compare Source

   🏎 Performance
    View changes on GitHub

v7.4.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.3.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.3.0

Compare Source

⚠️ This release introduces several features, performance improvements and bug fixes, it's recommended to test your sitemap after upgrading.

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v7.2.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.2.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.2.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.2.7

Compare Source

No significant changes

    View changes on GitHub

v7.2.6

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v7.2.5

Compare Source

No significant changes

    View changes on GitHub

v7.2.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.2.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.2.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.0.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.0.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.0.0

Compare Source

Introduction

The v5 major of Nuxt Sitemap is a simple release to remove deprecations and add support for the Nuxt SEO v2 stable.

⚠️ Breaking Features

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.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.1.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.1.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v6.0.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.0.0

Compare 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
   🐞 Bug Fixes
    View changes on GitHub

v5.3.5

Compare Source

No significant changes

    View changes on GitHub

v5.3.4

Compare Source

No significant changes

    View changes on GitHub

v5.3.2

[Compare Source](https://redi


Configuration

📅 Schedule: (in timezone Asia/Seoul)

  • Branch creation
    • "after 10pm every weekday,every weekend,before 5am every weekday"
  • 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.


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

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

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Mar 24, 2023
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 2 times, most recently from a81e158 to f2710fe Compare March 24, 2023 16:29
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from f2710fe to 352abbf Compare April 3, 2023 09:47
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 352abbf to 303ce7b Compare April 17, 2023 13:17
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 303ce7b to fb3985f Compare May 28, 2023 11:09
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from fb3985f to dabf95b Compare June 16, 2023 11:00
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from dabf95b to 3b0ac0d Compare June 23, 2023 19:05
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 3b0ac0d to 0cfaee3 Compare October 28, 2023 16:17
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 3 times, most recently from 680fd54 to 7896486 Compare November 6, 2023 13:56
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 3 times, most recently from a2e07dc to 16ff9ee Compare November 26, 2023 10:11
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 16ff9ee to c972e61 Compare December 30, 2023 18:46
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from c972e61 to bf2e9ed Compare January 9, 2024 05:10
@renovate renovate Bot changed the title Update dependency @nuxtjs/tailwindcss to v6 Update nuxtjs packages (major) Jan 9, 2024
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from bf2e9ed to 089dc28 Compare January 11, 2024 23:11
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 2 times, most recently from bd02dcc to 6f2eca4 Compare January 28, 2024 16:38
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 2 times, most recently from b369ba8 to 2f826eb Compare February 6, 2024 12:30
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 2f826eb to 0659d91 Compare February 13, 2024 19:06
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 0659d91 to 32a9450 Compare March 26, 2024 20:43
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 32a9450 to 39a1806 Compare April 20, 2024 17:19
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 39a1806 to e44b6a4 Compare July 14, 2024 14:00
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from e44b6a4 to e9aa0cc Compare September 5, 2024 09:43
@renovate renovate Bot changed the title Update nuxtjs packages (major) Update nuxtjs packages to v6 (major) Sep 5, 2024
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from e9aa0cc to f148aea Compare September 21, 2024 07:16
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 5f7b273 to 7fc952b Compare August 19, 2025 15:58
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 7fc952b to 4405c75 Compare August 31, 2025 09:45
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 2 times, most recently from 51fe929 to b53694c Compare September 25, 2025 14:05
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from b53694c to bccb636 Compare October 21, 2025 16:55
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from bccb636 to 6b9c872 Compare November 10, 2025 13:36
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 6b9c872 to 3e27eff Compare November 18, 2025 11:37
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 3 times, most recently from f7dd36f to df2c4aa Compare December 10, 2025 03:33
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 2 times, most recently from 470c975 to ef4ff29 Compare December 20, 2025 06:12
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from ef4ff29 to afcec43 Compare December 31, 2025 12:30
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 2 times, most recently from ca441cb to d9f4e0e Compare January 10, 2026 12:25
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 2 times, most recently from 0c2f56e to a2bff4b Compare January 23, 2026 19:00
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 2 times, most recently from a34d200 to 3099608 Compare February 2, 2026 21:36
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 2 times, most recently from b897ab0 to 5e5c2e4 Compare February 17, 2026 19:43
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 5e5c2e4 to 60cbcbd Compare March 5, 2026 15:55
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from 60cbcbd to b729dd2 Compare March 13, 2026 17:14
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 3 times, most recently from 90f8b85 to 51dc100 Compare April 2, 2026 05:47
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch 2 times, most recently from a9bbbe4 to d0fcc91 Compare April 10, 2026 18:13
@renovate renovate Bot force-pushed the renovate/major-nuxtjs-packages branch from d0fcc91 to 5f3c7fd Compare April 18, 2026 20:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants