Skip to content

chore(deps): update all non-major dependencies#1563

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#1563
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 5, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@commitlint/cli (source) 19.8.019.8.1 age confidence devDependencies patch
@commitlint/config-conventional (source) 19.8.019.8.1 age confidence devDependencies patch
@csstools/postcss-global-data (source) 3.0.03.1.0 age confidence dependencies minor
@js-basics/vector 2.2.22.2.5 age confidence dependencies patch
@nuxt/content (source) 3.5.13.12.0 age confidence dependencies minor
@nuxt/eslint (source) 1.3.01.15.2 age confidence devDependencies minor
@nuxtjs/i18n (source) 9.5.49.5.6 age confidence dependencies patch
@nuxtjs/seo (source) 3.0.33.4.0 age confidence dependencies minor
@pinia/nuxt (source) 0.11.00.11.3 age confidence dependencies patch
@snyk/protect 1.1296.21.1303.1 age confidence devDependencies minor
commitlint (source) 19.8.019.8.1 age confidence devDependencies patch
eslint (source) 9.26.09.39.4 age confidence devDependencies minor
eslint-config-prettier 10.1.210.1.8 age confidence devDependencies patch
eslint-plugin-no-secrets 2.2.12.3.3 age confidence devDependencies minor
eslint-plugin-prettier 5.3.15.5.5 age confidence devDependencies minor
lint-staged 15.5.115.5.2 age confidence devDependencies patch
node (source) 20.19.120.20.1 age confidence minor
nuxt (source) 3.17.23.21.1 age confidence dependencies minor
nuxt-booster 3.2.93.3.2 age confidence dependencies minor
pinia (source) 3.0.23.0.4 age confidence dependencies patch
postcss-custom-media (source) 11.0.511.0.6 age confidence dependencies patch
postcss-html 1.8.01.8.1 age confidence devDependencies patch
postcss-preset-env (source) 10.1.610.6.1 age confidence dependencies minor
prettier (source) 3.5.33.8.1 age confidence devDependencies minor
stylelint (source) 16.19.116.26.1 age confidence devDependencies minor
stylelint-config-css-modules 4.4.04.6.0 age confidence devDependencies minor
stylelint-config-recess-order 6.0.06.1.0 age confidence devDependencies minor
vite-svg-loader 5.1.05.1.1 age confidence dependencies patch

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.8.1

Compare Source

Bug Fixes
conventional-changelog/commitlint (@​commitlint/config-conventional)

v19.8.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

csstools/postcss-plugins (@​csstools/postcss-global-data)

v3.1.0

Compare Source

August 22, 2025

  • Add prepend plugin option
  • Add lateRemover plugin option
basics/vector (@​js-basics/vector)

v2.2.5

Compare Source

Bug Fixes
  • deps: update babel monorepo to v7.28.0 (0546065)

v2.2.4

Compare Source

Bug Fixes
  • deps: update babel monorepo (9e2978b)

v2.2.3

Compare Source

Bug Fixes
  • toCSSVars: set default value for target parameter in toCSSVars method across multiple classes (003b2ae)
nuxt/content (@​nuxt/content)

v3.12.0

Compare Source

Features
Bug Fixes

v3.11.2

Compare Source

Bug Fixes
  • studio: fallback to env variable to detect ai feature (#​3713) (3fc8b7b)

v3.11.1

Compare Source

Features
  • collections: create studio collections for AI if detected (#​3709) (7744645)
Bug Fixes
  • issue with disabling contentRawMarkdown (5be6b0c)

v3.11.0

Compare Source

Features
  • api: use request fetch (#​3677) (2b32a4d)
  • auto generate markdown version of documents (#​3688) (340fdf4)
  • cast date field from datetime to date string format (#​3673) (f1a2ca4)
  • collection: allow hidden property in editor without redefine validation (#​3661) (24af55a)
  • nuxt-llms: rewriteLLMSTxt option to disable rewriting paths in llms.txt (38e57ec)
Bug Fixes
Performance Improvements
Reverts
  • Revert "chore: upgrade deps" (c4a3228)
  • Revert "chore: upgrade deps" (841b360)

v3.10.0

Compare Source

Features
Bug Fixes
  • database: sqlite memory driver syntax (#​3635) (9b4b4f2)
  • docs: prerendering issues (b8c5225)
  • lint: configs (1ef7768)
  • lint: unique headings (c5cc00c)
  • module: work with route rules cache: true (#​3617) (fa6c267)
  • nuxthub: inherit preset form node/cloudflare (551a7fb)
  • parser: do not extract content title & description from body on data collections (4f4e958)
  • path-meta: apply path meta fields if they exists in schema (#​3632) (b3d7464)

v3.9.0

Compare Source

Features
  • amplity: usenode:sqlite on AWS Amplify if Node.js > 22 (#​3598) e74bb6d
Bug Fixes
  • fs-watcher: add timeout to deal with race-condition c07336e
  • prepare for NuxtHub 0.10 with hub.db (#​3624) 8a9f9d3
  • respect app.baseURL in Cloudflare database handler (#​3608) 1af6adc

v3.8.2

Compare Source

v3.8.1

Compare Source

Bug Fixes
Performance Improvements

v3.8.0

Compare Source

Features
Bug Fixes
  • extend inherited schema (dd054ea)
Performance Improvements

v3.7.1

Compare Source

Bug Fixes
  • remove zod and zod-to-json-schema from optional deps (#​3541) (8e038f0)

v3.7.0

Compare Source

Deprecations

The following features are deprecated and will be removed in a future release:

  • z re-export from @nuxt/content
  • Calling .editor() directly on zod schemas (e.g. z.string().editor(...))

Migration guide :

- import { defineContentConfig, defineCollection, z } from '@​nuxt/content'
+ import { defineContentConfig, defineCollection, property } from '@​nuxt/content'
+ import { z } from 'zod' // or 'zod/v3' if your setup exposes this subpath

  export default defineContentConfig({
    collections: {
      posts: defineCollection({
        type: 'page',
        source: 'blog/*.md',
        schema: z.object({
        image: z.object({
-         src: z.string().editor({ input: 'media' }),
+         src: property(z.string()).editor({ input: 'media' }),
          alt: z.string(),
        }),
      }),
    },
  })
Features
  • adopt standard schema spec and support different validators (#​3524) (46a1004)
  • inherit component prop types in content collection (#​3451) (a620a2c)
Bug Fixes
  • ProseCode preview syntax highlighting (#​3491) (4a725bd)
  • add dependency at Nuxt root dir (#​3525) (71f2989)
  • block experimental sqlite warning on node (5ac31da)
  • deprecate nitro export in favor of server (ec97064)
  • do not register close hook if websocket is disabled (#​3474) (9edcc8f)
  • ignore .DS_Store files in all subdirectories (c7a9af3)
  • ignore OSX meta file .DS_Store (fe5d7f9)
  • improve websocket and watcher cleanup handling (#​3478) (8041807)
  • inherit: cache component meta (e9658de)
  • inherit: issue with property definition in arrays (873b768)
  • inherit: try resolve component from root directory (b0073f1)
  • inherit: type generation (63500f3)
  • normalize source cwd (#​3532) (0a34742)
  • nuxthub: missing line separator in database migrations (#​3464) (4983443)
  • use listhen's publicUrl if available (#​3500) (fb0f022)

v3.6.3

Compare Source

Bug Fixes

v3.6.2

Compare Source

Features
  • schema: set navigation.icon of page as icon for preview (eff825d)
Bug Fixes

v3.6.1

Compare Source

Features
Bug Fixes

v3.6.0

Compare Source

Features
  • add findPageBreadcrumb, findPageChildren and findPageSiblings utils (#​3393) (c74ec44)
  • parser: allow extra transformers to provide components used (#​3355) (baff541)
  • source: do not watch for excluded files (2ee1149)
  • toggle content heading extraction (#​3400) (f01256a)
  • use json schema instead of zod for internal routines (#​3347) (3f2ff74)
Bug Fixes
nuxt/eslint (@​nuxt/eslint)

v1.15.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.15.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.15.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.14.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.13.0

Compare Source

   🚀 Features
  • Upgrade eslint-flat-config-utils eslint-plugin-import-lite and eslint-plugin-jsdoc  -  by @​antfu (10bf9)
    View changes on GitHub

v1.12.1

Compare Source

No significant changes

    View changes on GitHub

v1.11.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.10.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.9.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.8.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.7.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.7.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.6.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.2

Compare Source

   🚀 Features
    View changes on GitHub

v1.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.4.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.4.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.3.1

Compare Source

No significant changes

    View changes on GitHub
nuxt-modules/i18n (@​nuxtjs/i18n)

v9.5.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v9.5.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
harlan-zw/nuxt-seo (@​nuxtjs/seo)

v3.4.0

Compare Source

This release brings major updates to Robots and Sitemap with definePageMeta() integration, a new zeroRuntime sitemap mode, a redesigned sitemap.xsl, and improved i18n support across modules, plus stability fixes throughout.

Highlights:

✅ Upgrading

Our recommendation for upgrading is to run:

npx nuxt upgrade --dedupe                                                                                                                                                                                                         

This will deduplicate your lockfile as well, and help ensure that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem.

📦 Module Updates

Nuxt Robots (v5.6.4v5.7.0)
  • ✨ Robots definePageMeta integration
  • ✨ i18n support for custom route paths in allow/disallow expansion
  • 🐛 Fix runtime resolution bug on @nuxtjs/robots/util
  • 🐛 Fix useBotDetection() empty when ran client-side only
  • 🐛 Fix broken route rules for Nuxt v3
  • 🐛 Fix type augmentation / definitions rework
  • 🐛 Fix Content-Usage/Content-Signal parsing with spaces after commas
  • 🐛 Fix broken useRobotsRule type, prevent _robots.txt in final bundle
Nuxt Sitemap (v7.4.9v7.6.0)
  • zeroRuntime mode for fully static sitemap generation
  • ✨ Build-time hook sitemap:prerender:done
  • ✨ Support sitemap on definePageMeta
  • ✨ Sitemap.xsl redesign with light/dark mode and validation warnings
  • ✨ Nuxt Content collection filters and onUrl function
  • ✨ DevTools UI refresh
  • parseSitemapIndex() utility
  • ⚡ Optimized XML generation, faster entry resolution, precomputed filter functions
  • 🐛 Fix memory leak on recursive sitemap requests
  • 🐛 Fix discoverImages missing body
  • 🐛 Fix chunked sitemaps with sitemapsPathPrefix /
  • 🐛 Fix i18n custom route paths, don't extract alternatives when autoI18n enabled
  • 🐛 Fix h3 v2 resolution, sitemaps with slash in name
  • 🐛 Fix type augments / overrides rework
Nuxt Site Config (v3.2.11v3.2.19)
  • 🐛 Fix env support for internal origin URL resolution
  • 🐛 Fix getNitroOrigin resolution rework
  • 🐛 Fix DevTools broken build and 500 error
  • 🐛 Fix respect devServer.host
  • 🐛 Fix i18n possible memory leak
  • 🐛 Fix handle undefined import.meta.env

    View changes on GitHub

v3.3.0

Compare Source

This release brings significant updates across all Nuxt SEO modules with new features for robots and sitemap, plus numerous stability improvements throughout the ecosystem.

Highlights:

✅ Upgrading

Our recommendation for upgrading is to run:

npx nuxt upgrade --dedupe

This will deduplicate your lockfile as well, and help ensure that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem.

📦 Module Updates

Nuxt Robots

https://github.com/nuxt-modules/robots/releases/tag/v5.5.5https://github.com/nuxt-modules/robots/releases/tag/v5.6.4

Nuxt Sitemap

https://github.com/nuxt-modules/sitemap/releases/tag/v7.4.7https://github.com/nuxt-modules/sitemap/releases/tag/v7.4.9

  • ✨ Chunking support with URL filtering
  • 🐛 Fix Windows unicode escape errors when reading sources
  • 🐛 Fix prerendering pages not consistently appearing in sources
  • 🐛 Fix robots meta rules respected during prerendering
  • 🐛 Fix XML spec compliance (snake_case for geo_location)

Nuxt Link Checker

https://github.com/harlan-zw/nuxt-link-checker/releases/tag/v4.3.2https://github.com/harlan-zw/nuxt-link-checker/releases/tag/v4.3.9

  • 🐛 Fix ignore all /_* paths
  • 🐛 Fix pages hang edge case
  • 🐛 Fix hanging when pages dir is missing
  • 🐛 JSON report only shows failing results
  • 🐛 Tree sort for markdown reports

Nuxt OG Image

https://github.com/harlan-zw/nuxt-og-image/releases/tag/v5.1.11 → <https


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.


  • 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 changed the title chore(deps): update devdependency eslint-plugin-prettier to v5.4.0 chore(deps): update all non-major dependencies May 6, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 3880fad to ccb1e27 Compare May 12, 2025 19:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from ffaa190 to 8daf4c9 Compare May 20, 2025 23:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 540c9cd to 4d44536 Compare May 30, 2025 20:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4849542 to 9fb3928 Compare June 10, 2025 13:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 706c4b6 to 0825347 Compare June 17, 2025 11:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 2393cb1 to 27122e4 Compare July 4, 2025 22:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 3c3a1c7 to c081843 Compare July 18, 2025 19:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 78c6041 to 54e47df Compare July 25, 2025 17:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 27141d8 to 5faafac Compare August 2, 2025 17:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from aee0b71 to 021f7c2 Compare August 8, 2025 21:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants