Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 16, 2025

This PR contains the following updates:

Package Change Age Confidence
@nuxt/content (source) ^2.13.4 -> ^3.8.0 age confidence

Release Notes

nuxt/content (@​nuxt/content)

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

v3.5.1

Compare Source

Bug Fixes
  • prevenr hydration when content contains \r (c10269d)

v3.5.0

Compare Source

Features
Bug Fixes
  • cache: split large queries (ef50925)
  • cloudflare: load sql dump from assets (#​3275) (453ba2e)
  • collection: avoid double update of some record by using the hash column as index (#​3304) (ebfb6e5)
  • dev: do not create hash column on local cache table (8fff15c)
  • Disallow crawlers from crawling /__nuxt_content paths. (#​3299) (849e79d)
  • explicitly set the dump's content type (#​3302) (e1a98d4)
  • generate correct collection insert for object and array default values (#​3277) (a9587ee)
  • module: invalid rootDir of layer sources (#​3308) (2579910)
  • preview: handle collection search with prefixed sources (#​3317) (c152782)
  • preview: handle strings format when generating insert query (c18e094)
  • preview: remove prefix when parsing files (498168f)
  • preview: transform value based on schema for sql query generation (994ae98)
  • reactively load components when body changes (#​3283) (b6a30aa)
  • templates: props definition (997fc65)
  • update csv docs & fix csv options typo (#​3300) (2c2fc77)

v3.4.0

Compare Source

Features
Bug Fixes
  • check for ws existence before closing (#​3238) (6ec0eb8)
  • module: prevent conflict with auth & security tools (#​3245) (dc27bc9)
  • parser: recreate highlighter when options did change (53875b1)

v3.3.0

Compare Source

Features
Bug Fixes

v3.2.2

Compare Source

Bug Fixes

v3.2.1

Compare Source

Bug Fixes
  • bunsqlite: polyfills not being loaded (#​3176) (139744c)
  • client-database: prevent concurrent initialization (#​3174) (49531dd)
  • ContentRenderer: async loader types (f1a9b8e)
  • llms: add missing import for defineNitroPlugin (#​3170) (b091253)
  • llms: add missing import on queryCollection (2fe61e6)

v3.2.0

Compare Source

Features
Bug Fixes

v3.1.1

Compare Source

Bug Fixes

v3.1.0

Compare Source

Features
Bug Fixes
  • changelog: image size (7c8e950)
  • convert boolean value to number in query condition (#​2927) (#​3018) (c11f90a)
  • fix broken install link (#​2990) (b8da5ee)
  • highlighter: support custom languages (cfc9f43), closes #​3067
  • hmr: ignore sources without cwd (1a8c2bd)
  • invalid sqlite3 connector resolve (74dd3e1)
  • migration doc typo (#​3017) (ada613f)
  • module: clone layers to prevent side-effect (b4e7dec)
  • module: collection detection on windown file-watcher (#​3006) (3807fe9)
  • module: content parser error handling (#​3046) (022c385)
  • module: remove scule from optimizeDps list (ddb3bc8), closes #​3042
  • nuxthub: ensure database is enabled (b46fc37)
  • nuxthub: split queries into 1MB chunks (083a47a)
  • parse new content when file is modified (5dc3429)
  • parser: de-prioritise code highlighter plugin (#​3009) (dc7d866)
  • preview: draft ready not received event (a8ee72e)
  • preview: handle index file in prefix folder (i18n) (37d3008)
  • preview: optimize brace-expansion (e84e7f4)
  • preview: take exclude into account to find collection (bddd834)
  • query: handle comments and improve single selection (8de0f14), closes #​3054
  • schema: mark ZodMap as json field (69a14fa)
  • studio: return when collection not found (454a22d)
  • template: demo url (#​2983) (57ee33d)
  • templates: handle cors form studio (06b57ac)
  • vercel: default database url (042c548)
  • wasm: ignore OPFS warning as Nuxt Content does not depend on it (5d5506c)
  • wasm: override logger functions (#​3024) (99f5ac9)

v3.0.1

Compare Source

Bug Fixes

v3.0.0

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "on Monday" (UTC), 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.

@netlify
Copy link

netlify bot commented Jan 16, 2025

Deploy Preview for nuxt-color-mode failed. Why did it fail? →

Name Link
🔨 Latest commit 85a625f
🔍 Latest deploy log https://app.netlify.com/projects/nuxt-color-mode/deploys/6913577166ed6400095d2663

@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from a4e0d2b to 669143a Compare January 27, 2025 15:27
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 669143a to 372f292 Compare February 3, 2025 19:42
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 372f292 to e41bcf8 Compare February 11, 2025 14:11
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch 3 times, most recently from 9a26d9b to 07cce65 Compare February 24, 2025 17:15
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 07cce65 to 9e51ee7 Compare March 5, 2025 17:43
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 9e51ee7 to 3acefc6 Compare March 20, 2025 18:08
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 3acefc6 to 15d596f Compare April 23, 2025 18:04
@nuxthub-admin
Copy link
Contributor

nuxthub-admin bot commented Apr 23, 2025

✅ Deployed color-mode

Deployed color-mode ac36607 to preview

🔗 renovate-nuxt-content-3-x.color-mode.pages.dev
📌 e144f9bc.color-mode.pages.dev
📱
View QR Code QR code linking to deployment URL.

📋 View deployment logs

@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 15d596f to ac36607 Compare April 24, 2025 15:57
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from ac36607 to 72030a6 Compare June 12, 2025 18:00
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 72030a6 to 7aa9eb8 Compare June 20, 2025 18:07
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 7aa9eb8 to f673925 Compare July 2, 2025 19:56
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from f673925 to 79b2a3a Compare July 4, 2025 13:56
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 79b2a3a to af54793 Compare August 10, 2025 15:27
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from af54793 to 60be4e7 Compare August 19, 2025 12:32
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 60be4e7 to 9f8df4b Compare August 31, 2025 12:00
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 9f8df4b to de909df Compare September 13, 2025 15:11
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from de909df to ef5ee61 Compare September 16, 2025 19:41
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from ef5ee61 to 61be732 Compare September 25, 2025 18:01
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 61be732 to 4ac6386 Compare October 21, 2025 18:48
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 4ac6386 to 6c3e48f Compare October 29, 2025 20:49
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 6c3e48f to 3263548 Compare November 7, 2025 16:37
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 3263548 to 0376a7a Compare November 7, 2025 16:42
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 0376a7a to da44d3d Compare November 10, 2025 22:46
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from da44d3d to 79faf1f Compare November 11, 2025 09:24
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 79faf1f to 6d136cb Compare November 11, 2025 11:31
@renovate renovate bot force-pushed the renovate/nuxt-content-3.x branch from 6d136cb to 85a625f Compare November 11, 2025 15:34
@renovate renovate bot changed the title chore(deps): update dependency @nuxt/content to v3 chore(deps): update dependency @nuxt/content to v3 - autoclosed Nov 11, 2025
@renovate renovate bot closed this Nov 11, 2025
@renovate renovate bot deleted the renovate/nuxt-content-3.x branch November 11, 2025 15:41
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.

1 participant