chore(deps): update all non-major dependencies (3.x) (#29753)

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-11-02 09:43:22 +00:00 committed by GitHub
parent 48ff616f35
commit 85514f212c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 620 additions and 745 deletions

View File

@ -56,7 +56,7 @@
"vue": "3.5.12"
},
"devDependencies": {
"@eslint/js": "9.13.0",
"@eslint/js": "9.14.0",
"@nuxt/eslint-config": "0.6.1",
"@nuxt/kit": "workspace:*",
"@nuxt/rspack-builder": "workspace:*",
@ -66,7 +66,7 @@
"@types/eslint__js": "8.42.3",
"@types/node": "22.8.6",
"@types/semver": "7.5.8",
"@unhead/schema": "1.11.10",
"@unhead/schema": "1.11.11",
"@unhead/vue": "1.11.10",
"@vitejs/plugin-vue": "5.1.4",
"@vitest/coverage-v8": "2.1.4",
@ -78,15 +78,15 @@
"cssnano": "7.0.6",
"destr": "2.0.3",
"devalue": "5.1.1",
"eslint": "9.13.0",
"eslint": "9.14.0",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-typegen": "0.3.2",
"h3": "1.12.0",
"happy-dom": "15.7.4",
"jiti": "2.3.3",
"h3": "1.13.0",
"happy-dom": "15.8.0",
"jiti": "2.4.0",
"markdownlint-cli": "0.42.0",
"nitropack": "2.9.7",
"nitropack": "2.10.0",
"nuxi": "3.15.0",
"nuxt": "workspace:*",
"nuxt-content-twoslash": "0.1.1",

View File

@ -34,7 +34,7 @@
"globby": "^14.0.2",
"hash-sum": "^2.0.0",
"ignore": "^6.0.2",
"jiti": "^2.3.3",
"jiti": "^2.4.0",
"klona": "^2.0.6",
"knitwork": "^1.1.0",
"mlly": "^1.7.2",
@ -53,11 +53,11 @@
"@types/lodash-es": "4.17.12",
"@types/semver": "7.5.8",
"lodash-es": "4.17.21",
"nitropack": "2.9.7",
"nitropack": "2.10.0",
"unbuild": "latest",
"vite": "5.4.10",
"vitest": "2.1.4",
"webpack": "5.96.0"
"webpack": "5.96.1"
},
"engines": {
"node": "^14.18.0 || >=16.10.0"

View File

@ -13,7 +13,7 @@ function normalizeHandlerMethod (handler: NitroEventHandler) {
// retrieve method from handler file name
const [, method = undefined] = handler.handler.match(HANDLER_METHOD_RE) || []
return {
method,
method: method as 'get' | 'head' | 'patch' | 'post' | 'put' | 'delete' | 'connect' | 'options' | 'trace',
...handler,
handler: normalize(handler.handler),
}

View File

@ -65,8 +65,8 @@
"@nuxt/schema": "workspace:*",
"@nuxt/telemetry": "^2.6.0",
"@nuxt/vite-builder": "workspace:*",
"@unhead/dom": "^1.11.10",
"@unhead/shared": "^1.11.10",
"@unhead/dom": "^1.11.11",
"@unhead/shared": "^1.11.11",
"@unhead/ssr": "^1.11.10",
"@unhead/vue": "^1.11.10",
"@vue/shared": "^3.5.12",
@ -84,17 +84,17 @@
"escape-string-regexp": "^5.0.0",
"estree-walker": "^3.0.3",
"globby": "^14.0.2",
"h3": "^1.12.0",
"h3": "^1.13.0",
"hookable": "^5.5.3",
"ignore": "^6.0.2",
"impound": "^0.2.0",
"jiti": "^2.3.3",
"jiti": "^2.4.0",
"klona": "^2.0.6",
"knitwork": "^1.1.0",
"magic-string": "^0.30.12",
"mlly": "^1.7.2",
"nanotar": "^0.1.1",
"nitropack": "^2.9.7",
"nitropack": "^2.10.0",
"nuxi": "^3.15.0",
"nypm": "^0.3.12",
"ofetch": "^1.4.1",
@ -117,7 +117,7 @@
"unimport": "^3.13.1",
"unplugin": "^1.15.0",
"unplugin-vue-router": "^0.10.8",
"unstorage": "^1.13.0",
"unstorage": "^1.13.1",
"untyped": "^1.5.1",
"vue": "^3.5.12",
"vue-bundle-renderer": "^2.1.1",

View File

@ -399,7 +399,6 @@ export async function initNitro (nuxt: Nuxt & { _nitro?: Nitro }) {
// Init nitro
const nitro = await createNitro(nitroConfig, {
// @ts-expect-error this will be valid in a future version of Nitro
compatibilityDate: nuxt.options.compatibilityDate,
})

View File

@ -43,9 +43,9 @@
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"globby": "^14.0.2",
"h3": "npm:h3-nightly@2.0.0-1718872656.6765a6e",
"h3": "^1.13.0",
"hash-sum": "^2.0.0",
"jiti": "^2.3.3",
"jiti": "^2.4.0",
"knitwork": "^1.1.0",
"lodash-es": "4.17.21",
"magic-string": "^0.30.12",

View File

@ -39,16 +39,16 @@
"@types/file-loader": "5.0.4",
"@types/pug": "2.0.10",
"@types/sass-loader": "8.0.9",
"@unhead/schema": "1.11.10",
"@unhead/schema": "1.11.11",
"@vitejs/plugin-vue": "5.1.4",
"@vitejs/plugin-vue-jsx": "4.0.1",
"@vue/compiler-core": "3.5.12",
"@vue/compiler-sfc": "3.5.12",
"@vue/language-core": "2.1.10",
"esbuild-loader": "4.2.2",
"h3": "1.12.0",
"h3": "1.13.0",
"ignore": "6.0.2",
"nitropack": "2.9.7",
"nitropack": "2.10.0",
"ofetch": "1.4.1",
"unbuild": "latest",
"unctx": "2.3.1",
@ -58,7 +58,7 @@
"vue-bundle-renderer": "2.1.1",
"vue-loader": "17.4.2",
"vue-router": "4.4.5",
"webpack": "5.96.0",
"webpack": "5.96.1",
"webpack-dev-middleware": "7.4.2"
},
"dependencies": {

View File

@ -23,7 +23,7 @@
"critters": "0.0.25",
"html-validate": "8.24.2",
"htmlnano": "2.1.1",
"jiti": "2.3.3",
"jiti": "2.4.0",
"knitwork": "1.1.0",
"lodash-es": "4.17.21",
"pathe": "1.1.2",

View File

@ -46,8 +46,8 @@
"estree-walker": "^3.0.3",
"externality": "^1.0.2",
"get-port-please": "^3.1.2",
"h3": "^1.12.0",
"jiti": "^2.3.3",
"h3": "^1.13.0",
"jiti": "^2.4.0",
"knitwork": "^1.1.0",
"magic-string": "^0.30.12",
"mlly": "^1.7.2",

View File

@ -41,9 +41,9 @@
"estree-walker": "^3.0.3",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"h3": "^1.12.0",
"h3": "^1.13.0",
"hash-sum": "^2.0.0",
"jiti": "^2.3.3",
"jiti": "^2.4.0",
"lodash-es": "4.17.21",
"magic-string": "^0.30.12",
"memfs": "^4.14.0",
@ -66,7 +66,7 @@
"url-loader": "^4.1.1",
"vue-bundle-renderer": "^2.1.1",
"vue-loader": "^17.4.2",
"webpack": "^5.96.0",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-dev-middleware": "^7.4.2",
"webpack-hot-middleware": "^2.26.1",

File diff suppressed because it is too large Load Diff

View File

@ -21,8 +21,8 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
const [clientStats, clientStatsInlined] = await Promise.all((['.output', '.output-inline'])
.map(outputDir => analyzeSizes(['**/*.js'], join(rootDir, outputDir, 'public'))))
expect.soft(roundToKilobytes(clientStats!.totalBytes)).toMatchInlineSnapshot(`"115k"`)
expect.soft(roundToKilobytes(clientStatsInlined!.totalBytes)).toMatchInlineSnapshot(`"115k"`)
expect.soft(roundToKilobytes(clientStats!.totalBytes)).toMatchInlineSnapshot(`"119k"`)
expect.soft(roundToKilobytes(clientStatsInlined!.totalBytes)).toMatchInlineSnapshot(`"119k"`)
const files = new Set([...clientStats!.files, ...clientStatsInlined!.files].map(f => f.replace(/\..*\.js/, '.js')))
@ -37,7 +37,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
const serverDir = join(rootDir, '.output/server')
const serverStats = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"213k"`)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"211k"`)
const modules = await analyzeSizes(['node_modules/**/*'], serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"1389k"`)
@ -77,7 +77,7 @@ describe.skipIf(process.env.SKIP_BUNDLE_SIZE === 'true' || process.env.ECOSYSTEM
const serverDir = join(rootDir, '.output-inline/server')
const serverStats = await analyzeSizes(['**/*.mjs', '!node_modules'], serverDir)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"562k"`)
expect.soft(roundToKilobytes(serverStats.totalBytes)).toMatchInlineSnapshot(`"560k"`)
const modules = await analyzeSizes(['node_modules/**/*'], serverDir)
expect.soft(roundToKilobytes(modules.totalBytes)).toMatchInlineSnapshot(`"90.2k"`)