Automated release

After each commit is merged into the main branch of @nuxt/content and passing all tests, we trigger an automated npm release using Github Actions publishing a @nuxt/content-edge package.

You can opt in to use this release channel and avoid waiting for the next release and helping the module by beta testing changes.

The build and publishing method and quality of edge releases are the same as stable ones. The only difference is that you should often check the GitHub repository for updates. There is a slight chance of regressions not being caught during the review process and by the automated tests. Therefore, we internally use this channel to double-check everything before each release.

Opting into the edge channel

Update @nuxt/content dependency inside package.json:

{
  "devDependencies": {
-   "@nuxt/content": "^2.0.0"
+   "@nuxt/content": "npm:@nuxt/content-edge@latest"
  }
}

Remove lockfile (package-lock.json, yarn.lock, or pnpm-lock.yaml) and reinstall dependencies.

Opting out from the edge channel

Update @nuxt/content dependency inside package.json:

{
  "devDependencies": {
-   "@nuxt/content": "npm:@nuxt/content-edge@latest"
+   "@nuxt/content": "^2.0.0"
  }
}

Remove lockfile (package-lock.json, yarn.lock, or pnpm-lock.yaml) and reinstall dependencies.

Surround

[
  {
    "title": "Installation",
    "path": "/content-v2/get-started/installation",
    "stem": "content-v2/1.get-started/1.installation",
    "description": "Get started with Nuxt Content by creating a new project or adding it to an existing Nuxt application."
  },
  {
    "title": "Migration",
    "path": "/content-v2/get-started/from-v1",
    "stem": "content-v2/1.get-started/5.from-v1",
    "description": "Learn how to upgrade from Nuxt Content V1 to Nuxt Content V2 with Nuxt 3."
  }
]