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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Roe <daniel@roe.dev>
This commit is contained in:
renovate[bot] 2024-02-22 13:12:00 +00:00 committed by GitHub
parent 4ca1ab7cfb
commit 30695bdb48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 369 additions and 607 deletions

View File

@ -48,7 +48,7 @@ jobs:
run: pnpm build run: pnpm build
- name: Run benchmarks - name: Run benchmarks
uses: CodSpeedHQ/action@fce3a2f16d0b352af341dcacb25caadfd9159055 # v2.1.1 uses: CodSpeedHQ/action@8fd5bb7fdd76cbeb81845c3289e5e4eea9f08979 # v2.2.0
with: with:
run: pnpm vitest bench run: pnpm vitest bench
token: ${{ secrets.CODSPEED_TOKEN }} token: ${{ secrets.CODSPEED_TOKEN }}

View File

@ -85,7 +85,7 @@ jobs:
run: pnpm install run: pnpm install
- name: Initialize CodeQL - name: Initialize CodeQL
uses: github/codeql-action/init@379614612a29c9e28f31f39a59013eb8012a51f0 # v3.24.3 uses: github/codeql-action/init@e2e140ad1441662206e8f97754b166877dfa1c73 # v3.24.4
with: with:
languages: javascript languages: javascript
queries: +security-and-quality queries: +security-and-quality
@ -97,7 +97,7 @@ jobs:
path: packages path: packages
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@379614612a29c9e28f31f39a59013eb8012a51f0 # v3.24.3 uses: github/codeql-action/analyze@e2e140ad1441662206e8f97754b166877dfa1c73 # v3.24.4
with: with:
category: "/language:javascript" category: "/language:javascript"

View File

@ -19,4 +19,4 @@ jobs:
- name: 'Checkout Repository' - name: 'Checkout Repository'
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: 'Dependency Review' - name: 'Dependency Review'
uses: actions/dependency-review-action@fd07d42ce87ab09f10c61a2d1a5e59e6c655620a # v4.1.1 uses: actions/dependency-review-action@9129d7d40b8c12c1ed0f60400d00c92d437adcce # v4.1.3

View File

@ -66,6 +66,6 @@ jobs:
# Upload the results to GitHub's code scanning dashboard. # Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning" - name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@379614612a29c9e28f31f39a59013eb8012a51f0 # v3.24.3 uses: github/codeql-action/upload-sarif@e2e140ad1441662206e8f97754b166877dfa1c73 # v3.24.4
with: with:
sarif_file: results.sarif sarif_file: results.sarif

View File

@ -140,7 +140,7 @@ If you have a more complex use case, then you can use anonymous route middleware
definePageMeta({ definePageMeta({
validate: async (route) => { validate: async (route) => {
// Check if the id is made up of digits // Check if the id is made up of digits
return /^\d+$/.test(route.params.id) return typeof route.params.id === 'string' && /^\d+$/.test(route.params.id)
} }
}) })
</script> </script>

View File

@ -1,4 +1,15 @@
// For pnpm typecheck:docs to generate correct types // For pnpm typecheck:docs to generate correct types
import { addPluginTemplate } from 'nuxt/kit'
export default defineNuxtConfig({ export default defineNuxtConfig({
pages: process.env.DOCS_TYPECHECK === 'true' pages: process.env.DOCS_TYPECHECK === 'true',
modules: [
function () {
addPluginTemplate({
filename: 'plugins/my-plugin.mjs',
getContents: () => `export default defineNuxtPlugin({ name: 'my-plugin' })`
})
}
],
}) })

View File

@ -39,7 +39,7 @@
"@nuxt/webpack-builder": "workspace:*", "@nuxt/webpack-builder": "workspace:*",
"rollup": "^4.12.0", "rollup": "^4.12.0",
"nuxt": "workspace:*", "nuxt": "workspace:*",
"vite": "5.1.3", "vite": "5.1.4",
"vue": "3.4.19", "vue": "3.4.19",
"magic-string": "^0.30.7" "magic-string": "^0.30.7"
}, },
@ -67,14 +67,14 @@
"execa": "8.0.1", "execa": "8.0.1",
"fs-extra": "11.2.0", "fs-extra": "11.2.0",
"globby": "14.0.1", "globby": "14.0.1",
"h3": "1.10.1", "h3": "1.10.2",
"happy-dom": "13.3.8", "happy-dom": "13.4.1",
"jiti": "1.21.0", "jiti": "1.21.0",
"markdownlint-cli": "0.39.0", "markdownlint-cli": "0.39.0",
"nitropack": "2.8.1", "nitropack": "2.8.1",
"nuxi": "3.10.1", "nuxi": "3.10.1",
"nuxt": "workspace:*", "nuxt": "workspace:*",
"nuxt-content-twoslash": "0.0.8", "nuxt-content-twoslash": "0.0.10",
"ofetch": "1.3.3", "ofetch": "1.3.3",
"pathe": "1.1.2", "pathe": "1.1.2",
"playwright-core": "1.41.2", "playwright-core": "1.41.2",
@ -87,7 +87,7 @@
"vitest-environment-nuxt": "1.0.0", "vitest-environment-nuxt": "1.0.0",
"vue": "3.4.19", "vue": "3.4.19",
"vue-eslint-parser": "9.4.2", "vue-eslint-parser": "9.4.2",
"vue-router": "4.2.5", "vue-router": "4.3.0",
"vue-tsc": "1.8.27" "vue-tsc": "1.8.27"
}, },
"packageManager": "pnpm@8.15.3", "packageManager": "pnpm@8.15.3",

View File

@ -27,7 +27,7 @@
}, },
"dependencies": { "dependencies": {
"@nuxt/schema": "workspace:*", "@nuxt/schema": "workspace:*",
"c12": "^1.8.0", "c12": "^1.9.0",
"consola": "^3.2.3", "consola": "^3.2.3",
"defu": "^6.1.4", "defu": "^6.1.4",
"globby": "^14.0.1", "globby": "^14.0.1",
@ -35,7 +35,7 @@
"ignore": "^5.3.1", "ignore": "^5.3.1",
"jiti": "^1.21.0", "jiti": "^1.21.0",
"knitwork": "^1.0.0", "knitwork": "^1.0.0",
"mlly": "^1.5.0", "mlly": "^1.6.0",
"pathe": "^1.1.2", "pathe": "^1.1.2",
"pkg-types": "^1.0.3", "pkg-types": "^1.0.3",
"scule": "^1.3.0", "scule": "^1.3.0",
@ -52,9 +52,9 @@
"lodash-es": "4.17.21", "lodash-es": "4.17.21",
"nitropack": "2.8.1", "nitropack": "2.8.1",
"unbuild": "latest", "unbuild": "latest",
"vite": "5.1.3", "vite": "5.1.4",
"vitest": "1.3.1", "vitest": "1.3.1",
"webpack": "5.90.2" "webpack": "5.90.3"
}, },
"engines": { "engines": {
"node": "^14.18.0 || >=16.10.0" "node": "^14.18.0 || >=16.10.0"

View File

@ -71,24 +71,24 @@
"@unhead/vue": "^1.8.10", "@unhead/vue": "^1.8.10",
"@vue/shared": "^3.4.19", "@vue/shared": "^3.4.19",
"acorn": "8.11.3", "acorn": "8.11.3",
"c12": "^1.8.0", "c12": "^1.9.0",
"chokidar": "^3.6.0", "chokidar": "^3.6.0",
"cookie-es": "^1.0.0", "cookie-es": "^1.0.0",
"defu": "^6.1.4", "defu": "^6.1.4",
"destr": "^2.0.2", "destr": "^2.0.3",
"devalue": "^4.3.2", "devalue": "^4.3.2",
"esbuild": "^0.20.1", "esbuild": "^0.20.1",
"escape-string-regexp": "^5.0.0", "escape-string-regexp": "^5.0.0",
"estree-walker": "^3.0.3", "estree-walker": "^3.0.3",
"fs-extra": "^11.2.0", "fs-extra": "^11.2.0",
"globby": "^14.0.1", "globby": "^14.0.1",
"h3": "^1.10.1", "h3": "^1.10.2",
"hookable": "^5.5.3", "hookable": "^5.5.3",
"jiti": "^1.21.0", "jiti": "^1.21.0",
"klona": "^2.0.6", "klona": "^2.0.6",
"knitwork": "^1.0.0", "knitwork": "^1.0.0",
"magic-string": "^0.30.7", "magic-string": "^0.30.7",
"mlly": "^1.5.0", "mlly": "^1.6.0",
"nitropack": "^2.8.1", "nitropack": "^2.8.1",
"nuxi": "^3.10.1", "nuxi": "^3.10.1",
"nypm": "^0.3.6", "nypm": "^0.3.6",
@ -102,7 +102,7 @@
"std-env": "^3.7.0", "std-env": "^3.7.0",
"strip-literal": "^2.0.0", "strip-literal": "^2.0.0",
"ufo": "^1.4.0", "ufo": "^1.4.0",
"ultrahtml": "^1.5.2", "ultrahtml": "^1.5.3",
"uncrypto": "^0.1.3", "uncrypto": "^0.1.3",
"unctx": "^2.3.1", "unctx": "^2.3.1",
"unenv": "^1.9.0", "unenv": "^1.9.0",
@ -113,7 +113,7 @@
"vue": "^3.4.19", "vue": "^3.4.19",
"vue-bundle-renderer": "^2.0.0", "vue-bundle-renderer": "^2.0.0",
"vue-devtools-stub": "^0.1.0", "vue-devtools-stub": "^0.1.0",
"vue-router": "^4.2.5" "vue-router": "^4.3.0"
}, },
"devDependencies": { "devDependencies": {
"@parcel/watcher": "2.4.0", "@parcel/watcher": "2.4.0",
@ -121,7 +121,7 @@
"@types/fs-extra": "11.0.4", "@types/fs-extra": "11.0.4",
"@vitejs/plugin-vue": "5.0.4", "@vitejs/plugin-vue": "5.0.4",
"unbuild": "latest", "unbuild": "latest",
"vite": "5.1.3", "vite": "5.1.4",
"vitest": "1.3.1" "vitest": "1.3.1"
}, },
"peerDependencies": { "peerDependencies": {

View File

@ -42,21 +42,21 @@
"@vitejs/plugin-vue": "5.0.4", "@vitejs/plugin-vue": "5.0.4",
"@vitejs/plugin-vue-jsx": "3.1.0", "@vitejs/plugin-vue-jsx": "3.1.0",
"@vue/compiler-core": "3.4.19", "@vue/compiler-core": "3.4.19",
"c12": "1.8.0", "c12": "1.9.0",
"esbuild-loader": "4.0.3", "esbuild-loader": "4.0.3",
"h3": "1.10.1", "h3": "1.10.2",
"ignore": "5.3.1", "ignore": "5.3.1",
"nitropack": "2.8.1", "nitropack": "2.8.1",
"ofetch": "1.3.3", "ofetch": "1.3.3",
"unbuild": "latest", "unbuild": "latest",
"unctx": "2.3.1", "unctx": "2.3.1",
"unenv": "1.9.0", "unenv": "1.9.0",
"vite": "5.1.3", "vite": "5.1.4",
"vue": "3.4.19", "vue": "3.4.19",
"vue-bundle-renderer": "2.0.0", "vue-bundle-renderer": "2.0.0",
"vue-loader": "17.4.2", "vue-loader": "17.4.2",
"vue-router": "4.2.5", "vue-router": "4.3.0",
"webpack": "5.90.2", "webpack": "5.90.3",
"webpack-dev-middleware": "7.0.0" "webpack-dev-middleware": "7.0.0"
}, },
"dependencies": { "dependencies": {

View File

@ -47,10 +47,10 @@
"externality": "^1.0.2", "externality": "^1.0.2",
"fs-extra": "^11.2.0", "fs-extra": "^11.2.0",
"get-port-please": "^3.1.2", "get-port-please": "^3.1.2",
"h3": "^1.10.1", "h3": "^1.10.2",
"knitwork": "^1.0.0", "knitwork": "^1.0.0",
"magic-string": "^0.30.7", "magic-string": "^0.30.7",
"mlly": "^1.5.0", "mlly": "^1.6.0",
"ohash": "^1.1.3", "ohash": "^1.1.3",
"pathe": "^1.1.2", "pathe": "^1.1.2",
"perfect-debounce": "^1.0.0", "perfect-debounce": "^1.0.0",
@ -62,7 +62,7 @@
"ufo": "^1.4.0", "ufo": "^1.4.0",
"unenv": "^1.9.0", "unenv": "^1.9.0",
"unplugin": "^1.7.1", "unplugin": "^1.7.1",
"vite": "^5.1.3", "vite": "^5.1.4",
"vite-node": "^1.3.1", "vite-node": "^1.3.1",
"vite-plugin-checker": "^0.6.4", "vite-plugin-checker": "^0.6.4",
"vue-bundle-renderer": "^2.0.0" "vue-bundle-renderer": "^2.0.0"

View File

@ -38,13 +38,13 @@
"file-loader": "^6.2.0", "file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2", "fork-ts-checker-webpack-plugin": "^9.0.2",
"fs-extra": "^11.2.0", "fs-extra": "^11.2.0",
"h3": "^1.10.1", "h3": "^1.10.2",
"hash-sum": "^2.0.0", "hash-sum": "^2.0.0",
"lodash-es": "4.17.21", "lodash-es": "4.17.21",
"magic-string": "^0.30.7", "magic-string": "^0.30.7",
"memfs": "^4.7.6", "memfs": "^4.7.7",
"mini-css-extract-plugin": "^2.8.0", "mini-css-extract-plugin": "^2.8.0",
"mlly": "^1.5.0", "mlly": "^1.6.0",
"ohash": "^1.1.3", "ohash": "^1.1.3",
"pathe": "^1.1.2", "pathe": "^1.1.2",
"pify": "^6.1.0", "pify": "^6.1.0",
@ -62,12 +62,12 @@
"url-loader": "^4.1.1", "url-loader": "^4.1.1",
"vue-bundle-renderer": "^2.0.0", "vue-bundle-renderer": "^2.0.0",
"vue-loader": "^17.4.2", "vue-loader": "^17.4.2",
"webpack": "^5.90.2", "webpack": "^5.90.3",
"webpack-bundle-analyzer": "^4.10.1", "webpack-bundle-analyzer": "^4.10.1",
"webpack-dev-middleware": "^7.0.0", "webpack-dev-middleware": "^7.0.0",
"webpack-hot-middleware": "^2.26.1", "webpack-hot-middleware": "^2.26.1",
"webpack-virtual-modules": "^0.6.1", "webpack-virtual-modules": "^0.6.1",
"webpackbar": "^6.0.0" "webpackbar": "^6.0.1"
}, },
"devDependencies": { "devDependencies": {
"@nuxt/schema": "workspace:*", "@nuxt/schema": "workspace:*",

File diff suppressed because it is too large Load Diff

View File

@ -20,6 +20,12 @@
"^@vitest/" "^@vitest/"
] ]
}, },
{
"groupName": "unplugin-vue-router",
"matchPackageNames": [
"unplugin-vue-router"
]
},
{ {
"matchBaseBranches": [ "matchBaseBranches": [
"main" "main"