From 8f92a6d038a6bdddb9aca34e27b84accb2bffda9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 17 Nov 2024 05:38:08 -0500 Subject: [PATCH 1/3] chore(deps): update codecov/codecov-action action to v5 (main) (#29927) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 769b9803bf..7144ec28a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -248,7 +248,7 @@ jobs: TEST_PAYLOAD: ${{ matrix.payload }} SKIP_BUNDLE_SIZE: ${{ github.event_name != 'push' || matrix.env == 'dev' || matrix.builder == 'webpack' || matrix.context == 'default' || matrix.payload == 'js' || runner.os == 'Windows' }} - - uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0 + - uses: codecov/codecov-action@5c47607acb93fed5485fdbf7232e8a31425f672a # v5.0.2 if: github.event_name != 'push' && matrix.env == 'built' && matrix.builder == 'vite' && matrix.context == 'default' && matrix.os == 'ubuntu-latest' && matrix.manifest == 'manifest-on' with: token: ${{ secrets.CODECOV_TOKEN }} From 82dc24ec0b13c90f098081ab3cf32bf03d09067f Mon Sep 17 00:00:00 2001 From: Stephanie Smith Date: Sun, 17 Nov 2024 03:07:40 -0800 Subject: [PATCH 2/3] docs: improve clarity in seo meta example (#29930) --- docs/3.api/2.composables/use-seo-meta.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/3.api/2.composables/use-seo-meta.md b/docs/3.api/2.composables/use-seo-meta.md index e28debae32..f3b9e95e63 100644 --- a/docs/3.api/2.composables/use-seo-meta.md +++ b/docs/3.api/2.composables/use-seo-meta.md @@ -39,7 +39,7 @@ const title = ref('My title') useSeoMeta({ title, - description: () => `description: ${title.value}` + description: () => `This is a description for the ${title.value} page` }) ``` From d5494c9a5afaa5095fe146319e76b05e098c68e4 Mon Sep 17 00:00:00 2001 From: Gustavo Aquino Torres Teixeira Date: Sun, 17 Nov 2024 08:11:00 -0300 Subject: [PATCH 3/3] fix(kit): use `dst` to deduplicate templates when adding them (#29895) --- packages/kit/src/template.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/kit/src/template.ts b/packages/kit/src/template.ts index 8b4ae046fd..2e6aed9339 100644 --- a/packages/kit/src/template.ts +++ b/packages/kit/src/template.ts @@ -22,9 +22,9 @@ export function addTemplate (_template: NuxtTemplate | string) { // Normalize template const template = normalizeTemplate(_template) - // Remove any existing template with the same filename + // Remove any existing template with the same destination path nuxt.options.build.templates = nuxt.options.build.templates - .filter(p => normalizeTemplate(p).filename !== template.filename) + .filter(p => normalizeTemplate(p).dst !== template.dst) // Add to templates array nuxt.options.build.templates.push(template)