diff --git a/package.json b/package.json index 3b2085a1..56721a05 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "@biomejs/biome": "1.9.4", "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.9", - "@types/node": "^20.16.15", + "@types/node": "^20.17.4", "esbuild": "^0.21.5", "eslint": "^9.13.0", "eslint-config-prettier": "^9.1.0", @@ -58,6 +58,6 @@ "prettier-plugin-astro": "^0.14.1", "turbo": "^2.2.3", "typescript": "^5.6.3", - "typescript-eslint": "^8.11.0" + "typescript-eslint": "^8.12.2" } } diff --git a/packages/cloudflare/package.json b/packages/cloudflare/package.json index 8ca26d63..f5f56e07 100644 --- a/packages/cloudflare/package.json +++ b/packages/cloudflare/package.json @@ -34,9 +34,9 @@ "esbuild": "^0.21.5", "estree-walker": "^3.0.3", "magic-string": "^0.30.12", - "miniflare": "^3.20241018.0", + "miniflare": "^3.20241022.0", "tiny-glob": "^0.2.9", - "wrangler": "^3.82.0", + "wrangler": "^3.84.0", "@inox-tools/astro-when": "^0.2.4" }, "peerDependencies": { @@ -44,12 +44,12 @@ }, "devDependencies": { "@astrojs/test-utils": "workspace:*", - "astro": "^4.16.7", + "astro": "^4.16.8", "astro-scripts": "workspace:*", "cheerio": "1.0.0", "execa": "^8.0.1", "fast-glob": "^3.3.2", - "rollup": "^4.24.0", + "rollup": "^4.24.3", "strip-ansi": "^7.1.0", "vite": "^5.4.10" }, diff --git a/packages/cloudflare/src/utils/generate-routes-json.ts b/packages/cloudflare/src/utils/generate-routes-json.ts index 03d8aad5..fee44638 100644 --- a/packages/cloudflare/src/utils/generate-routes-json.ts +++ b/packages/cloudflare/src/utils/generate-routes-json.ts @@ -225,6 +225,7 @@ export async function createRoutesFile( const convertedPath = segmentsToCfSyntax(route.segments, _config); if (route.pathname === '/404' && route.prerender === true) hasPrerendered404 = true; + // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check switch (route.type) { case 'page': if (route.prerender === false) includePaths.push(convertedPath); diff --git a/packages/cloudflare/test/fixtures/astro-dev-platform/package.json b/packages/cloudflare/test/fixtures/astro-dev-platform/package.json index 956e7649..1d43dd35 100644 --- a/packages/cloudflare/test/fixtures/astro-dev-platform/package.json +++ b/packages/cloudflare/test/fixtures/astro-dev-platform/package.json @@ -4,9 +4,9 @@ "private": true, "dependencies": { "@astrojs/cloudflare": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" }, "devDependencies": { - "wrangler": "^3.82.0" + "wrangler": "^3.84.0" } } diff --git a/packages/cloudflare/test/fixtures/astro-env/package.json b/packages/cloudflare/test/fixtures/astro-env/package.json index 02465958..dbdf4d12 100644 --- a/packages/cloudflare/test/fixtures/astro-env/package.json +++ b/packages/cloudflare/test/fixtures/astro-env/package.json @@ -4,9 +4,9 @@ "private": true, "dependencies": { "@astrojs/cloudflare": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" }, "devDependencies": { - "wrangler": "^3.82.0" + "wrangler": "^3.84.0" } } diff --git a/packages/cloudflare/test/fixtures/compile-image-service/package.json b/packages/cloudflare/test/fixtures/compile-image-service/package.json index 739a233d..64a281c1 100644 --- a/packages/cloudflare/test/fixtures/compile-image-service/package.json +++ b/packages/cloudflare/test/fixtures/compile-image-service/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/cloudflare": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/cloudflare/test/fixtures/external-image-service/package.json b/packages/cloudflare/test/fixtures/external-image-service/package.json index cec6c6fc..1fb4f724 100644 --- a/packages/cloudflare/test/fixtures/external-image-service/package.json +++ b/packages/cloudflare/test/fixtures/external-image-service/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/cloudflare": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/cloudflare/test/fixtures/module-loader/package.json b/packages/cloudflare/test/fixtures/module-loader/package.json index 870a7658..2d6e5659 100644 --- a/packages/cloudflare/test/fixtures/module-loader/package.json +++ b/packages/cloudflare/test/fixtures/module-loader/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/cloudflare": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/cloudflare/test/fixtures/no-output/package.json b/packages/cloudflare/test/fixtures/no-output/package.json index 7a8c984d..72ca4db1 100644 --- a/packages/cloudflare/test/fixtures/no-output/package.json +++ b/packages/cloudflare/test/fixtures/no-output/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/cloudflare": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/cloudflare/test/fixtures/routes-json/package.json b/packages/cloudflare/test/fixtures/routes-json/package.json index 1ff7065b..90407d19 100644 --- a/packages/cloudflare/test/fixtures/routes-json/package.json +++ b/packages/cloudflare/test/fixtures/routes-json/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/cloudflare": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/cloudflare/test/fixtures/with-solid-js/package.json b/packages/cloudflare/test/fixtures/with-solid-js/package.json index 36bb9cec..53d01a65 100644 --- a/packages/cloudflare/test/fixtures/with-solid-js/package.json +++ b/packages/cloudflare/test/fixtures/with-solid-js/package.json @@ -5,7 +5,7 @@ "dependencies": { "@astrojs/cloudflare": "workspace:*", "@astrojs/solid-js": "^4.4.2", - "astro": "^4.16.7", + "astro": "^4.16.8", "solid-js": "^1.9.3" } } diff --git a/packages/cloudflare/test/fixtures/wrangler-preview-platform/package.json b/packages/cloudflare/test/fixtures/wrangler-preview-platform/package.json index 61a2a8f7..01713d9c 100644 --- a/packages/cloudflare/test/fixtures/wrangler-preview-platform/package.json +++ b/packages/cloudflare/test/fixtures/wrangler-preview-platform/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/cloudflare": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/netlify/package.json b/packages/netlify/package.json index 25bf3d8b..fda28324 100644 --- a/packages/netlify/package.json +++ b/packages/netlify/package.json @@ -45,8 +45,8 @@ "@astrojs/test-utils": "workspace:*", "@netlify/edge-functions": "^2.11.0", "@netlify/edge-handler-types": "^0.34.1", - "@types/node": "^20.16.15", - "astro": "^4.16.7", + "@types/node": "^20.17.4", + "astro": "^4.16.8", "astro-scripts": "workspace:*", "cheerio": "1.0.0", "execa": "^8.0.1", diff --git a/packages/netlify/test/hosted/hosted-astro-project/package.json b/packages/netlify/test/hosted/hosted-astro-project/package.json index a3eeff12..4a0c8e26 100644 --- a/packages/netlify/test/hosted/hosted-astro-project/package.json +++ b/packages/netlify/test/hosted/hosted-astro-project/package.json @@ -7,6 +7,6 @@ }, "dependencies": { "@astrojs/netlify": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/node/package.json b/packages/node/package.json index 615dae6f..fa8939ee 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -34,10 +34,10 @@ }, "devDependencies": { "@astrojs/test-utils": "workspace:*", - "@types/node": "^18.19.59", + "@types/node": "^18.19.62", "@types/send": "^0.17.4", "@types/server-destroy": "^1.0.4", - "astro": "^4.16.7", + "astro": "^4.16.8", "astro-scripts": "workspace:*", "cheerio": "1.0.0", "express": "^4.21.1", diff --git a/packages/node/test/fixtures/api-route/package.json b/packages/node/test/fixtures/api-route/package.json index aa85343b..b0ef0ac6 100644 --- a/packages/node/test/fixtures/api-route/package.json +++ b/packages/node/test/fixtures/api-route/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/bad-urls/package.json b/packages/node/test/fixtures/bad-urls/package.json index 0baa44b9..534441c2 100644 --- a/packages/node/test/fixtures/bad-urls/package.json +++ b/packages/node/test/fixtures/bad-urls/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/encoded/package.json b/packages/node/test/fixtures/encoded/package.json index 6aa3ebf8..12d63609 100644 --- a/packages/node/test/fixtures/encoded/package.json +++ b/packages/node/test/fixtures/encoded/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/errors/package.json b/packages/node/test/fixtures/errors/package.json index 399a431b..043edf5e 100644 --- a/packages/node/test/fixtures/errors/package.json +++ b/packages/node/test/fixtures/errors/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/headers/package.json b/packages/node/test/fixtures/headers/package.json index b3161e67..39e1e611 100644 --- a/packages/node/test/fixtures/headers/package.json +++ b/packages/node/test/fixtures/headers/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/image/package.json b/packages/node/test/fixtures/image/package.json index 6a29aebd..4c77b538 100644 --- a/packages/node/test/fixtures/image/package.json +++ b/packages/node/test/fixtures/image/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" }, "scripts": { diff --git a/packages/node/test/fixtures/locals/package.json b/packages/node/test/fixtures/locals/package.json index ed924a0f..aacb214b 100644 --- a/packages/node/test/fixtures/locals/package.json +++ b/packages/node/test/fixtures/locals/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/node-middleware/package.json b/packages/node/test/fixtures/node-middleware/package.json index a0a4a46d..bc9a43a6 100644 --- a/packages/node/test/fixtures/node-middleware/package.json +++ b/packages/node/test/fixtures/node-middleware/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/prerender-404-500/package.json b/packages/node/test/fixtures/prerender-404-500/package.json index fac8aef5..69869c0d 100644 --- a/packages/node/test/fixtures/prerender-404-500/package.json +++ b/packages/node/test/fixtures/prerender-404-500/package.json @@ -4,7 +4,7 @@ "private": true, "type": "module", "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/prerender/package.json b/packages/node/test/fixtures/prerender/package.json index a625756c..2ea5491c 100644 --- a/packages/node/test/fixtures/prerender/package.json +++ b/packages/node/test/fixtures/prerender/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/preview-headers/package.json b/packages/node/test/fixtures/preview-headers/package.json index 25547a29..e938fc53 100644 --- a/packages/node/test/fixtures/preview-headers/package.json +++ b/packages/node/test/fixtures/preview-headers/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/trailing-slash/package.json b/packages/node/test/fixtures/trailing-slash/package.json index 85ce2b96..a2a29a89 100644 --- a/packages/node/test/fixtures/trailing-slash/package.json +++ b/packages/node/test/fixtures/trailing-slash/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/url/package.json b/packages/node/test/fixtures/url/package.json index 68de0ee8..1fdfd3c4 100644 --- a/packages/node/test/fixtures/url/package.json +++ b/packages/node/test/fixtures/url/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/node/test/fixtures/well-known-locations/package.json b/packages/node/test/fixtures/well-known-locations/package.json index 0289d8cd..ef6babf5 100644 --- a/packages/node/test/fixtures/well-known-locations/package.json +++ b/packages/node/test/fixtures/well-known-locations/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "@astrojs/node": "workspace:*" } } diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index b2243e85..e23dc44d 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -8,7 +8,7 @@ }, "keywords": [], "dependencies": { - "astro": "^4.16.7", + "astro": "^4.16.8", "execa": "^8.0.1", "fast-glob": "^3.3.2", "strip-ansi": "^7.1.0" diff --git a/packages/vercel/package.json b/packages/vercel/package.json index 04bd509b..25fdc8a1 100644 --- a/packages/vercel/package.json +++ b/packages/vercel/package.json @@ -40,7 +40,7 @@ }, "dependencies": { "@astrojs/internal-helpers": "^0.4.1", - "@vercel/analytics": "^1.3.1", + "@vercel/analytics": "^1.3.2", "@vercel/edge": "^1.1.2", "@vercel/nft": "^0.27.5", "esbuild": "^0.21.5", @@ -52,7 +52,7 @@ }, "devDependencies": { "@astrojs/test-utils": "workspace:*", - "astro": "^4.16.7", + "astro": "^4.16.8", "astro-scripts": "workspace:*", "cheerio": "1.0.0" }, diff --git a/packages/vercel/test/fixtures/basic/package.json b/packages/vercel/test/fixtures/basic/package.json index 932eebd5..b6a96bb6 100644 --- a/packages/vercel/test/fixtures/basic/package.json +++ b/packages/vercel/test/fixtures/basic/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/functionPerRoute/package.json b/packages/vercel/test/fixtures/functionPerRoute/package.json index 5def1901..15842778 100644 --- a/packages/vercel/test/fixtures/functionPerRoute/package.json +++ b/packages/vercel/test/fixtures/functionPerRoute/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/image/package.json b/packages/vercel/test/fixtures/image/package.json index b64fb00f..0f7fdbe1 100644 --- a/packages/vercel/test/fixtures/image/package.json +++ b/packages/vercel/test/fixtures/image/package.json @@ -7,6 +7,6 @@ }, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/isr/package.json b/packages/vercel/test/fixtures/isr/package.json index 134b2331..9bddeeab 100644 --- a/packages/vercel/test/fixtures/isr/package.json +++ b/packages/vercel/test/fixtures/isr/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/max-duration/package.json b/packages/vercel/test/fixtures/max-duration/package.json index 0f5cc108..55b27c01 100644 --- a/packages/vercel/test/fixtures/max-duration/package.json +++ b/packages/vercel/test/fixtures/max-duration/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/middleware-with-edge-file/package.json b/packages/vercel/test/fixtures/middleware-with-edge-file/package.json index 7d9d9ecd..d5a18b19 100644 --- a/packages/vercel/test/fixtures/middleware-with-edge-file/package.json +++ b/packages/vercel/test/fixtures/middleware-with-edge-file/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/middleware-without-edge-file/package.json b/packages/vercel/test/fixtures/middleware-without-edge-file/package.json index de9c92a8..60ca05cb 100644 --- a/packages/vercel/test/fixtures/middleware-without-edge-file/package.json +++ b/packages/vercel/test/fixtures/middleware-without-edge-file/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/no-output/package.json b/packages/vercel/test/fixtures/no-output/package.json index 8cd6f65e..1dd0579d 100644 --- a/packages/vercel/test/fixtures/no-output/package.json +++ b/packages/vercel/test/fixtures/no-output/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/prerendered-error-pages/package.json b/packages/vercel/test/fixtures/prerendered-error-pages/package.json index 13c6fcdd..e1ab6fe5 100644 --- a/packages/vercel/test/fixtures/prerendered-error-pages/package.json +++ b/packages/vercel/test/fixtures/prerendered-error-pages/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/redirects-serverless/package.json b/packages/vercel/test/fixtures/redirects-serverless/package.json index 187edac4..f8e392f4 100644 --- a/packages/vercel/test/fixtures/redirects-serverless/package.json +++ b/packages/vercel/test/fixtures/redirects-serverless/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/redirects/package.json b/packages/vercel/test/fixtures/redirects/package.json index acadff09..0d4da60f 100644 --- a/packages/vercel/test/fixtures/redirects/package.json +++ b/packages/vercel/test/fixtures/redirects/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/server-islands/package.json b/packages/vercel/test/fixtures/server-islands/package.json index b81ee462..425fe8a8 100644 --- a/packages/vercel/test/fixtures/server-islands/package.json +++ b/packages/vercel/test/fixtures/server-islands/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/serverless-prerender/package.json b/packages/vercel/test/fixtures/serverless-prerender/package.json index 8d782d6b..6d472b84 100644 --- a/packages/vercel/test/fixtures/serverless-prerender/package.json +++ b/packages/vercel/test/fixtures/serverless-prerender/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/serverless-with-dynamic-routes/package.json b/packages/vercel/test/fixtures/serverless-with-dynamic-routes/package.json index 8d98e7e3..eb558450 100644 --- a/packages/vercel/test/fixtures/serverless-with-dynamic-routes/package.json +++ b/packages/vercel/test/fixtures/serverless-with-dynamic-routes/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/static-assets/package.json b/packages/vercel/test/fixtures/static-assets/package.json index 96f94a88..1984ca85 100644 --- a/packages/vercel/test/fixtures/static-assets/package.json +++ b/packages/vercel/test/fixtures/static-assets/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/static/package.json b/packages/vercel/test/fixtures/static/package.json index d3017882..a8e3bb19 100644 --- a/packages/vercel/test/fixtures/static/package.json +++ b/packages/vercel/test/fixtures/static/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/streaming/package.json b/packages/vercel/test/fixtures/streaming/package.json index b8be13c4..6f13191d 100644 --- a/packages/vercel/test/fixtures/streaming/package.json +++ b/packages/vercel/test/fixtures/streaming/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/with-speed-insights-enabled/output-as-server/package.json b/packages/vercel/test/fixtures/with-speed-insights-enabled/output-as-server/package.json index d8bc997e..72201744 100644 --- a/packages/vercel/test/fixtures/with-speed-insights-enabled/output-as-server/package.json +++ b/packages/vercel/test/fixtures/with-speed-insights-enabled/output-as-server/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/with-speed-insights-enabled/output-as-static/package.json b/packages/vercel/test/fixtures/with-speed-insights-enabled/output-as-static/package.json index c3d72a25..703a5230 100644 --- a/packages/vercel/test/fixtures/with-speed-insights-enabled/output-as-static/package.json +++ b/packages/vercel/test/fixtures/with-speed-insights-enabled/output-as-static/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/fixtures/with-web-analytics-enabled/output-as-static/package.json b/packages/vercel/test/fixtures/with-web-analytics-enabled/output-as-static/package.json index c1d46ad4..4ef0f48e 100644 --- a/packages/vercel/test/fixtures/with-web-analytics-enabled/output-as-static/package.json +++ b/packages/vercel/test/fixtures/with-web-analytics-enabled/output-as-static/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/packages/vercel/test/hosted/hosted-astro-project/package.json b/packages/vercel/test/hosted/hosted-astro-project/package.json index 514bf073..183ff95e 100644 --- a/packages/vercel/test/hosted/hosted-astro-project/package.json +++ b/packages/vercel/test/hosted/hosted-astro-project/package.json @@ -7,6 +7,6 @@ }, "dependencies": { "@astrojs/vercel": "workspace:*", - "astro": "^4.16.7" + "astro": "^4.16.8" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dbe3c0bc..73e3f57c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -21,8 +21,8 @@ importers: specifier: ^2.27.9 version: 2.27.9 '@types/node': - specifier: ^20.16.15 - version: 20.16.15 + specifier: ^20.17.4 + version: 20.17.4 esbuild: specifier: ^0.21.5 version: 0.21.5 @@ -57,8 +57,8 @@ importers: specifier: ^5.6.3 version: 5.6.3 typescript-eslint: - specifier: ^8.11.0 - version: 8.11.0(eslint@9.13.0)(typescript@5.6.3) + specifier: ^8.12.2 + version: 8.12.2(eslint@9.13.0)(typescript@5.6.3) packages/cloudflare: dependencies: @@ -73,7 +73,7 @@ importers: version: 4.20241022.0 '@inox-tools/astro-when': specifier: ^0.2.4 - version: 0.2.4(astro@4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3)) + version: 0.2.4(astro@4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)) esbuild: specifier: ^0.21.5 version: 0.21.5 @@ -84,21 +84,21 @@ importers: specifier: ^0.30.12 version: 0.30.12 miniflare: - specifier: ^3.20241018.0 - version: 3.20241018.0 + specifier: ^3.20241022.0 + version: 3.20241022.0 tiny-glob: specifier: ^0.2.9 version: 0.2.9 wrangler: - specifier: ^3.82.0 - version: 3.82.0(@cloudflare/workers-types@4.20241022.0) + specifier: ^3.84.0 + version: 3.84.0(@cloudflare/workers-types@4.20241022.0) devDependencies: '@astrojs/test-utils': specifier: workspace:* version: link:../test-utils astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) astro-scripts: specifier: workspace:* version: link:../../scripts @@ -112,8 +112,8 @@ importers: specifier: ^3.3.2 version: 3.3.2 rollup: - specifier: ^4.24.0 - version: 4.24.0 + specifier: ^4.24.3 + version: 4.24.3 strip-ansi: specifier: ^7.1.0 version: 7.1.0 @@ -127,12 +127,12 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) devDependencies: wrangler: - specifier: ^3.82.0 - version: 3.82.0(@cloudflare/workers-types@4.20241022.0) + specifier: ^3.84.0 + version: 3.84.0(@cloudflare/workers-types@4.20241022.0) packages/cloudflare/test/fixtures/astro-env: dependencies: @@ -140,12 +140,12 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) devDependencies: wrangler: - specifier: ^3.82.0 - version: 3.82.0(@cloudflare/workers-types@4.20241022.0) + specifier: ^3.84.0 + version: 3.84.0(@cloudflare/workers-types@4.20241022.0) packages/cloudflare/test/fixtures/compile-image-service: dependencies: @@ -153,8 +153,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/cloudflare/test/fixtures/external-image-service: dependencies: @@ -162,8 +162,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/cloudflare/test/fixtures/module-loader: dependencies: @@ -171,8 +171,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/cloudflare/test/fixtures/no-output: dependencies: @@ -180,8 +180,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/cloudflare/test/fixtures/routes-json: dependencies: @@ -189,8 +189,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/cloudflare/test/fixtures/with-solid-js: dependencies: @@ -201,8 +201,8 @@ importers: specifier: ^4.4.2 version: 4.4.2(solid-js@1.9.3)(vite@5.4.10(@types/node@22.4.1)) astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) solid-js: specifier: ^1.9.3 version: 1.9.3 @@ -213,8 +213,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/netlify: dependencies: @@ -235,7 +235,7 @@ importers: version: 0.21.5 vite: specifier: ^5.4.10 - version: 5.4.10(@types/node@20.16.15) + version: 5.4.10(@types/node@20.17.4) devDependencies: '@astrojs/test-utils': specifier: workspace:* @@ -247,11 +247,11 @@ importers: specifier: ^0.34.1 version: 0.34.1 '@types/node': - specifier: ^20.16.15 - version: 20.16.15 + specifier: ^20.17.4 + version: 20.17.4 astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@20.16.15)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@20.17.4)(rollup@4.24.3)(typescript@5.6.3) astro-scripts: specifier: workspace:* version: link:../../scripts @@ -298,8 +298,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/netlify/test/static/fixtures/redirects: dependencies: @@ -320,8 +320,8 @@ importers: specifier: workspace:* version: link:../test-utils '@types/node': - specifier: ^18.19.59 - version: 18.19.59 + specifier: ^18.19.62 + version: 18.19.62 '@types/send': specifier: ^0.17.4 version: 0.17.4 @@ -329,8 +329,8 @@ importers: specifier: ^1.0.4 version: 1.0.4 astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@18.19.59)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@18.19.62)(rollup@4.24.3)(typescript@5.6.3) astro-scripts: specifier: workspace:* version: link:../../scripts @@ -342,7 +342,7 @@ importers: version: 4.21.1 node-mocks-http: specifier: ^1.16.1 - version: 1.16.1(@types/express@4.17.21)(@types/node@18.19.59) + version: 1.16.1(@types/express@4.17.21)(@types/node@18.19.62) packages/node/test/fixtures/api-route: dependencies: @@ -350,8 +350,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/bad-urls: dependencies: @@ -359,8 +359,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/encoded: dependencies: @@ -368,8 +368,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/errors: dependencies: @@ -377,8 +377,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/headers: dependencies: @@ -386,8 +386,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/image: dependencies: @@ -395,8 +395,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/locals: dependencies: @@ -404,8 +404,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/node-middleware: dependencies: @@ -413,8 +413,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/prerender: dependencies: @@ -422,8 +422,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/prerender-404-500: dependencies: @@ -431,8 +431,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/preview-headers: dependencies: @@ -440,8 +440,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/trailing-slash: dependencies: @@ -449,8 +449,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/url: dependencies: @@ -458,8 +458,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/node/test/fixtures/well-known-locations: dependencies: @@ -467,14 +467,14 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/test-utils: dependencies: astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) execa: specifier: ^8.0.1 version: 8.0.1 @@ -491,8 +491,8 @@ importers: specifier: ^0.4.1 version: 0.4.1 '@vercel/analytics': - specifier: ^1.3.1 - version: 1.3.1 + specifier: ^1.3.2 + version: 1.3.2 '@vercel/edge': specifier: ^1.1.2 version: 1.1.2 @@ -513,8 +513,8 @@ importers: specifier: workspace:* version: link:../test-utils astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) astro-scripts: specifier: workspace:* version: link:../../scripts @@ -528,8 +528,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/functionPerRoute: dependencies: @@ -537,8 +537,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/image: dependencies: @@ -546,8 +546,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/isr: dependencies: @@ -555,8 +555,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/max-duration: dependencies: @@ -564,8 +564,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/middleware-with-edge-file: dependencies: @@ -573,8 +573,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/middleware-without-edge-file: dependencies: @@ -582,8 +582,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/no-output: dependencies: @@ -591,8 +591,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/prerendered-error-pages: dependencies: @@ -600,8 +600,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/redirects: dependencies: @@ -609,8 +609,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/redirects-serverless: dependencies: @@ -618,8 +618,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/server-islands: dependencies: @@ -627,8 +627,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/serverless-prerender: dependencies: @@ -636,8 +636,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/serverless-with-dynamic-routes: dependencies: @@ -645,8 +645,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/static: dependencies: @@ -654,8 +654,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/static-assets: dependencies: @@ -663,8 +663,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/streaming: dependencies: @@ -672,8 +672,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/with-speed-insights-enabled/output-as-server: dependencies: @@ -681,8 +681,8 @@ importers: specifier: workspace:* version: link:../../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/with-speed-insights-enabled/output-as-static: dependencies: @@ -690,8 +690,8 @@ importers: specifier: workspace:* version: link:../../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/fixtures/with-web-analytics-enabled/output-as-static: dependencies: @@ -699,8 +699,8 @@ importers: specifier: workspace:* version: link:../../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) packages/vercel/test/hosted/hosted-astro-project: dependencies: @@ -708,8 +708,8 @@ importers: specifier: workspace:* version: link:../../.. astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + specifier: ^4.16.8 + version: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) scripts: dependencies: @@ -774,24 +774,24 @@ packages: '@astrojs/yaml2ts@0.2.1': resolution: {integrity: sha512-CBaNwDQJz20E5WxzQh4thLVfhB3JEEGz72wRA+oJp6fQR37QLAqXZJU0mHC+yqMOQ6oj0GfRPJrz6hjf+zm6zA==} - '@babel/code-frame@7.25.9': - resolution: {integrity: sha512-z88xeGxnzehn2sqZ8UdGQEvYErF1odv2CftxInpSYJt6uHuPe9YjahKZITGs3l5LeI9d2ROG+obuDAoSlqbNfQ==} + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} '@babel/compat-data@7.25.9': resolution: {integrity: sha512-yD+hEuJ/+wAJ4Ox2/rpNv5HIuPG82x3ZlQvYVn8iYCprdxzE7P1udpGF1jyjQVBU4dgznN+k2h103vxZ7NdPyw==} engines: {node: '>=6.9.0'} - '@babel/core@7.25.9': - resolution: {integrity: sha512-WYvQviPw+Qyib0v92AwNIrdLISTp7RfDkM7bPqBvpbnhY4wq8HvHBZREVdYDXk98C8BkOIVnHAY3yvj7AVISxQ==} + '@babel/core@7.26.0': + resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} engines: {node: '>=6.9.0'} - '@babel/generator@7.25.9': - resolution: {integrity: sha512-omlUGkr5EaoIJrhLf9CJ0TvjBRpd9+AXRG//0GEQ9THSo8wPiTlbpy1/Ow8ZTrbXpjd9FHXfbFQx32I04ht0FA==} + '@babel/generator@7.26.2': + resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} engines: {node: '>=6.9.0'} - '@babel/helper-annotate-as-pure@7.25.7': - resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==} + '@babel/helper-annotate-as-pure@7.25.9': + resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} engines: {node: '>=6.9.0'} '@babel/helper-compilation-targets@7.25.9': @@ -806,18 +806,14 @@ packages: resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} engines: {node: '>=6.9.0'} - '@babel/helper-module-transforms@7.25.9': - resolution: {integrity: sha512-TvLZY/F3+GvdRYFZFyxMvnsKi+4oJdgZzU3BoGN9Uc2d9C6zfNwJcKKhjqLAhK8i46mv93jsO74fDh3ih6rpHA==} + '@babel/helper-module-transforms@7.26.0': + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-plugin-utils@7.25.7': - resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-simple-access@7.25.9': - resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==} + '@babel/helper-plugin-utils@7.25.9': + resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} engines: {node: '>=6.9.0'} '@babel/helper-string-parser@7.25.9': @@ -832,27 +828,23 @@ packages: resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.25.9': - resolution: {integrity: sha512-oKWp3+usOJSzDZOucZUAMayhPz/xVjzymyDzUN8dk0Wd3RWMlGLXi07UCQ/CgQVb8LvXx3XBajJH4XGgkt7H7g==} - engines: {node: '>=6.9.0'} - - '@babel/highlight@7.25.9': - resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==} + '@babel/helpers@7.26.0': + resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} engines: {node: '>=6.9.0'} - '@babel/parser@7.25.9': - resolution: {integrity: sha512-aI3jjAAO1fh7vY/pBGsn1i9LDbRP43+asrRlkPuTXW5yHXtd1NgTEMudbBoDDxrf1daEEfPJqR+JBMakzrR4Dg==} + '@babel/parser@7.26.2': + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/plugin-syntax-jsx@7.25.7': - resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==} + '@babel/plugin-syntax-jsx@7.25.9': + resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx@7.25.7': - resolution: {integrity: sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==} + '@babel/plugin-transform-react-jsx@7.25.9': + resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -869,8 +861,8 @@ packages: resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} engines: {node: '>=6.9.0'} - '@babel/types@7.25.9': - resolution: {integrity: sha512-OwS2CM5KocvQ/k7dFJa8i5bNGJP0hXWfVCfDkqRFP1IreH1JDC7wG6eCYCi0+McbfT8OR/kNqsI0UU0xP9H6PQ==} + '@babel/types@7.26.0': + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} engines: {node: '>=6.9.0'} '@biomejs/biome@1.9.4': @@ -991,38 +983,38 @@ packages: resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==} engines: {node: '>=16.13'} - '@cloudflare/workerd-darwin-64@1.20241018.1': - resolution: {integrity: sha512-CRySEzjNRoR8frP5AbtJXd1tgVJa5v7bZon9Dh6nljYlhG+piDv8jvOVEUqF3cXXS+M5aXwr4NlozdMvl5g5mg==} + '@cloudflare/workerd-darwin-64@1.20241022.0': + resolution: {integrity: sha512-1NNYun37myMTgCUiPQEJ0cMal4mKZVTpkD0b2tx9hV70xji+frVJcSK8YVLeUm1P+Rw1d/ct8DMgQuCpsz3Fsw==} engines: {node: '>=16'} cpu: [x64] os: [darwin] - '@cloudflare/workerd-darwin-arm64@1.20241018.1': - resolution: {integrity: sha512-Y63yWJNTgETDFkY3Ony71/k/G1HRDFIhEzwbT+OWmg1Qbsqa4TquHPVFkgv+OJhpmD3HV9gTBcn/M2QJ/+pGmg==} + '@cloudflare/workerd-darwin-arm64@1.20241022.0': + resolution: {integrity: sha512-FOO/0P0U82EsTLTdweNVgw+4VOk5nghExLPLSppdOziq6IR5HVgP44Kmq5LdsUeHUhwUmfOh9hzaTpkNzUqKvw==} engines: {node: '>=16'} cpu: [arm64] os: [darwin] - '@cloudflare/workerd-linux-64@1.20241018.1': - resolution: {integrity: sha512-a2AbSAXNMMiREvN+PwjHdJ5zOzI4+qf8+rb6H/y4HcVbPZN5C2fanxv5Bx7NUHLiMD/W0FrGug1aU+RPUVZC9Q==} + '@cloudflare/workerd-linux-64@1.20241022.0': + resolution: {integrity: sha512-RsNc19BQJG9yd+ngnjuDeG9ywZG+7t1L4JeglgceyY5ViMNMKVO7Zpbsu69kXslU9h6xyQG+lrmclg3cBpnhYA==} engines: {node: '>=16'} cpu: [x64] os: [linux] - '@cloudflare/workerd-linux-arm64@1.20241018.1': - resolution: {integrity: sha512-iCJ7bjD/+zhlp3IWnkiry180DwdNvak/sVoS98pIAS41aR3gJVzE5BCz/2yTWFdCoUVZ5yKJrv1HhSKgQRBIEw==} + '@cloudflare/workerd-linux-arm64@1.20241022.0': + resolution: {integrity: sha512-x5mUXpKxfsosxcFmcq5DaqLs37PejHYVRsNz1cWI59ma7aC4y4Qn6Tf3i0r9MwQTF/MccP4SjVslMU6m4W7IaA==} engines: {node: '>=16'} cpu: [arm64] os: [linux] - '@cloudflare/workerd-windows-64@1.20241018.1': - resolution: {integrity: sha512-qwDVh/KrwEPY82h6tZ1O4BXBAKeGy30BeTr9wvTUVeY9eX/KT73GuEG+ttwiashRfqjOa0Gcqjsfpd913ITFyg==} + '@cloudflare/workerd-windows-64@1.20241022.0': + resolution: {integrity: sha512-eBCClx4szCOgKqOlxxbdNszMqQf3MRG1B9BRIqEM/diDfdR9IrZ8l3FaEm+l9gXgPmS6m1NBn40aWuGBl8UTSw==} engines: {node: '>=16'} cpu: [x64] os: [win32] - '@cloudflare/workers-shared@0.6.0': - resolution: {integrity: sha512-rfUCvb3hx4AsvdUZsxgk9lmgEnQehqV3jdtXLP/Xr0+P56n11T/0nXNMzmn7Nnv+IJFOV6X9NmFhuMz4sBPw7w==} + '@cloudflare/workers-shared@0.7.0': + resolution: {integrity: sha512-LLQRTqx7lKC7o2eCYMpyc5FXV8d0pUX6r3A+agzhqS9aoR5A6zCPefwQGcvbKx83ozX22ATZcemwxQXn12UofQ==} engines: {node: '>=16.7.0'} '@cloudflare/workers-types@4.20241022.0': @@ -1734,8 +1726,8 @@ packages: resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} engines: {node: '>= 8.0.0'} - '@rollup/pluginutils@5.1.2': - resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==} + '@rollup/pluginutils@5.1.3': + resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -1743,97 +1735,107 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.24.0': - resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==} + '@rollup/rollup-android-arm-eabi@4.24.3': + resolution: {integrity: sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.24.0': - resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==} + '@rollup/rollup-android-arm64@4.24.3': + resolution: {integrity: sha512-iAHpft/eQk9vkWIV5t22V77d90CRofgR2006UiCjHcHJFVI1E0oBkQIAbz+pLtthFw3hWEmVB4ilxGyBf48i2Q==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.24.0': - resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==} + '@rollup/rollup-darwin-arm64@4.24.3': + resolution: {integrity: sha512-QPW2YmkWLlvqmOa2OwrfqLJqkHm7kJCIMq9kOz40Zo9Ipi40kf9ONG5Sz76zszrmIZZ4hgRIkez69YnTHgEz1w==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.24.0': - resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==} + '@rollup/rollup-darwin-x64@4.24.3': + resolution: {integrity: sha512-KO0pN5x3+uZm1ZXeIfDqwcvnQ9UEGN8JX5ufhmgH5Lz4ujjZMAnxQygZAVGemFWn+ZZC0FQopruV4lqmGMshow==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.24.0': - resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==} + '@rollup/rollup-freebsd-arm64@4.24.3': + resolution: {integrity: sha512-CsC+ZdIiZCZbBI+aRlWpYJMSWvVssPuWqrDy/zi9YfnatKKSLFCe6fjna1grHuo/nVaHG+kiglpRhyBQYRTK4A==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.24.3': + resolution: {integrity: sha512-F0nqiLThcfKvRQhZEzMIXOQG4EeX61im61VYL1jo4eBxv4aZRmpin6crnBJQ/nWnCsjH5F6J3W6Stdm0mBNqBg==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.24.3': + resolution: {integrity: sha512-KRSFHyE/RdxQ1CSeOIBVIAxStFC/hnBgVcaiCkQaVC+EYDtTe4X7z5tBkFyRoBgUGtB6Xg6t9t2kulnX6wJc6A==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.24.0': - resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==} + '@rollup/rollup-linux-arm-musleabihf@4.24.3': + resolution: {integrity: sha512-h6Q8MT+e05zP5BxEKz0vi0DhthLdrNEnspdLzkoFqGwnmOzakEHSlXfVyA4HJ322QtFy7biUAVFPvIDEDQa6rw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.24.0': - resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==} + '@rollup/rollup-linux-arm64-gnu@4.24.3': + resolution: {integrity: sha512-fKElSyXhXIJ9pqiYRqisfirIo2Z5pTTve5K438URf08fsypXrEkVmShkSfM8GJ1aUyvjakT+fn2W7Czlpd/0FQ==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.24.0': - resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==} + '@rollup/rollup-linux-arm64-musl@4.24.3': + resolution: {integrity: sha512-YlddZSUk8G0px9/+V9PVilVDC6ydMz7WquxozToozSnfFK6wa6ne1ATUjUvjin09jp34p84milxlY5ikueoenw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.24.0': - resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==} + '@rollup/rollup-linux-powerpc64le-gnu@4.24.3': + resolution: {integrity: sha512-yNaWw+GAO8JjVx3s3cMeG5Esz1cKVzz8PkTJSfYzE5u7A+NvGmbVFEHP+BikTIyYWuz0+DX9kaA3pH9Sqxp69g==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.24.0': - resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==} + '@rollup/rollup-linux-riscv64-gnu@4.24.3': + resolution: {integrity: sha512-lWKNQfsbpv14ZCtM/HkjCTm4oWTKTfxPmr7iPfp3AHSqyoTz5AgLemYkWLwOBWc+XxBbrU9SCokZP0WlBZM9lA==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.24.0': - resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==} + '@rollup/rollup-linux-s390x-gnu@4.24.3': + resolution: {integrity: sha512-HoojGXTC2CgCcq0Woc/dn12wQUlkNyfH0I1ABK4Ni9YXyFQa86Fkt2Q0nqgLfbhkyfQ6003i3qQk9pLh/SpAYw==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.24.0': - resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==} + '@rollup/rollup-linux-x64-gnu@4.24.3': + resolution: {integrity: sha512-mnEOh4iE4USSccBOtcrjF5nj+5/zm6NcNhbSEfR3Ot0pxBwvEn5QVUXcuOwwPkapDtGZ6pT02xLoPaNv06w7KQ==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.24.0': - resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==} + '@rollup/rollup-linux-x64-musl@4.24.3': + resolution: {integrity: sha512-rMTzawBPimBQkG9NKpNHvquIUTQPzrnPxPbCY1Xt+mFkW7pshvyIS5kYgcf74goxXOQk0CP3EoOC1zcEezKXhw==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.24.0': - resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==} + '@rollup/rollup-win32-arm64-msvc@4.24.3': + resolution: {integrity: sha512-2lg1CE305xNvnH3SyiKwPVsTVLCg4TmNCF1z7PSHX2uZY2VbUpdkgAllVoISD7JO7zu+YynpWNSKAtOrX3AiuA==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.24.0': - resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==} + '@rollup/rollup-win32-ia32-msvc@4.24.3': + resolution: {integrity: sha512-9SjYp1sPyxJsPWuhOCX6F4jUMXGbVVd5obVpoVEi8ClZqo52ViZewA6eFz85y8ezuOA+uJMP5A5zo6Oz4S5rVQ==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.24.0': - resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==} + '@rollup/rollup-win32-x64-msvc@4.24.3': + resolution: {integrity: sha512-HGZgRFFYrMrP3TJlq58nR1xy8zHKId25vhmm5S9jETEfDf6xybPxsavFTJaufe2zgOGYJBskGlj49CwtEuFhWQ==} cpu: [x64] os: [win32] - '@shikijs/core@1.22.0': - resolution: {integrity: sha512-S8sMe4q71TJAW+qG93s5VaiihujRK6rqDFqBnxqvga/3LvqHEnxqBIOPkt//IdXVtHkQWKu4nOQNk0uBGicU7Q==} + '@shikijs/core@1.22.2': + resolution: {integrity: sha512-bvIQcd8BEeR1yFvOYv6HDiyta2FFVePbzeowf5pPS1avczrPK+cjmaxxh0nx5QzbON7+Sv0sQfQVciO7bN72sg==} - '@shikijs/engine-javascript@1.22.0': - resolution: {integrity: sha512-AeEtF4Gcck2dwBqCFUKYfsCq0s+eEbCEbkUuFou53NZ0sTGnJnJ/05KHQFZxpii5HMXbocV9URYVowOP2wH5kw==} + '@shikijs/engine-javascript@1.22.2': + resolution: {integrity: sha512-iOvql09ql6m+3d1vtvP8fLCVCK7BQD1pJFmHIECsujB0V32BJ0Ab6hxk1ewVSMFA58FI0pR2Had9BKZdyQrxTw==} - '@shikijs/engine-oniguruma@1.22.0': - resolution: {integrity: sha512-5iBVjhu/DYs1HB0BKsRRFipRrD7rqjxlWTj4F2Pf+nQSPqc3kcyqFFeZXnBMzDf0HdqaFVvhDRAGiYNvyLP+Mw==} + '@shikijs/engine-oniguruma@1.22.2': + resolution: {integrity: sha512-GIZPAGzQOy56mGvWMoZRPggn0dTlBf1gutV5TdceLCZlFNqWmuc7u+CzD0Gd9vQUTgLbrt0KLzz6FNprqYAxlA==} - '@shikijs/types@1.22.0': - resolution: {integrity: sha512-Fw/Nr7FGFhlQqHfxzZY8Cwtwk5E9nKDUgeLjZgt3UuhcM3yJR9xj3ZGNravZZok8XmEZMiYkSMTPlPkULB8nww==} + '@shikijs/types@1.22.2': + resolution: {integrity: sha512-NCWDa6LGZqTuzjsGfXOBWfjS/fDIbDdmVDug+7ykVe1IKT4c1gakrvlfFYp5NhAXH/lyqLM8wsAPo5wNy73Feg==} '@shikijs/vscode-textmate@9.3.0': resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} @@ -1898,11 +1900,11 @@ packages: '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - '@types/node@18.19.59': - resolution: {integrity: sha512-vizm2EqwV/7Zay+A6J3tGl9Lhr7CjZe2HmWS988sefiEmsyP9CeXEleho6i4hJk/8UtZAo0bWN4QPZZr83RxvQ==} + '@types/node@18.19.62': + resolution: {integrity: sha512-UOGhw+yZV/icyM0qohQVh3ktpY40Sp7tdTW7HxG3pTd7AiMrlFlAJNUrGK9t5mdW0+ViQcFV74zCSIx9ZJpncA==} - '@types/node@20.16.15': - resolution: {integrity: sha512-DV58qQz9dBMqVVn+qnKwGa51QzCD4YM/tQM16qLKxdf5tqz5W4QwtrMzjSTbabN1cFTSuyxVYBy+QWHjWW8X/g==} + '@types/node@20.17.4': + resolution: {integrity: sha512-Fi1Bj8qTJr4f1FDdHFR7oMlOawEYSzkHNdBJK+aRjcDDNHwEV3jPPjuZP2Lh2QNgXeqzM8Y+U6b6urKAog2rZw==} '@types/node@22.4.1': resolution: {integrity: sha512-1tbpb9325+gPnKK0dMm+/LMriX0vKxf6RnB0SZUqfyVkQ4fMgUSySqhxE/y8Jvs4NyF1yHzTfG9KlnkIODxPKg==} @@ -1928,8 +1930,8 @@ packages: '@types/unist@3.0.2': resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} - '@typescript-eslint/eslint-plugin@8.11.0': - resolution: {integrity: sha512-KhGn2LjW1PJT2A/GfDpiyOfS4a8xHQv2myUagTM5+zsormOmBlYsnQ6pobJ8XxJmh6hnHwa2Mbe3fPrDJoDhbA==} + '@typescript-eslint/eslint-plugin@8.12.2': + resolution: {integrity: sha512-gQxbxM8mcxBwaEmWdtLCIGLfixBMHhQjBqR8sVWNTPpcj45WlYL2IObS/DNMLH1DBP0n8qz+aiiLTGfopPEebw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 @@ -1939,8 +1941,8 @@ packages: typescript: optional: true - '@typescript-eslint/parser@8.11.0': - resolution: {integrity: sha512-lmt73NeHdy1Q/2ul295Qy3uninSqi6wQI18XwSpm8w0ZbQXUpjCAWP1Vlv/obudoBiIjJVjlztjQ+d/Md98Yxg==} + '@typescript-eslint/parser@8.12.2': + resolution: {integrity: sha512-MrvlXNfGPLH3Z+r7Tk+Z5moZAc0dzdVjTgUgwsdGweH7lydysQsnSww3nAmsq8blFuRD5VRlAr9YdEFw3e6PBw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -1949,12 +1951,12 @@ packages: typescript: optional: true - '@typescript-eslint/scope-manager@8.11.0': - resolution: {integrity: sha512-Uholz7tWhXmA4r6epo+vaeV7yjdKy5QFCERMjs1kMVsLRKIrSdM6o21W2He9ftp5PP6aWOVpD5zvrvuHZC0bMQ==} + '@typescript-eslint/scope-manager@8.12.2': + resolution: {integrity: sha512-gPLpLtrj9aMHOvxJkSbDBmbRuYdtiEbnvO25bCMza3DhMjTQw0u7Y1M+YR5JPbMsXXnSPuCf5hfq0nEkQDL/JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.11.0': - resolution: {integrity: sha512-ItiMfJS6pQU0NIKAaybBKkuVzo6IdnAhPFZA/2Mba/uBjuPQPet/8+zh5GtLHwmuFRShZx+8lhIs7/QeDHflOg==} + '@typescript-eslint/type-utils@8.12.2': + resolution: {integrity: sha512-bwuU4TAogPI+1q/IJSKuD4shBLc/d2vGcRT588q+jzayQyjVK2X6v/fbR4InY2U2sgf8MEvVCqEWUzYzgBNcGQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -1962,12 +1964,12 @@ packages: typescript: optional: true - '@typescript-eslint/types@8.11.0': - resolution: {integrity: sha512-tn6sNMHf6EBAYMvmPUaKaVeYvhUsrE6x+bXQTxjQRp360h1giATU0WvgeEys1spbvb5R+VpNOZ+XJmjD8wOUHw==} + '@typescript-eslint/types@8.12.2': + resolution: {integrity: sha512-VwDwMF1SZ7wPBUZwmMdnDJ6sIFk4K4s+ALKLP6aIQsISkPv8jhiw65sAK6SuWODN/ix+m+HgbYDkH+zLjrzvOA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.11.0': - resolution: {integrity: sha512-yHC3s1z1RCHoCz5t06gf7jH24rr3vns08XXhfEqzYpd6Hll3z/3g23JRi0jM8A47UFKNc3u/y5KIMx8Ynbjohg==} + '@typescript-eslint/typescript-estree@8.12.2': + resolution: {integrity: sha512-mME5MDwGe30Pq9zKPvyduyU86PH7aixwqYR2grTglAdB+AN8xXQ1vFGpYaUSJ5o5P/5znsSBeNcs5g5/2aQwow==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -1975,24 +1977,24 @@ packages: typescript: optional: true - '@typescript-eslint/utils@8.11.0': - resolution: {integrity: sha512-CYiX6WZcbXNJV7UNB4PLDIBtSdRmRI/nb0FMyqHPTQD1rMjA0foPLaPUV39C/MxkTd/QKSeX+Gb34PPsDVC35g==} + '@typescript-eslint/utils@8.12.2': + resolution: {integrity: sha512-UTTuDIX3fkfAz6iSVa5rTuSfWIYZ6ATtEocQ/umkRSyC9O919lbZ8dcH7mysshrCdrAM03skJOEYaBugxN+M6A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - '@typescript-eslint/visitor-keys@8.11.0': - resolution: {integrity: sha512-EaewX6lxSjRJnc+99+dqzTeoDZUfyrA52d2/HRrkI830kgovWsmIiTfmr0NZorzqic7ga+1bS60lRBUgR3n/Bw==} + '@typescript-eslint/visitor-keys@8.12.2': + resolution: {integrity: sha512-PChz8UaKQAVNHghsHcPyx1OMHoFRUEA7rJSK/mDhdq85bk+PLsUHUBqTQTFt18VJZbmxBovM65fezlheQRsSDA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - '@vercel/analytics@1.3.1': - resolution: {integrity: sha512-xhSlYgAuJ6Q4WQGkzYTLmXwhYl39sWjoMA3nHxfkvG+WdBT25c563a7QhwwKivEOZtPJXifYHR1m2ihoisbWyA==} + '@vercel/analytics@1.3.2': + resolution: {integrity: sha512-n/Ws7skBbW+fUBMeg+jrT30+GP00jTHvCcL4fuVrShuML0uveEV/4vVUdvqEVnDgXIGfLm0GXW5EID2mCcRXhg==} peerDependencies: next: '>= 13' - react: ^18 || ^19 + react: ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: next: optional: true @@ -2054,8 +2056,8 @@ packages: resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} engines: {node: '>=0.4.0'} - acorn@8.13.0: - resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==} + acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} engines: {node: '>=0.4.0'} hasBin: true @@ -2084,10 +2086,6 @@ packages: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} engines: {node: '>=12'} - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - ansi-styles@4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} @@ -2140,8 +2138,8 @@ packages: peerDependencies: astro: ^4.12.0 - astro@4.16.7: - resolution: {integrity: sha512-nON+8MUEkWTFwXbS4zsQIq4t0Fs42eulM4x236AL+qNnWfqNAOOqAnFxO1dxfJ1q+XopIBbbT9Mtev+0zH47PQ==} + astro@4.16.8: + resolution: {integrity: sha512-BRWFP0UQ8gkOr90KQW7oooedtgCk/j91pyv1WQUmgZwMUZk/v0HJRiddAZgvGCECOnmZFc9ZqRZnBsAMUgApNQ==} engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} hasBin: true @@ -2236,10 +2234,6 @@ packages: ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - chalk@4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} @@ -2310,16 +2304,10 @@ packages: resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} engines: {node: '>=6'} - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} engines: {node: '>=7.0.0'} - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} @@ -2568,10 +2556,6 @@ packages: escape-html@1.0.3: resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} @@ -2870,10 +2854,6 @@ packages: resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} engines: {node: '>=6.0'} - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} @@ -3371,8 +3351,8 @@ packages: resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} engines: {node: '>=18'} - miniflare@3.20241018.0: - resolution: {integrity: sha512-g7i5oGAoJOk8+hJp77A5/wAdu7PEvi5hQc+0wzwzjhUNM2I5DHd2Cc29ACPhAe1kIXvCCVkxs3+REF52qnX0aw==} + miniflare@3.20241022.0: + resolution: {integrity: sha512-x9Fbq1Hmz1f0osIT9Qmj78iX4UpCP2EqlZnA/tzj/3+I49vc3Kq0fNqSSKplcdf6HlCHdL3fOBicmreQF4BUUQ==} engines: {node: '>=16.13'} hasBin: true @@ -3648,6 +3628,10 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + pify@4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} @@ -3866,8 +3850,8 @@ packages: rollup-pluginutils@2.8.2: resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} - rollup@4.24.0: - resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==} + rollup@4.24.3: + resolution: {integrity: sha512-HBW896xR5HGmoksbi3JBDtmVzWiPAYqp7wip50hjQ67JbDz61nyoMPdqu1DvVW9asYb2M65Z20ZHsyJCMqMyDg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -3965,8 +3949,8 @@ packages: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - shiki@1.22.0: - resolution: {integrity: sha512-/t5LlhNs+UOKQCYBtl5ZsH/Vclz73GIqT2yQsCBygr8L/ppTdmpL4w3kPLoZJbMKVWtoG77Ue1feOjZfDxvMkw==} + shiki@1.22.2: + resolution: {integrity: sha512-3IZau0NdGKXhH2bBlUk4w1IHNxPh6A5B2sUpyY+8utLu2j/h1QpFkAaUA1bAMxOWWGtTWcAh531vnS4NJKS/lA==} shimmer@1.2.1: resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==} @@ -4077,10 +4061,6 @@ packages: suf-log@2.5.3: resolution: {integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==} - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} engines: {node: '>=8'} @@ -4205,8 +4185,8 @@ packages: typescript-auto-import-cache@0.3.3: resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==} - typescript-eslint@8.11.0: - resolution: {integrity: sha512-cBRGnW3FSlxaYwU8KfAewxFK5uzeOAp0l2KebIlPDOT5olVi65KDG/yjBooPBG0kGW/HLkoz1c/iuBFehcS3IA==} + typescript-eslint@8.12.2: + resolution: {integrity: sha512-UbuVUWSrHVR03q9CWx+JDHeO6B/Hr9p4U5lRH++5tq/EbFq1faYZe50ZSBePptgfIKLEti0aPQ3hFgnPVcd8ZQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -4236,8 +4216,8 @@ packages: resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==} engines: {node: '>=18.17'} - unenv-nightly@2.0.0-20241018-011344-e666fcf: - resolution: {integrity: sha512-D00bYn8rzkCBOlLx+k1iHQlc69jvtJRT7Eek4yIGQ6461a2tUBjngGZdRpqsoXAJCz/qBW0NgPting7Zvg+ysg==} + unenv-nightly@2.0.0-20241024-111401-d4156ac: + resolution: {integrity: sha512-xJO1hfY+Te+/XnfCYrCbFbRcgu6XEODND1s5wnVbaBCkuQX7JXF7fHEXPrukFE2j8EOH848P8QN19VO47XN8hw==} unified@11.0.5: resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} @@ -4530,17 +4510,17 @@ packages: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} - workerd@1.20241018.1: - resolution: {integrity: sha512-JPW2oAbYOnJj1c5boyDOdjl/Yvur45jhVE8lf+I9oxR6myyAvuH2tdXO62kye68jRluJOMUeyssLes+JRwLmaA==} + workerd@1.20241022.0: + resolution: {integrity: sha512-jyGXsgO9DRcJyx6Ovv7gUyDPc3UYC2i/E0p9GFUg6GUzpldw4Y93y9kOmdfsOnKZ3+lY53veSiUniiBPE6Q2NQ==} engines: {node: '>=16'} hasBin: true - wrangler@3.82.0: - resolution: {integrity: sha512-W4gyIkxOfqbFU6QrUvK+Ay2rwH+DcyXmIuT/1/9EG9K6jngmmon8ifVYGRTftRb2Vu7hDNLovbGfjeAXm+CEXA==} + wrangler@3.84.0: + resolution: {integrity: sha512-EA8oh7YQmZ3kD+a5MId9reHKGgXpodmsPWMLriE5gT5YmG9is66n0AA2tyLzQZKZXmgbo6JyGxvCDPcLeb/X0w==} engines: {node: '>=16.17.0'} hasBin: true peerDependencies: - '@cloudflare/workers-types': ^4.20241018.0 + '@cloudflare/workers-types': ^4.20241022.0 peerDependenciesMeta: '@cloudflare/workers-types': optional: true @@ -4616,8 +4596,8 @@ packages: youch@3.3.3: resolution: {integrity: sha512-qSFXUk3UZBLfggAW3dJKg0BMblG5biqSF8M34E06o5CSsZtH92u9Hqmj2RzGiHDi64fhe83+4tENFP2DB6t6ZA==} - zod-to-json-schema@3.23.3: - resolution: {integrity: sha512-TYWChTxKQbRJp5ST22o/Irt9KC5nj7CdBKYB/AosCRdj/wxEMvv4NNaj9XVUHDOIp53ZxArGhnw5HMZziPFjog==} + zod-to-json-schema@3.23.5: + resolution: {integrity: sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==} peerDependencies: zod: ^3.23.3 @@ -4695,7 +4675,7 @@ snapshots: remark-parse: 11.0.0 remark-rehype: 11.1.1 remark-smartypants: 3.0.2 - shiki: 1.22.0 + shiki: 1.22.2 unified: 11.0.5 unist-util-remove-position: 5.0.0 unist-util-visit: 5.0.0 @@ -4735,25 +4715,26 @@ snapshots: dependencies: yaml: 2.5.0 - '@babel/code-frame@7.25.9': + '@babel/code-frame@7.26.2': dependencies: - '@babel/highlight': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 picocolors: 1.1.0 '@babel/compat-data@7.25.9': {} - '@babel/core@7.25.9': + '@babel/core@7.26.0': dependencies: '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.25.9 - '@babel/generator': 7.25.9 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-module-transforms': 7.25.9(@babel/core@7.25.9) - '@babel/helpers': 7.25.9 - '@babel/parser': 7.25.9 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helpers': 7.26.0 + '@babel/parser': 7.26.2 '@babel/template': 7.25.9 '@babel/traverse': 7.25.9 - '@babel/types': 7.25.9 + '@babel/types': 7.26.0 convert-source-map: 2.0.0 debug: 4.3.7 gensync: 1.0.0-beta.2 @@ -4762,16 +4743,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/generator@7.25.9': + '@babel/generator@7.26.2': dependencies: - '@babel/types': 7.25.9 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.0.2 - '@babel/helper-annotate-as-pure@7.25.7': + '@babel/helper-annotate-as-pure@7.25.9': dependencies: - '@babel/types': 7.25.9 + '@babel/types': 7.26.0 '@babel/helper-compilation-targets@7.25.9': dependencies: @@ -4783,33 +4765,25 @@ snapshots: '@babel/helper-module-imports@7.18.6': dependencies: - '@babel/types': 7.25.9 + '@babel/types': 7.26.0 '@babel/helper-module-imports@7.25.9': dependencies: '@babel/traverse': 7.25.9 - '@babel/types': 7.25.9 + '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.25.9(@babel/core@7.25.9)': + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.9 + '@babel/core': 7.26.0 '@babel/helper-module-imports': 7.25.9 - '@babel/helper-simple-access': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 '@babel/traverse': 7.25.9 transitivePeerDependencies: - supports-color - '@babel/helper-plugin-utils@7.25.7': {} - - '@babel/helper-simple-access@7.25.9': - dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.25.9 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils@7.25.9': {} '@babel/helper-string-parser@7.25.9': {} @@ -4817,35 +4791,28 @@ snapshots: '@babel/helper-validator-option@7.25.9': {} - '@babel/helpers@7.25.9': + '@babel/helpers@7.26.0': dependencies: '@babel/template': 7.25.9 - '@babel/types': 7.25.9 + '@babel/types': 7.26.0 - '@babel/highlight@7.25.9': + '@babel/parser@7.26.2': dependencies: - '@babel/helper-validator-identifier': 7.25.9 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.0 + '@babel/types': 7.26.0 - '@babel/parser@7.25.9': + '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)': dependencies: - '@babel/types': 7.25.9 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.9)': + '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.9 - '@babel/helper-plugin-utils': 7.25.7 - - '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.25.9)': - dependencies: - '@babel/core': 7.25.9 - '@babel/helper-annotate-as-pure': 7.25.7 + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.9) - '@babel/types': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/types': 7.26.0 transitivePeerDependencies: - supports-color @@ -4855,23 +4822,23 @@ snapshots: '@babel/template@7.25.9': dependencies: - '@babel/code-frame': 7.25.9 - '@babel/parser': 7.25.9 - '@babel/types': 7.25.9 + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 '@babel/traverse@7.25.9': dependencies: - '@babel/code-frame': 7.25.9 - '@babel/generator': 7.25.9 - '@babel/parser': 7.25.9 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 '@babel/template': 7.25.9 - '@babel/types': 7.25.9 + '@babel/types': 7.26.0 debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.25.9': + '@babel/types@7.26.0': dependencies: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 @@ -5072,22 +5039,22 @@ snapshots: dependencies: mime: 3.0.0 - '@cloudflare/workerd-darwin-64@1.20241018.1': + '@cloudflare/workerd-darwin-64@1.20241022.0': optional: true - '@cloudflare/workerd-darwin-arm64@1.20241018.1': + '@cloudflare/workerd-darwin-arm64@1.20241022.0': optional: true - '@cloudflare/workerd-linux-64@1.20241018.1': + '@cloudflare/workerd-linux-64@1.20241022.0': optional: true - '@cloudflare/workerd-linux-arm64@1.20241018.1': + '@cloudflare/workerd-linux-arm64@1.20241022.0': optional: true - '@cloudflare/workerd-windows-64@1.20241018.1': + '@cloudflare/workerd-windows-64@1.20241022.0': optional: true - '@cloudflare/workers-shared@0.6.0': + '@cloudflare/workers-shared@0.7.0': dependencies: mime: 3.0.0 zod: 3.23.8 @@ -5410,10 +5377,10 @@ snapshots: '@img/sharp-win32-x64@0.33.5': optional: true - '@inox-tools/astro-when@0.2.4(astro@4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3))': + '@inox-tools/astro-when@0.2.4(astro@4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3))': dependencies: - astro: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) - astro-integration-kit: 0.16.1(astro@4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3)) + astro: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) + astro-integration-kit: 0.16.1(astro@4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)) debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -5701,83 +5668,89 @@ snapshots: estree-walker: 2.0.2 picomatch: 2.3.1 - '@rollup/pluginutils@5.1.2(rollup@4.24.0)': + '@rollup/pluginutils@5.1.3(rollup@4.24.3)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 - picomatch: 2.3.1 + picomatch: 4.0.2 optionalDependencies: - rollup: 4.24.0 + rollup: 4.24.3 + + '@rollup/rollup-android-arm-eabi@4.24.3': + optional: true + + '@rollup/rollup-android-arm64@4.24.3': + optional: true - '@rollup/rollup-android-arm-eabi@4.24.0': + '@rollup/rollup-darwin-arm64@4.24.3': optional: true - '@rollup/rollup-android-arm64@4.24.0': + '@rollup/rollup-darwin-x64@4.24.3': optional: true - '@rollup/rollup-darwin-arm64@4.24.0': + '@rollup/rollup-freebsd-arm64@4.24.3': optional: true - '@rollup/rollup-darwin-x64@4.24.0': + '@rollup/rollup-freebsd-x64@4.24.3': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.24.0': + '@rollup/rollup-linux-arm-gnueabihf@4.24.3': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.24.0': + '@rollup/rollup-linux-arm-musleabihf@4.24.3': optional: true - '@rollup/rollup-linux-arm64-gnu@4.24.0': + '@rollup/rollup-linux-arm64-gnu@4.24.3': optional: true - '@rollup/rollup-linux-arm64-musl@4.24.0': + '@rollup/rollup-linux-arm64-musl@4.24.3': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.24.0': + '@rollup/rollup-linux-powerpc64le-gnu@4.24.3': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.24.0': + '@rollup/rollup-linux-riscv64-gnu@4.24.3': optional: true - '@rollup/rollup-linux-s390x-gnu@4.24.0': + '@rollup/rollup-linux-s390x-gnu@4.24.3': optional: true - '@rollup/rollup-linux-x64-gnu@4.24.0': + '@rollup/rollup-linux-x64-gnu@4.24.3': optional: true - '@rollup/rollup-linux-x64-musl@4.24.0': + '@rollup/rollup-linux-x64-musl@4.24.3': optional: true - '@rollup/rollup-win32-arm64-msvc@4.24.0': + '@rollup/rollup-win32-arm64-msvc@4.24.3': optional: true - '@rollup/rollup-win32-ia32-msvc@4.24.0': + '@rollup/rollup-win32-ia32-msvc@4.24.3': optional: true - '@rollup/rollup-win32-x64-msvc@4.24.0': + '@rollup/rollup-win32-x64-msvc@4.24.3': optional: true - '@shikijs/core@1.22.0': + '@shikijs/core@1.22.2': dependencies: - '@shikijs/engine-javascript': 1.22.0 - '@shikijs/engine-oniguruma': 1.22.0 - '@shikijs/types': 1.22.0 + '@shikijs/engine-javascript': 1.22.2 + '@shikijs/engine-oniguruma': 1.22.2 + '@shikijs/types': 1.22.2 '@shikijs/vscode-textmate': 9.3.0 '@types/hast': 3.0.4 hast-util-to-html: 9.0.3 - '@shikijs/engine-javascript@1.22.0': + '@shikijs/engine-javascript@1.22.2': dependencies: - '@shikijs/types': 1.22.0 + '@shikijs/types': 1.22.2 '@shikijs/vscode-textmate': 9.3.0 oniguruma-to-js: 0.4.3 - '@shikijs/engine-oniguruma@1.22.0': + '@shikijs/engine-oniguruma@1.22.2': dependencies: - '@shikijs/types': 1.22.0 + '@shikijs/types': 1.22.2 '@shikijs/vscode-textmate': 9.3.0 - '@shikijs/types@1.22.0': + '@shikijs/types@1.22.2': dependencies: '@shikijs/vscode-textmate': 9.3.0 '@types/hast': 3.0.4 @@ -5786,34 +5759,34 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.25.9 - '@babel/types': 7.25.9 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.5 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.25.9 + '@babel/types': 7.26.0 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.25.9 - '@babel/types': 7.25.9 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 '@types/babel__traverse@7.20.5': dependencies: - '@babel/types': 7.25.9 + '@babel/types': 7.26.0 '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.16.15 + '@types/node': 20.17.4 optional: true '@types/connect@3.4.38': dependencies: - '@types/node': 20.16.15 + '@types/node': 20.17.4 optional: true '@types/cookie@0.6.0': {} @@ -5826,7 +5799,7 @@ snapshots: '@types/express-serve-static-core@4.19.5': dependencies: - '@types/node': 20.16.15 + '@types/node': 20.17.4 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -5863,15 +5836,15 @@ snapshots: '@types/node-forge@1.3.11': dependencies: - '@types/node': 20.16.15 + '@types/node': 20.17.4 '@types/node@12.20.55': {} - '@types/node@18.19.59': + '@types/node@18.19.62': dependencies: undici-types: 5.26.5 - '@types/node@20.16.15': + '@types/node@20.17.4': dependencies: undici-types: 6.19.6 @@ -5889,31 +5862,31 @@ snapshots: '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.16.15 + '@types/node': 20.17.4 '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.16.15 + '@types/node': 20.17.4 '@types/send': 0.17.4 optional: true '@types/server-destroy@1.0.4': dependencies: - '@types/node': 20.16.15 + '@types/node': 20.17.4 '@types/shimmer@1.2.0': {} '@types/unist@3.0.2': {} - '@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0)(typescript@5.6.3))(eslint@9.13.0)(typescript@5.6.3)': + '@typescript-eslint/eslint-plugin@8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.13.0)(typescript@5.6.3))(eslint@9.13.0)(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.11.0(eslint@9.13.0)(typescript@5.6.3) - '@typescript-eslint/scope-manager': 8.11.0 - '@typescript-eslint/type-utils': 8.11.0(eslint@9.13.0)(typescript@5.6.3) - '@typescript-eslint/utils': 8.11.0(eslint@9.13.0)(typescript@5.6.3) - '@typescript-eslint/visitor-keys': 8.11.0 + '@typescript-eslint/parser': 8.12.2(eslint@9.13.0)(typescript@5.6.3) + '@typescript-eslint/scope-manager': 8.12.2 + '@typescript-eslint/type-utils': 8.12.2(eslint@9.13.0)(typescript@5.6.3) + '@typescript-eslint/utils': 8.12.2(eslint@9.13.0)(typescript@5.6.3) + '@typescript-eslint/visitor-keys': 8.12.2 eslint: 9.13.0 graphemer: 1.4.0 ignore: 5.3.2 @@ -5924,12 +5897,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.11.0(eslint@9.13.0)(typescript@5.6.3)': + '@typescript-eslint/parser@8.12.2(eslint@9.13.0)(typescript@5.6.3)': dependencies: - '@typescript-eslint/scope-manager': 8.11.0 - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3) - '@typescript-eslint/visitor-keys': 8.11.0 + '@typescript-eslint/scope-manager': 8.12.2 + '@typescript-eslint/types': 8.12.2 + '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3) + '@typescript-eslint/visitor-keys': 8.12.2 debug: 4.3.7 eslint: 9.13.0 optionalDependencies: @@ -5937,15 +5910,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.11.0': + '@typescript-eslint/scope-manager@8.12.2': dependencies: - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/visitor-keys': 8.11.0 + '@typescript-eslint/types': 8.12.2 + '@typescript-eslint/visitor-keys': 8.12.2 - '@typescript-eslint/type-utils@8.11.0(eslint@9.13.0)(typescript@5.6.3)': + '@typescript-eslint/type-utils@8.12.2(eslint@9.13.0)(typescript@5.6.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3) - '@typescript-eslint/utils': 8.11.0(eslint@9.13.0)(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3) + '@typescript-eslint/utils': 8.12.2(eslint@9.13.0)(typescript@5.6.3) debug: 4.3.7 ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: @@ -5954,12 +5927,12 @@ snapshots: - eslint - supports-color - '@typescript-eslint/types@8.11.0': {} + '@typescript-eslint/types@8.12.2': {} - '@typescript-eslint/typescript-estree@8.11.0(typescript@5.6.3)': + '@typescript-eslint/typescript-estree@8.12.2(typescript@5.6.3)': dependencies: - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/visitor-keys': 8.11.0 + '@typescript-eslint/types': 8.12.2 + '@typescript-eslint/visitor-keys': 8.12.2 debug: 4.3.7 fast-glob: 3.3.2 is-glob: 4.0.3 @@ -5971,25 +5944,25 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.11.0(eslint@9.13.0)(typescript@5.6.3)': + '@typescript-eslint/utils@8.12.2(eslint@9.13.0)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0) - '@typescript-eslint/scope-manager': 8.11.0 - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3) + '@typescript-eslint/scope-manager': 8.12.2 + '@typescript-eslint/types': 8.12.2 + '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3) eslint: 9.13.0 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/visitor-keys@8.11.0': + '@typescript-eslint/visitor-keys@8.12.2': dependencies: - '@typescript-eslint/types': 8.11.0 + '@typescript-eslint/types': 8.12.2 eslint-visitor-keys: 3.4.3 '@ungap/structured-clone@1.2.0': {} - '@vercel/analytics@1.3.1': + '@vercel/analytics@1.3.2': dependencies: server-only: 0.0.1 @@ -5999,8 +5972,8 @@ snapshots: dependencies: '@mapbox/node-pre-gyp': 1.0.11 '@rollup/pluginutils': 4.2.1 - acorn: 8.13.0 - acorn-import-attributes: 1.9.5(acorn@8.13.0) + acorn: 8.14.0 + acorn-import-attributes: 1.9.5(acorn@8.14.0) async-sema: 3.1.1 bindings: 1.5.0 estree-walker: 2.0.2 @@ -6070,17 +6043,17 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-import-attributes@1.9.5(acorn@8.13.0): + acorn-import-attributes@1.9.5(acorn@8.14.0): dependencies: - acorn: 8.13.0 + acorn: 8.14.0 - acorn-jsx@5.3.2(acorn@8.13.0): + acorn-jsx@5.3.2(acorn@8.14.0): dependencies: - acorn: 8.13.0 + acorn: 8.14.0 acorn-walk@8.3.2: {} - acorn@8.13.0: {} + acorn@8.14.0: {} agent-base@6.0.2: dependencies: @@ -6112,10 +6085,6 @@ snapshots: ansi-regex@6.0.1: {} - ansi-styles@3.2.1: - dependencies: - color-convert: 1.9.3 - ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 @@ -6156,26 +6125,26 @@ snapshots: dependencies: tslib: 2.6.2 - astro-integration-kit@0.16.1(astro@4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3)): + astro-integration-kit@0.16.1(astro@4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)): dependencies: - astro: 4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3) + astro: 4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3) pathe: 1.1.2 recast: 0.23.9 - astro@4.16.7(@types/node@18.19.59)(rollup@4.24.0)(typescript@5.6.3): + astro@4.16.8(@types/node@18.19.62)(rollup@4.24.3)(typescript@5.6.3): dependencies: '@astrojs/compiler': 2.10.3 '@astrojs/internal-helpers': 0.4.1 '@astrojs/markdown-remark': 5.3.0 '@astrojs/telemetry': 3.1.0 - '@babel/core': 7.25.9 - '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.9) - '@babel/types': 7.25.9 + '@babel/core': 7.26.0 + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/types': 7.26.0 '@oslojs/encoding': 1.1.0 - '@rollup/pluginutils': 5.1.2(rollup@4.24.0) + '@rollup/pluginutils': 5.1.3(rollup@4.24.3) '@types/babel__core': 7.20.5 '@types/cookie': 0.6.0 - acorn: 8.13.0 + acorn: 8.14.0 aria-query: 5.3.2 axobject-query: 4.1.0 boxen: 8.0.1 @@ -6213,18 +6182,18 @@ snapshots: prompts: 2.4.2 rehype: 13.0.2 semver: 7.6.3 - shiki: 1.22.0 + shiki: 1.22.2 tinyexec: 0.3.1 tsconfck: 3.1.4(typescript@5.6.3) unist-util-visit: 5.0.0 vfile: 6.0.3 - vite: 5.4.10(@types/node@18.19.59) - vitefu: 1.0.3(vite@5.4.10(@types/node@18.19.59)) + vite: 5.4.10(@types/node@18.19.62) + vitefu: 1.0.3(vite@5.4.10(@types/node@18.19.62)) which-pm: 3.0.0 xxhash-wasm: 1.0.2 yargs-parser: 21.1.1 zod: 3.23.8 - zod-to-json-schema: 3.23.3(zod@3.23.8) + zod-to-json-schema: 3.23.5(zod@3.23.8) zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.23.8) optionalDependencies: sharp: 0.33.5 @@ -6241,20 +6210,20 @@ snapshots: - terser - typescript - astro@4.16.7(@types/node@20.16.15)(rollup@4.24.0)(typescript@5.6.3): + astro@4.16.8(@types/node@20.17.4)(rollup@4.24.3)(typescript@5.6.3): dependencies: '@astrojs/compiler': 2.10.3 '@astrojs/internal-helpers': 0.4.1 '@astrojs/markdown-remark': 5.3.0 '@astrojs/telemetry': 3.1.0 - '@babel/core': 7.25.9 - '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.9) - '@babel/types': 7.25.9 + '@babel/core': 7.26.0 + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/types': 7.26.0 '@oslojs/encoding': 1.1.0 - '@rollup/pluginutils': 5.1.2(rollup@4.24.0) + '@rollup/pluginutils': 5.1.3(rollup@4.24.3) '@types/babel__core': 7.20.5 '@types/cookie': 0.6.0 - acorn: 8.13.0 + acorn: 8.14.0 aria-query: 5.3.2 axobject-query: 4.1.0 boxen: 8.0.1 @@ -6292,18 +6261,18 @@ snapshots: prompts: 2.4.2 rehype: 13.0.2 semver: 7.6.3 - shiki: 1.22.0 + shiki: 1.22.2 tinyexec: 0.3.1 tsconfck: 3.1.4(typescript@5.6.3) unist-util-visit: 5.0.0 vfile: 6.0.3 - vite: 5.4.10(@types/node@20.16.15) - vitefu: 1.0.3(vite@5.4.10(@types/node@20.16.15)) + vite: 5.4.10(@types/node@20.17.4) + vitefu: 1.0.3(vite@5.4.10(@types/node@20.17.4)) which-pm: 3.0.0 xxhash-wasm: 1.0.2 yargs-parser: 21.1.1 zod: 3.23.8 - zod-to-json-schema: 3.23.3(zod@3.23.8) + zod-to-json-schema: 3.23.5(zod@3.23.8) zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.23.8) optionalDependencies: sharp: 0.33.5 @@ -6320,20 +6289,20 @@ snapshots: - terser - typescript - astro@4.16.7(@types/node@22.4.1)(rollup@4.24.0)(typescript@5.6.3): + astro@4.16.8(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3): dependencies: '@astrojs/compiler': 2.10.3 '@astrojs/internal-helpers': 0.4.1 '@astrojs/markdown-remark': 5.3.0 '@astrojs/telemetry': 3.1.0 - '@babel/core': 7.25.9 - '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.9) - '@babel/types': 7.25.9 + '@babel/core': 7.26.0 + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/types': 7.26.0 '@oslojs/encoding': 1.1.0 - '@rollup/pluginutils': 5.1.2(rollup@4.24.0) + '@rollup/pluginutils': 5.1.3(rollup@4.24.3) '@types/babel__core': 7.20.5 '@types/cookie': 0.6.0 - acorn: 8.13.0 + acorn: 8.14.0 aria-query: 5.3.2 axobject-query: 4.1.0 boxen: 8.0.1 @@ -6371,7 +6340,7 @@ snapshots: prompts: 2.4.2 rehype: 13.0.2 semver: 7.6.3 - shiki: 1.22.0 + shiki: 1.22.2 tinyexec: 0.3.1 tsconfck: 3.1.4(typescript@5.6.3) unist-util-visit: 5.0.0 @@ -6382,7 +6351,7 @@ snapshots: xxhash-wasm: 1.0.2 yargs-parser: 21.1.1 zod: 3.23.8 - zod-to-json-schema: 3.23.3(zod@3.23.8) + zod-to-json-schema: 3.23.5(zod@3.23.8) zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.23.8) optionalDependencies: sharp: 0.33.5 @@ -6403,19 +6372,19 @@ snapshots: axobject-query@4.1.0: {} - babel-plugin-jsx-dom-expressions@0.37.19(@babel/core@7.25.9): + babel-plugin-jsx-dom-expressions@0.37.19(@babel/core@7.26.0): dependencies: - '@babel/core': 7.25.9 + '@babel/core': 7.26.0 '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.9) - '@babel/types': 7.25.9 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/types': 7.26.0 html-entities: 2.3.3 validate-html-nesting: 1.2.2 - babel-preset-solid@1.8.16(@babel/core@7.25.9): + babel-preset-solid@1.8.16(@babel/core@7.26.0): dependencies: - '@babel/core': 7.25.9 - babel-plugin-jsx-dom-expressions: 0.37.19(@babel/core@7.25.9) + '@babel/core': 7.26.0 + babel-plugin-jsx-dom-expressions: 0.37.19(@babel/core@7.26.0) bail@2.0.2: {} @@ -6510,12 +6479,6 @@ snapshots: ccount@2.0.1: {} - chalk@2.4.2: - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - chalk@4.1.2: dependencies: ansi-styles: 4.3.0 @@ -6594,16 +6557,10 @@ snapshots: clsx@2.1.1: {} - color-convert@1.9.3: - dependencies: - color-name: 1.1.3 - color-convert@2.0.1: dependencies: color-name: 1.1.4 - color-name@1.1.3: {} - color-name@1.1.4: {} color-string@1.9.1: @@ -6844,8 +6801,6 @@ snapshots: escape-html@1.0.3: {} - escape-string-regexp@1.0.5: {} - escape-string-regexp@4.0.0: {} escape-string-regexp@5.0.0: {} @@ -6927,8 +6882,8 @@ snapshots: espree@10.2.0: dependencies: - acorn: 8.13.0 - acorn-jsx: 5.3.2(acorn@8.13.0) + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) eslint-visitor-keys: 4.1.0 esprima@4.0.1: {} @@ -7204,8 +7159,6 @@ snapshots: section-matter: 1.0.0 strip-bom-string: 1.0.0 - has-flag@3.0.0: {} - has-flag@4.0.0: {} has-property-descriptors@1.0.2: @@ -7360,8 +7313,8 @@ snapshots: import-in-the-middle@1.11.0: dependencies: - acorn: 8.13.0 - acorn-import-attributes: 1.9.5(acorn@8.13.0) + acorn: 8.14.0 + acorn-import-attributes: 1.9.5(acorn@8.14.0) cjs-module-lexer: 1.4.0 module-details-from-path: 1.0.3 @@ -7531,8 +7484,8 @@ snapshots: magicast@0.3.5: dependencies: - '@babel/parser': 7.25.9 - '@babel/types': 7.25.9 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 source-map-js: 1.2.0 make-dir@3.1.0: @@ -7884,17 +7837,17 @@ snapshots: mimic-function@5.0.1: {} - miniflare@3.20241018.0: + miniflare@3.20241022.0: dependencies: '@cspotcode/source-map-support': 0.8.1 - acorn: 8.13.0 + acorn: 8.14.0 acorn-walk: 8.3.2 capnp-ts: 0.7.0 exit-hook: 2.2.1 glob-to-regexp: 0.4.1 stoppable: 1.1.0 undici: 5.28.4 - workerd: 1.20241018.1 + workerd: 1.20241022.0 ws: 8.18.0 youch: 3.3.3 zod: 3.23.8 @@ -7958,7 +7911,7 @@ snapshots: node-gyp-build@4.8.1: {} - node-mocks-http@1.16.1(@types/express@4.17.21)(@types/node@18.19.59): + node-mocks-http@1.16.1(@types/express@4.17.21)(@types/node@18.19.62): dependencies: accepts: 1.3.8 content-disposition: 0.5.4 @@ -7972,7 +7925,7 @@ snapshots: type-is: 1.6.18 optionalDependencies: '@types/express': 4.17.21 - '@types/node': 18.19.59 + '@types/node': 18.19.62 node-releases@2.0.18: {} @@ -8141,6 +8094,8 @@ snapshots: picomatch@2.3.1: {} + picomatch@4.0.2: {} + pify@4.0.1: {} pkg-dir@4.2.0: @@ -8201,7 +8156,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.16.15 + '@types/node': 20.17.4 long: 5.2.3 proxy-addr@2.0.7: @@ -8412,26 +8367,28 @@ snapshots: dependencies: estree-walker: 0.6.1 - rollup@4.24.0: + rollup@4.24.3: dependencies: '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.24.0 - '@rollup/rollup-android-arm64': 4.24.0 - '@rollup/rollup-darwin-arm64': 4.24.0 - '@rollup/rollup-darwin-x64': 4.24.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.24.0 - '@rollup/rollup-linux-arm-musleabihf': 4.24.0 - '@rollup/rollup-linux-arm64-gnu': 4.24.0 - '@rollup/rollup-linux-arm64-musl': 4.24.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.24.0 - '@rollup/rollup-linux-riscv64-gnu': 4.24.0 - '@rollup/rollup-linux-s390x-gnu': 4.24.0 - '@rollup/rollup-linux-x64-gnu': 4.24.0 - '@rollup/rollup-linux-x64-musl': 4.24.0 - '@rollup/rollup-win32-arm64-msvc': 4.24.0 - '@rollup/rollup-win32-ia32-msvc': 4.24.0 - '@rollup/rollup-win32-x64-msvc': 4.24.0 + '@rollup/rollup-android-arm-eabi': 4.24.3 + '@rollup/rollup-android-arm64': 4.24.3 + '@rollup/rollup-darwin-arm64': 4.24.3 + '@rollup/rollup-darwin-x64': 4.24.3 + '@rollup/rollup-freebsd-arm64': 4.24.3 + '@rollup/rollup-freebsd-x64': 4.24.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.24.3 + '@rollup/rollup-linux-arm-musleabihf': 4.24.3 + '@rollup/rollup-linux-arm64-gnu': 4.24.3 + '@rollup/rollup-linux-arm64-musl': 4.24.3 + '@rollup/rollup-linux-powerpc64le-gnu': 4.24.3 + '@rollup/rollup-linux-riscv64-gnu': 4.24.3 + '@rollup/rollup-linux-s390x-gnu': 4.24.3 + '@rollup/rollup-linux-x64-gnu': 4.24.3 + '@rollup/rollup-linux-x64-musl': 4.24.3 + '@rollup/rollup-win32-arm64-msvc': 4.24.3 + '@rollup/rollup-win32-ia32-msvc': 4.24.3 + '@rollup/rollup-win32-x64-msvc': 4.24.3 fsevents: 2.3.3 run-parallel@1.2.0: @@ -8574,12 +8531,12 @@ snapshots: shebang-regex@3.0.0: {} - shiki@1.22.0: + shiki@1.22.2: dependencies: - '@shikijs/core': 1.22.0 - '@shikijs/engine-javascript': 1.22.0 - '@shikijs/engine-oniguruma': 1.22.0 - '@shikijs/types': 1.22.0 + '@shikijs/core': 1.22.2 + '@shikijs/engine-javascript': 1.22.2 + '@shikijs/engine-oniguruma': 1.22.2 + '@shikijs/types': 1.22.2 '@shikijs/vscode-textmate': 9.3.0 '@types/hast': 3.0.4 @@ -8612,9 +8569,9 @@ snapshots: solid-refresh@0.6.3(solid-js@1.9.3): dependencies: - '@babel/generator': 7.25.9 + '@babel/generator': 7.26.2 '@babel/helper-module-imports': 7.25.9 - '@babel/types': 7.25.9 + '@babel/types': 7.26.0 solid-js: 1.9.3 transitivePeerDependencies: - supports-color @@ -8686,10 +8643,6 @@ snapshots: dependencies: s.color: 0.0.15 - supports-color@5.5.0: - dependencies: - has-flag: 3.0.0 - supports-color@7.2.0: dependencies: has-flag: 4.0.0 @@ -8793,11 +8746,11 @@ snapshots: dependencies: semver: 7.6.3 - typescript-eslint@8.11.0(eslint@9.13.0)(typescript@5.6.3): + typescript-eslint@8.12.2(eslint@9.13.0)(typescript@5.6.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0)(typescript@5.6.3))(eslint@9.13.0)(typescript@5.6.3) - '@typescript-eslint/parser': 8.11.0(eslint@9.13.0)(typescript@5.6.3) - '@typescript-eslint/utils': 8.11.0(eslint@9.13.0)(typescript@5.6.3) + '@typescript-eslint/eslint-plugin': 8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.13.0)(typescript@5.6.3))(eslint@9.13.0)(typescript@5.6.3) + '@typescript-eslint/parser': 8.12.2(eslint@9.13.0)(typescript@5.6.3) + '@typescript-eslint/utils': 8.12.2(eslint@9.13.0)(typescript@5.6.3) optionalDependencies: typescript: 5.6.3 transitivePeerDependencies: @@ -8818,7 +8771,7 @@ snapshots: undici@6.19.8: {} - unenv-nightly@2.0.0-20241018-011344-e666fcf: + unenv-nightly@2.0.0-20241024-111401-d4156ac: dependencies: defu: 6.1.4 ohash: 1.1.4 @@ -8918,9 +8871,9 @@ snapshots: vite-plugin-solid@2.10.2(solid-js@1.9.3)(vite@5.4.10(@types/node@22.4.1)): dependencies: - '@babel/core': 7.25.9 + '@babel/core': 7.26.0 '@types/babel__core': 7.20.5 - babel-preset-solid: 1.8.16(@babel/core@7.25.9) + babel-preset-solid: 1.8.16(@babel/core@7.26.0) merge-anything: 5.1.7 solid-js: 1.9.3 solid-refresh: 0.6.3(solid-js@1.9.3) @@ -8929,29 +8882,29 @@ snapshots: transitivePeerDependencies: - supports-color - vite@5.4.10(@types/node@18.19.59): + vite@5.4.10(@types/node@18.19.62): dependencies: esbuild: 0.21.5 postcss: 8.4.45 - rollup: 4.24.0 + rollup: 4.24.3 optionalDependencies: - '@types/node': 18.19.59 + '@types/node': 18.19.62 fsevents: 2.3.3 - vite@5.4.10(@types/node@20.16.15): + vite@5.4.10(@types/node@20.17.4): dependencies: esbuild: 0.21.5 postcss: 8.4.45 - rollup: 4.24.0 + rollup: 4.24.3 optionalDependencies: - '@types/node': 20.16.15 + '@types/node': 20.17.4 fsevents: 2.3.3 vite@5.4.10(@types/node@22.4.1): dependencies: esbuild: 0.21.5 postcss: 8.4.45 - rollup: 4.24.0 + rollup: 4.24.3 optionalDependencies: '@types/node': 22.4.1 fsevents: 2.3.3 @@ -8960,13 +8913,13 @@ snapshots: optionalDependencies: vite: 5.4.10(@types/node@22.4.1) - vitefu@1.0.3(vite@5.4.10(@types/node@18.19.59)): + vitefu@1.0.3(vite@5.4.10(@types/node@18.19.62)): optionalDependencies: - vite: 5.4.10(@types/node@18.19.59) + vite: 5.4.10(@types/node@18.19.62) - vitefu@1.0.3(vite@5.4.10(@types/node@20.16.15)): + vitefu@1.0.3(vite@5.4.10(@types/node@20.17.4)): optionalDependencies: - vite: 5.4.10(@types/node@20.16.15) + vite: 5.4.10(@types/node@20.17.4) vitefu@1.0.3(vite@5.4.10(@types/node@22.4.1)): optionalDependencies: @@ -9127,18 +9080,18 @@ snapshots: word-wrap@1.2.5: {} - workerd@1.20241018.1: + workerd@1.20241022.0: optionalDependencies: - '@cloudflare/workerd-darwin-64': 1.20241018.1 - '@cloudflare/workerd-darwin-arm64': 1.20241018.1 - '@cloudflare/workerd-linux-64': 1.20241018.1 - '@cloudflare/workerd-linux-arm64': 1.20241018.1 - '@cloudflare/workerd-windows-64': 1.20241018.1 + '@cloudflare/workerd-darwin-64': 1.20241022.0 + '@cloudflare/workerd-darwin-arm64': 1.20241022.0 + '@cloudflare/workerd-linux-64': 1.20241022.0 + '@cloudflare/workerd-linux-arm64': 1.20241022.0 + '@cloudflare/workerd-windows-64': 1.20241022.0 - wrangler@3.82.0(@cloudflare/workers-types@4.20241022.0): + wrangler@3.84.0(@cloudflare/workers-types@4.20241022.0): dependencies: '@cloudflare/kv-asset-handler': 0.3.4 - '@cloudflare/workers-shared': 0.6.0 + '@cloudflare/workers-shared': 0.7.0 '@esbuild-plugins/node-globals-polyfill': 0.2.3(esbuild@0.17.19) '@esbuild-plugins/node-modules-polyfill': 0.2.2(esbuild@0.17.19) blake3-wasm: 2.1.5 @@ -9146,15 +9099,15 @@ snapshots: date-fns: 4.1.0 esbuild: 0.17.19 itty-time: 1.0.6 - miniflare: 3.20241018.0 + miniflare: 3.20241022.0 nanoid: 3.3.7 path-to-regexp: 6.3.0 resolve: 1.22.8 resolve.exports: 2.0.2 selfsigned: 2.4.1 source-map: 0.6.1 - unenv: unenv-nightly@2.0.0-20241018-011344-e666fcf - workerd: 1.20241018.1 + unenv: unenv-nightly@2.0.0-20241024-111401-d4156ac + workerd: 1.20241022.0 xxhash-wasm: 1.0.2 optionalDependencies: '@cloudflare/workers-types': 4.20241022.0 @@ -9231,7 +9184,7 @@ snapshots: mustache: 4.2.0 stacktracey: 2.1.8 - zod-to-json-schema@3.23.3(zod@3.23.8): + zod-to-json-schema@3.23.5(zod@3.23.8): dependencies: zod: 3.23.8