diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 492a0fb118..50759cfff1 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - 3.x - 2.x permissions: @@ -16,7 +17,7 @@ concurrency: jobs: update: - if: github.repository_owner == 'nuxt' && !contains(github.event.head_commit.message, 'v3.') + if: github.repository_owner == 'nuxt' && !contains(github.event.head_commit.message, 'v3.') && !contains(github.event.head_commit.message, 'v4.') runs-on: ubuntu-latest steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 727d0669ea..d43ba94276 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ permissions: {} jobs: release: - if: github.repository == 'nuxt/nuxt' && startsWith(github.event.head_commit.message, 'v3.') + if: github.repository == 'nuxt/nuxt' && (startsWith(github.event.head_commit.message, 'v3.') || startsWith(github.event.head_commit.message, 'v4.')) permissions: id-token: write runs-on: ubuntu-latest diff --git a/docs/1.getting-started/5.seo-meta.md b/docs/1.getting-started/5.seo-meta.md index a1ebb2f457..91b8fed31f 100644 --- a/docs/1.getting-started/5.seo-meta.md +++ b/docs/1.getting-started/5.seo-meta.md @@ -128,8 +128,6 @@ See [@unhead/schema](https://github.com/unjs/unhead/blob/main/packages/schema/sr Reactivity is supported on all properties, by providing a computed value, a getter, or a reactive object. -It's recommended to use getters (`() => value`) over computed (`computed(() => value)`). - ::code-group ```vue twoslash [useHead] diff --git a/docs/1.getting-started/5.transitions.md b/docs/1.getting-started/5.transitions.md index 6123b64789..3a69917e27 100644 --- a/docs/1.getting-started/5.transitions.md +++ b/docs/1.getting-started/5.transitions.md @@ -392,7 +392,7 @@ The page now applies the `slide-left` transition when going to the next id and ` ## Transition with NuxtPage -When `` is used in `app.vue`, transition-props can be passed directly as a component props to activate global transition. +When `` is used in `app.vue`, transitions can be configured with the `transition` prop to activate transitions globally. ```vue [app.vue]