diff --git a/.changeset/curly-snakes-shave.md b/.changeset/curly-snakes-shave.md deleted file mode 100644 index f9a9ba208b..0000000000 --- a/.changeset/curly-snakes-shave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Adds types for `?url&inline` and `?url&no-inline` [import queries](https://vite.dev/guide/assets.html#explicit-inline-handling) added in Vite 6 diff --git a/.changeset/heavy-dots-sip.md b/.changeset/heavy-dots-sip.md deleted file mode 100644 index 2e0c4c29b1..0000000000 --- a/.changeset/heavy-dots-sip.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixed changes to vite configuration made in the astro:build:setup integration hook having no effect when target is "client" diff --git a/.changeset/heavy-fireants-melt.md b/.changeset/heavy-fireants-melt.md new file mode 100644 index 0000000000..b8010626aa --- /dev/null +++ b/.changeset/heavy-fireants-melt.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fixes a bug that caused references to be incorrectly reported as invalid diff --git a/.changeset/kind-horses-smile.md b/.changeset/kind-horses-smile.md new file mode 100644 index 0000000000..720557b2b0 --- /dev/null +++ b/.changeset/kind-horses-smile.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fixes a bug in dev where files would stop being watched if the Astro config file was edited diff --git a/.changeset/large-cherries-explain.md b/.changeset/large-cherries-explain.md new file mode 100644 index 0000000000..118e4d5945 --- /dev/null +++ b/.changeset/large-cherries-explain.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fixes a bug where the content layer would use an outdated version of the Astro config if it was edited in dev diff --git a/.changeset/poor-mangos-fold.md b/.changeset/poor-mangos-fold.md deleted file mode 100644 index dc45981206..0000000000 --- a/.changeset/poor-mangos-fold.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -'astro': minor ---- - -Adds experimental session support - -Sessions are used to store user state between requests for server-rendered pages, such as login status, shopping cart contents, or other user-specific data. - -```astro ---- -export const prerender = false; // Not needed in 'server' mode -const cart = await Astro.session.get('cart'); ---- - -🛒 {cart?.length ?? 0} items -``` - -Sessions are available in on-demand rendered/SSR pages, API endpoints, actions and middleware. To enable session support, you must configure a storage driver. - -If you are using the Node.js adapter, you can use the `fs` driver to store session data on the filesystem: - -```js -// astro.config.mjs -{ - adapter: node({ mode: 'standalone' }), - experimental: { - session: { - // Required: the name of the Unstorage driver - driver: "fs", - }, - }, -} -``` -If you are deploying to a serverless environment, you can use drivers such as `redis` or `netlifyBlobs` or `cloudflareKV` and optionally pass additional configuration options. - -For more information, including using the session API with other adapters and a full list of supported drivers, see [the docs for experimental session support](https://docs.astro.build/en/reference/experimental-flags/sessions/). For even more details, and to leave feedback and participate in the development of this feature, [the Sessions RFC](https://github.com/withastro/roadmap/pull/1055). diff --git a/.changeset/real-hairs-scream.md b/.changeset/real-hairs-scream.md new file mode 100644 index 0000000000..e35a4943b6 --- /dev/null +++ b/.changeset/real-hairs-scream.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fixes a case where `astro:actions` types would not work when using `src/actions.ts` diff --git a/.changeset/red-poems-pay.md b/.changeset/red-poems-pay.md deleted file mode 100644 index 250b12de6b..0000000000 --- a/.changeset/red-poems-pay.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'astro': minor ---- - -Improves asset caching of remote images - -Astro will now store [entity tags](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) and the [Last-Modified](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Last-Modified) date for cached remote images and use them to revalidate the cache when it goes stale. diff --git a/.changeset/shaggy-dancers-run.md b/.changeset/shaggy-dancers-run.md deleted file mode 100644 index e95c16dd7b..0000000000 --- a/.changeset/shaggy-dancers-run.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Clears the content layer cache when the Astro config is changed diff --git a/.changeset/twenty-cherries-switch.md b/.changeset/twenty-cherries-switch.md new file mode 100644 index 0000000000..c79c53284e --- /dev/null +++ b/.changeset/twenty-cherries-switch.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fixes a bug that caused the dev server to return an error if requesting "//" diff --git a/.changeset/warm-pandas-lick.md b/.changeset/warm-pandas-lick.md new file mode 100644 index 0000000000..e3d4c5af33 --- /dev/null +++ b/.changeset/warm-pandas-lick.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fixes a bug that caused Astro to attempt to inject environment variables into non-source files, causing performance problems and broken builds diff --git a/.changeset/wise-boxes-develop.md b/.changeset/wise-boxes-develop.md deleted file mode 100644 index 5b7d0825e4..0000000000 --- a/.changeset/wise-boxes-develop.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -'astro': minor ---- - -Adds a new `getActionPath()` helper available from `astro:actions` - -Astro 5.1 introduces a new helper function, `getActionPath()` to give you more flexibility when calling your action. - -Calling `getActionPath()` with your action returns its URL path so you can make a `fetch()` request with custom headers, or use your action with an API such as `navigator.sendBeacon()`. Then, you can [handle the custom-formatted returned data](https://docs.astro.build/en/guides/actions/#handling-returned-data) as needed, just as if you had called an action directly. - -This example shows how to call a defined `like` action passing the `Authorization` header and the [`keepalive`](https://developer.mozilla.org/en-US/docs/Web/API/Request/keepalive) option: - -```astro - -``` - -This example shows how to call the same `like` action using the [`sendBeacon`](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/sendBeacon) API: - -```astro - -``` diff --git a/.github/workflows/sync-examples.yml b/.github/workflows/sync-examples.yml index 8603a951e8..0f8d42bcca 100644 --- a/.github/workflows/sync-examples.yml +++ b/.github/workflows/sync-examples.yml @@ -3,6 +3,9 @@ name: Sync examples on: workflow_dispatch: inputs: + checkout-ref: + type: string + required: false skip-unchanged-check: type: boolean default: false @@ -31,16 +34,25 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 2 # fetch 2 to compare with previous commit for changes + ref: ${{ inputs.checkout-ref }} - name: Detect changesets uses: bluwy/detect-changesets-action@v1 id: detect + - name: Get pre mode of changesets + id: pre + run: | + if [ -f ./.changeset/pre.json ]; then + pre_value=$(jq -r '.tag' ./.changeset/pre.json) + echo "value=$pre_value" >> $GITHUB_OUTPUT + fi + # We only do sync if there are no changesets, so we don't accidentally allow users # to clone examples that may rely on unreleased code - - name: Sync from main branch to latest and examples/* branches - if: steps.detect.outputs.has-changesets == 'false' && github.ref == 'refs/heads/main' + - name: Sync stable to latest and examples/* branches + if: steps.detect.outputs.has-changesets == 'false' && github.ref == 'refs/heads/main' && steps.pre.outputs.value == '' uses: bluwy/auto-branch-sync-action@v1 with: map: | @@ -49,38 +61,24 @@ jobs: skip-unchanged-check: ${{ inputs.skip-unchanged-check == true }} dry-run: ${{ inputs.dry-run == true }} - - name: Check .changeset/pre.json for matching tag - if: steps.detect.outputs.has-changesets == 'false' && github.ref == 'refs/heads/next' - id: check-pre-mode - run: | - if [ -f ./.changeset/pre.json ]; then - if grep -q '"tag": "alpha"' ./.changeset/pre.json; then - echo "alpha=true" >> $GITHUB_OUTPUT - elif grep -q '"tag": "beta"' ./.changeset/pre.json; then - echo "beta=true" >> $GITHUB_OUTPUT - elif grep -q '"tag": "rc"' ./.changeset/pre.json; then - echo "rc=true" >> $GITHUB_OUTPUT - fi - fi - - - name: Sync from next branch to alpha branch - if: steps.detect.outputs.has-changesets == 'false' && steps.check-pre-mode.outputs.alpha == 'true' + - name: Sync prerelease to alpha branch + if: steps.detect.outputs.has-changesets == 'false' && steps.pre.outputs.value == 'alpha' uses: bluwy/auto-branch-sync-action@v1 with: map: / -> alpha skip-unchanged-check: ${{ inputs.skip-unchanged-check == true }} dry-run: ${{ inputs.dry-run == true }} - - name: Sync from next branch to beta branch - if: steps.detect.outputs.has-changesets == 'false' && steps.check-pre-mode.outputs.beta == 'true' + - name: Sync prerelease to beta branch + if: steps.detect.outputs.has-changesets == 'false' && steps.pre.outputs.value == 'beta' uses: bluwy/auto-branch-sync-action@v1 with: map: / -> beta skip-unchanged-check: ${{ inputs.skip-unchanged-check == true }} dry-run: ${{ inputs.dry-run == true }} - - name: Sync from next branch to rc branch - if: steps.detect.outputs.has-changesets == 'false' && steps.check-pre-mode.outputs.rc == 'true' + - name: Sync prerelease to rc branch + if: steps.detect.outputs.has-changesets == 'false' && steps.pre.outputs.value == 'rc' uses: bluwy/auto-branch-sync-action@v1 with: map: / -> rc diff --git a/.gitignore b/.gitignore index d6a28ec1b1..8626a30a0e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ dist/ .vercel .netlify _site/ +.astro/ scripts/smoke/*-main/ scripts/memory/project/src/pages/ benchmark/projects/ diff --git a/benchmark/make-project/_template.js b/benchmark/make-project/_template.js index 00ebdc4737..dd392138e9 100644 --- a/benchmark/make-project/_template.js +++ b/benchmark/make-project/_template.js @@ -3,4 +3,6 @@ * previous artifacts here before generating files. * @param {URL} projectDir */ +// biome-ignore lint/correctness/noUnusedVariables: parameters here are template placeholders +// biome-ignore lint/correctness/noUnusedFunctionParameters: (same as above) export async function run(projectDir) {} diff --git a/benchmark/package.json b/benchmark/package.json index 708ee14d12..6e58c2a128 100644 --- a/benchmark/package.json +++ b/benchmark/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/mdx": "workspace:*", - "@astrojs/node": "^8.3.4", + "@astrojs/node": "^9.0.0", "@benchmark/timer": "workspace:*", "@benchmark/adapter": "workspace:*", "astro": "workspace:*", @@ -21,10 +21,10 @@ "port-authority": "^2.0.1", "pretty-bytes": "^6.1.1", "sharp": "^0.33.3", - "tinyexec": "^0.3.1" + "tinyexec": "^0.3.2" }, "devDependencies": { - "@codspeed/vitest-plugin": "3.1.1", - "vitest": "2.1.8" + "@codspeed/vitest-plugin": "4.0.0", + "vitest": "^3.0.0-beta.4" } } diff --git a/examples/basics/package.json b/examples/basics/package.json index 082700d135..7f1ebac340 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.0.9" + "astro": "^5.1.7" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index a39eb69b94..ed82cbc5de 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.0.2", - "@astrojs/rss": "^4.0.10", + "@astrojs/mdx": "^4.0.6", + "@astrojs/rss": "^4.0.11", "@astrojs/sitemap": "^3.2.1", - "astro": "^5.0.9" + "astro": "^5.1.7" } } diff --git a/examples/component/package.json b/examples/component/package.json index 0f21527fbd..d138e37841 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.0.9" + "astro": "^5.1.7" }, "peerDependencies": { "astro": "^4.0.0 || ^5.0.0" diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json index 8525f8ebae..6a4e378f46 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -11,14 +11,14 @@ "test": "vitest run" }, "dependencies": { - "@astrojs/react": "^4.1.1", - "astro": "^5.0.9", + "@astrojs/react": "^4.1.5", + "astro": "^5.1.7", "react": "^18.3.1", "react-dom": "^18.3.1", - "vitest": "^2.1.6" + "vitest": "^3.0.0-beta.4" }, "devDependencies": { - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1" + "@types/react": "^18.3.18", + "@types/react-dom": "^18.3.5" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 9fc25b59bf..26268b2421 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/alpinejs": "^0.4.0", - "@types/alpinejs": "^3.13.10", - "alpinejs": "^3.14.3", - "astro": "^5.0.9" + "@astrojs/alpinejs": "^0.4.1", + "@types/alpinejs": "^3.13.11", + "alpinejs": "^3.14.8", + "astro": "^5.1.7" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index fe6c69e123..f032b00e60 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -10,19 +10,19 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.0", - "@astrojs/react": "^4.1.1", - "@astrojs/solid-js": "^5.0.0", - "@astrojs/svelte": "^7.0.1", - "@astrojs/vue": "^5.0.2", - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", - "astro": "^5.0.9", - "preact": "^10.24.3", + "@astrojs/preact": "^4.0.2", + "@astrojs/react": "^4.1.5", + "@astrojs/solid-js": "^5.0.3", + "@astrojs/svelte": "^7.0.3", + "@astrojs/vue": "^5.0.5", + "@types/react": "^18.3.18", + "@types/react-dom": "^18.3.5", + "astro": "^5.1.7", + "preact": "^10.25.4", "react": "^18.3.1", "react-dom": "^18.3.1", - "solid-js": "^1.9.3", - "svelte": "^5.1.16", - "vue": "^3.5.12" + "solid-js": "^1.9.4", + "svelte": "^5.17.3", + "vue": "^3.5.13" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 085a22341e..420f806313 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.0", - "@preact/signals": "^1.3.0", - "astro": "^5.0.9", - "preact": "^10.24.3" + "@astrojs/preact": "^4.0.2", + "@preact/signals": "^2.0.1", + "astro": "^5.1.7", + "preact": "^10.25.4" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 0ee7e45d36..26e13c4675 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/react": "^4.1.1", - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", - "astro": "^5.0.9", + "@astrojs/react": "^4.1.5", + "@types/react": "^18.3.18", + "@types/react-dom": "^18.3.5", + "astro": "^5.1.7", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 8c36830880..584936f148 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/solid-js": "^5.0.0", - "astro": "^5.0.9", - "solid-js": "^1.9.3" + "@astrojs/solid-js": "^5.0.3", + "astro": "^5.1.7", + "solid-js": "^1.9.4" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 6370f3e1a1..0458981372 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^7.0.1", - "astro": "^5.0.9", - "svelte": "^5.1.16" + "@astrojs/svelte": "^7.0.3", + "astro": "^5.1.7", + "svelte": "^5.17.3" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 72cf69b4e1..e53cd3335d 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/vue": "^5.0.2", - "astro": "^5.0.9", - "vue": "^3.5.12" + "@astrojs/vue": "^5.0.5", + "astro": "^5.1.7", + "vue": "^3.5.13" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 720b6ab155..7772de30b7 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.0.0", - "astro": "^5.0.9" + "astro": "^5.1.7" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index ff38486118..9e058d3c6e 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.0.9" + "astro": "^5.1.7" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index e4f3111d5d..45f046143e 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.0.9" + "astro": "^5.1.7" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index e379ed0c77..f6c1e3bf0b 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.0.9" + "astro": "^5.1.7" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index bc964e069a..02a772dd24 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@astrojs/node": "^9.0.0", - "@astrojs/svelte": "^7.0.1", - "astro": "^5.0.9", - "svelte": "^5.1.16" + "@astrojs/svelte": "^7.0.3", + "astro": "^5.1.7", + "svelte": "^5.17.3" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index b97f348dae..beeeb43a60 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,8 +9,8 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.0.9", - "sass": "^1.80.6", + "astro": "^5.1.7", + "sass": "^1.83.1", "sharp": "^0.33.3" } } diff --git a/examples/starlog/src/components/BaseHead.astro b/examples/starlog/src/components/BaseHead.astro index 34aff98fbf..901b042cfd 100644 --- a/examples/starlog/src/components/BaseHead.astro +++ b/examples/starlog/src/components/BaseHead.astro @@ -8,6 +8,7 @@ const { title = SiteTitle, name = SiteTitle, description = SiteDescription, ...s --- + diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 78cc238802..ee625d39b1 100644 --- a/examples/toolbar-app/package.json +++ b/examples/toolbar-app/package.json @@ -15,6 +15,7 @@ "./app": "./dist/app.js" }, "devDependencies": { - "astro": "^5.0.9" + "@types/node": "^18.17.8", + "astro": "^5.1.7" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 13cb197cab..356387be46 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.12.3", - "astro": "^5.0.9" + "@astrojs/markdoc": "^0.12.6", + "astro": "^5.1.7" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 8e77f8f605..e5e951cc78 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.0.2", - "@astrojs/preact": "^4.0.0", - "astro": "^5.0.9", - "preact": "^10.24.3" + "@astrojs/mdx": "^4.0.6", + "@astrojs/preact": "^4.0.2", + "astro": "^5.1.7", + "preact": "^10.25.4" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 3ba3105d6b..1c58c94bd4 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^4.0.0", + "@astrojs/preact": "^4.0.2", "@nanostores/preact": "^0.5.2", - "astro": "^5.0.9", + "astro": "^5.1.7", "nanostores": "^0.11.3", - "preact": "^10.24.3" + "preact": "^10.25.4" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 63a1c53878..2306e59a62 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,13 +10,13 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.0.2", - "@astrojs/tailwind": "^5.1.3", - "@types/canvas-confetti": "^1.6.4", - "astro": "^5.0.9", + "@astrojs/mdx": "^4.0.6", + "@astrojs/tailwind": "^5.1.4", + "@types/canvas-confetti": "^1.9.0", + "astro": "^5.1.7", "autoprefixer": "^10.4.20", "canvas-confetti": "^1.9.3", "postcss": "^8.4.49", - "tailwindcss": "^3.4.14" + "tailwindcss": "^3.4.17" } } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index e015d89de7..ae5855371c 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.0.9", - "vitest": "^2.1.6" + "astro": "^5.1.7", + "vitest": "^3.0.0-beta.4" } } diff --git a/package.json b/package.json index aa25258ea0..587afced24 100644 --- a/package.json +++ b/package.json @@ -57,19 +57,19 @@ "@astrojs/check": "^0.9.4", "@biomejs/biome": "1.9.3", "@changesets/changelog-github": "^0.5.0", - "@changesets/cli": "^2.27.10", + "@changesets/cli": "^2.27.11", "@types/node": "^18.17.8", - "esbuild": "^0.21.5", - "eslint": "^9.15.0", + "esbuild": "^0.24.2", + "eslint": "^9.18.0", "eslint-plugin-regexp": "^2.7.0", "globby": "^14.0.2", "only-allow": "^1.2.1", - "prettier": "^3.4.1", + "prettier": "^3.4.2", "prettier-plugin-astro": "^0.14.1", - "publint": "^0.2.12", + "publint": "^0.3.2", "turbo": "^2.3.3", - "typescript": "~5.7.2", - "typescript-eslint": "^8.16.0" + "typescript": "~5.7.3", + "typescript-eslint": "^8.19.1" }, "pnpm": { "peerDependencyRules": { diff --git a/packages/astro-rss/CHANGELOG.md b/packages/astro-rss/CHANGELOG.md index 04187d3328..602c893b4c 100644 --- a/packages/astro-rss/CHANGELOG.md +++ b/packages/astro-rss/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/rss +## 4.0.11 + +### Patch Changes + +- [#12829](https://github.com/withastro/astro/pull/12829) [`ebe2aa9`](https://github.com/withastro/astro/commit/ebe2aa95c7f4a6559cec8b82d155da34a57bdd53) Thanks [@SapphicMoe](https://github.com/SapphicMoe)! - Revert incorrect Content-Type header applied for RSS XML file + ## 4.0.10 ### Patch Changes @@ -170,7 +176,7 @@ ### Patch Changes -- [#7066](https://github.com/withastro/astro/pull/7066) [`a37e67b52`](https://github.com/withastro/astro/commit/a37e67b520dc35dbf40313c77490a97446de2f74) Thanks [@TheOtterlord](https://github.com/TheOtterlord)! - Fix pubDate schema tranformation +- [#7066](https://github.com/withastro/astro/pull/7066) [`a37e67b52`](https://github.com/withastro/astro/commit/a37e67b520dc35dbf40313c77490a97446de2f74) Thanks [@TheOtterlord](https://github.com/TheOtterlord)! - Fix pubDate schema transformation - [#7104](https://github.com/withastro/astro/pull/7104) [`826e02890`](https://github.com/withastro/astro/commit/826e0289005f645b902375b98d5549c6a95ccafa) Thanks [@bluwy](https://github.com/bluwy)! - Specify `"files"` field to only publish necessary files diff --git a/packages/astro-rss/package.json b/packages/astro-rss/package.json index faabbecbef..7a18d7f9c5 100644 --- a/packages/astro-rss/package.json +++ b/packages/astro-rss/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/rss", "description": "Add RSS feeds to your Astro projects", - "version": "4.0.10", + "version": "4.0.11", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -33,7 +33,7 @@ "xml2js": "0.6.2" }, "dependencies": { - "fast-xml-parser": "^4.5.0", + "fast-xml-parser": "^4.5.1", "kleur": "^4.1.5" } } diff --git a/packages/astro-rss/src/index.ts b/packages/astro-rss/src/index.ts index 23984f9fbd..33a8f66a02 100644 --- a/packages/astro-rss/src/index.ts +++ b/packages/astro-rss/src/index.ts @@ -89,7 +89,7 @@ export default async function getRssResponse(rssOptions: RSSOptions): Promise { assertXmlDeepEqual(str, validXmlResult); const contentType = response.headers.get('Content-Type'); - assert.equal(contentType, 'application/rss+xml; charset=utf-8'); + assert.equal(contentType, 'application/xml'); }); it('should be the same string as getRssString', async () => { diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index c10881e249..60d0353198 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,227 @@ # astro +## 5.1.7 + +### Patch Changes + +- [#12361](https://github.com/withastro/astro/pull/12361) [`3d89e62`](https://github.com/withastro/astro/commit/3d89e6282235a8da45d9ddfe02bcf7ec78056941) Thanks [@LunaticMuch](https://github.com/LunaticMuch)! - Upgrades the `esbuild` version to match `vite` + +- [#12980](https://github.com/withastro/astro/pull/12980) [`1a026af`](https://github.com/withastro/astro/commit/1a026afb427cd4b472c8f1174a08f10086f4fb89) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where setting the status of a page to `404` in development would show the default 404 page (or custom one if provided) instead of using the current page + +- [#12182](https://github.com/withastro/astro/pull/12182) [`c30070b`](https://github.com/withastro/astro/commit/c30070b9271e4c494e7cbf3a1c45515782034911) Thanks [@braden-w](https://github.com/braden-w)! - Improves matching of 404 and 500 routes + +- Updated dependencies [[`3d89e62`](https://github.com/withastro/astro/commit/3d89e6282235a8da45d9ddfe02bcf7ec78056941)]: + - @astrojs/markdown-remark@6.0.2 + +## 5.1.6 + +### Patch Changes + +- [#12956](https://github.com/withastro/astro/pull/12956) [`3aff68a`](https://github.com/withastro/astro/commit/3aff68a4195a608e92dc6299610a4b06e7bb96f1) Thanks [@kaytwo](https://github.com/kaytwo)! - Removes encryption of empty props to allow server island cacheability + +- [#12977](https://github.com/withastro/astro/pull/12977) [`80067c0`](https://github.com/withastro/astro/commit/80067c032f9ce5852f3315d1046b2d0c220ddcd5) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where accessing `astro:env` APIs or `import.meta.env` inside the content config file would not work + +- [#12839](https://github.com/withastro/astro/pull/12839) [`57be349`](https://github.com/withastro/astro/commit/57be3494e2bdc178d073243c8cbfa10edb85b049) Thanks [@mtwilliams-code](https://github.com/mtwilliams-code)! - Fix Astro.currentLocale returning the incorrect locale when using fallback rewrites in SSR mode + +- [#12962](https://github.com/withastro/astro/pull/12962) [`4b7a2ce`](https://github.com/withastro/astro/commit/4b7a2ce9e743a5624617563022635678a5ba6051) Thanks [@ascorbic](https://github.com/ascorbic)! - Skips updating content layer files if content is unchanged + +- [#12942](https://github.com/withastro/astro/pull/12942) [`f00c2dd`](https://github.com/withastro/astro/commit/f00c2ddc31b5285d14c2f0808c01eafaaf31f5c9) Thanks [@liruifengv](https://github.com/liruifengv)! - Improves the session error messages + +- [#12966](https://github.com/withastro/astro/pull/12966) [`d864e09`](https://github.com/withastro/astro/commit/d864e0991e05438d4bdb5e14fab4f7f75efe2a1f) Thanks [@ascorbic](https://github.com/ascorbic)! - Ensures old content collection entry is deleted if a markdown frontmatter slug is changed in dev + +## 5.1.5 + +### Patch Changes + +- [#12934](https://github.com/withastro/astro/pull/12934) [`673a518`](https://github.com/withastro/astro/commit/673a518b011e2df35a099f8205611d98a223a92a) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a regression where the Astro Container didn't work during the build, using `pnpm` + +- [#12955](https://github.com/withastro/astro/pull/12955) [`db447f2`](https://github.com/withastro/astro/commit/db447f2816836b635355cc2b0a73678facd155a5) Thanks [@martrapp](https://github.com/martrapp)! - Lets TypeScript know about the "blocking" and "disabled" attributes of the `` element. + +- [#12922](https://github.com/withastro/astro/pull/12922) [`faf74af`](https://github.com/withastro/astro/commit/faf74af522f4499ab95531b24a0a1c14070abe8b) Thanks [@adamchal](https://github.com/adamchal)! - Improves performance of static asset generation by fixing a bug that caused image transforms to be performed serially. This fix ensures that processing uses all CPUs when running in a multi-core environment. + +- [#12947](https://github.com/withastro/astro/pull/12947) [`3c2292f`](https://github.com/withastro/astro/commit/3c2292f2f0accf1974b30dbe32f040c56413e731) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused empty content collections when running dev with NODE_ENV set + +## 5.1.4 + +### Patch Changes + +- [#12927](https://github.com/withastro/astro/pull/12927) [`ad2a752`](https://github.com/withastro/astro/commit/ad2a752662946e3a80849605f073812b06adf632) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where Astro attempted to decode a request URL multiple times, resulting in an unexpected behaviour when decoding the character `%` + +- [#12912](https://github.com/withastro/astro/pull/12912) [`0c0c66b`](https://github.com/withastro/astro/commit/0c0c66bf0df23ab5a9bd2f147e303d8397d3222e) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Improves the config error for invalid combinations of `context` and `access` properties under `env.schema` + +- [#12935](https://github.com/withastro/astro/pull/12935) [`3d47e6b`](https://github.com/withastro/astro/commit/3d47e6baff7a17d3ef09630b0d90362baef41f97) Thanks [@AirBorne04](https://github.com/AirBorne04)! - Fixes an issue where `Astro.locals` coming from an adapter weren't available in the `404.astro`, when using the `astro dev` command, + +- [#12925](https://github.com/withastro/astro/pull/12925) [`44841fc`](https://github.com/withastro/astro/commit/44841fc281f8920b32f4b4a94deefeb3ad069cf3) Thanks [@ascorbic](https://github.com/ascorbic)! - Ensures image styles are not imported unless experimental responsive images are enabled + +- [#12926](https://github.com/withastro/astro/pull/12926) [`8e64bb7`](https://github.com/withastro/astro/commit/8e64bb727f78f24b26fd1c0b1289ab1ccd611114) Thanks [@oliverlynch](https://github.com/oliverlynch)! - Improves remote image cache efficiency by separating image data and metadata into a binary and sidecar JSON file. + +- [#12920](https://github.com/withastro/astro/pull/12920) [`8b9d530`](https://github.com/withastro/astro/commit/8b9d53037879cd7ca7bee4d20b4e6f08e984a7df) Thanks [@bluwy](https://github.com/bluwy)! - Processes markdown with empty body as remark and rehype plugins may add additional content or frontmatter + +- [#12918](https://github.com/withastro/astro/pull/12918) [`fd12a26`](https://github.com/withastro/astro/commit/fd12a26ac6012c6b8a26f5a178e1bb46092a1806) Thanks [@lameuler](https://github.com/lameuler)! - Fixes a bug where the logged output path does not match the actual output path when using `build.format: 'preserve'` + +- [#12676](https://github.com/withastro/astro/pull/12676) [`2ffc0fc`](https://github.com/withastro/astro/commit/2ffc0fcab78b658a6ee73a8f8b291802093dce5e) Thanks [@koyopro](https://github.com/koyopro)! - Allows configuring Astro modules TypeScript compilation with the `vite.esbuild` config + +- [#12938](https://github.com/withastro/astro/pull/12938) [`dbb04f3`](https://github.com/withastro/astro/commit/dbb04f3c04ce868b5c985c848a2c40a3761a6dad) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug where content collections would sometimes appear empty when first running astro dev + +- [#12937](https://github.com/withastro/astro/pull/12937) [`30edb6d`](https://github.com/withastro/astro/commit/30edb6d9d0aaf28bea1fec73879f63fe134507d0) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where users could use `Astro.request.headers` during a rewrite inside prerendered routes. This an invalid behaviour, and now Astro will show a warning if this happens. + +- [#12937](https://github.com/withastro/astro/pull/12937) [`30edb6d`](https://github.com/withastro/astro/commit/30edb6d9d0aaf28bea1fec73879f63fe134507d0) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where the use of `Astro.rewrite` would trigger the invalid use of `Astro.request.headers` + +## 5.1.3 + +### Patch Changes + +- [#12877](https://github.com/withastro/astro/pull/12877) [`73a0788`](https://github.com/withastro/astro/commit/73a078835eb92a05c3f681ee025c93d6db85b907) Thanks [@bluwy](https://github.com/bluwy)! - Fixes sourcemap warning generated by the `astro:server-islands` Vite plugin + +- [#12906](https://github.com/withastro/astro/pull/12906) [`2d89492`](https://github.com/withastro/astro/commit/2d89492d73142ed5c7cea9448d841a9892e66598) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused pages that return an empty array from getStaticPath to match every path + +- [`011fa0f`](https://github.com/withastro/astro/commit/011fa0f00ce457cb6b582d36b6b5b17aa89f0a70) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where `astro:content` types would be erased when restarting the dev server + +- [#12907](https://github.com/withastro/astro/pull/12907) [`dbf1275`](https://github.com/withastro/astro/commit/dbf1275987d4d9724eab471f1600fba9a50aefb8) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a regression around the server islands route, which was not passed to the adapters `astro:build:done` hook + +- [#12818](https://github.com/withastro/astro/pull/12818) [`579bd93`](https://github.com/withastro/astro/commit/579bd93794b787485479aa3b16554409a0504ed2) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes race condition where dev server would attempt to load collections before the content had loaded + +- [#12883](https://github.com/withastro/astro/pull/12883) [`fbac92f`](https://github.com/withastro/astro/commit/fbac92f8bdbb5ee1312726b2a535a81271b3f7d6) Thanks [@kaytwo](https://github.com/kaytwo)! - Fixes a bug where responses can be returned before session data is saved + +- [#12815](https://github.com/withastro/astro/pull/12815) [`3acc654`](https://github.com/withastro/astro/commit/3acc65444c27d87b6f2d61bdfa7df0e0db4e2686) Thanks [@ericswpark](https://github.com/ericswpark)! - Some non-index files that were incorrectly being treated as index files are now excluded + +- [#12884](https://github.com/withastro/astro/pull/12884) [`d7e97a7`](https://github.com/withastro/astro/commit/d7e97a775dda7a851bfc10b06161f9a1d3631ed3) Thanks [@ascorbic](https://github.com/ascorbic)! - Adds `render()` to stub content types + +- [#12883](https://github.com/withastro/astro/pull/12883) [`fbac92f`](https://github.com/withastro/astro/commit/fbac92f8bdbb5ee1312726b2a535a81271b3f7d6) Thanks [@kaytwo](https://github.com/kaytwo)! - Fixes a bug where session data could be corrupted if it is changed after calling .set() + +- [#12827](https://github.com/withastro/astro/pull/12827) [`7b5dc6f`](https://github.com/withastro/astro/commit/7b5dc6f0f1fbb825f52cd587aa1f7d21d731b3de) Thanks [@sinskiy](https://github.com/sinskiy)! - Fixes an issue when crawlers try to index Server Islands thinking that Server Islands are pages + +## 5.1.2 + +### Patch Changes + +- [#12798](https://github.com/withastro/astro/pull/12798) [`7b0cb85`](https://github.com/withastro/astro/commit/7b0cb852f6336c0f9cc65bd044864004e759d810) Thanks [@ascorbic](https://github.com/ascorbic)! - Improves warning logs for invalid content collection configuration + +- [#12781](https://github.com/withastro/astro/pull/12781) [`96c4b92`](https://github.com/withastro/astro/commit/96c4b925333fede1a53d19657d15e0052da90780) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a regression that caused `default()` to not work with `reference()` + +- [#12820](https://github.com/withastro/astro/pull/12820) [`892dd9f`](https://github.com/withastro/astro/commit/892dd9f6cd3935ce1d4f4dec523b248c2d15da12) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused cookies to not be deleted when destroying a session + +- [#12864](https://github.com/withastro/astro/pull/12864) [`440d8a5`](https://github.com/withastro/astro/commit/440d8a54f7b3d75dd16decb7d9d29e3724bff394) Thanks [@kaytwo](https://github.com/kaytwo)! - Fixes a bug where the session ID wasn't correctly regenerated + +- [#12768](https://github.com/withastro/astro/pull/12768) [`524c855`](https://github.com/withastro/astro/commit/524c855075bb75696500445fdc31cb2c69b09627) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where Astro didn't print error logs when Astro Islands were used in incorrect cases. + +- [#12814](https://github.com/withastro/astro/pull/12814) [`f12f111`](https://github.com/withastro/astro/commit/f12f1118bc4687cc807a4495ffcaafcb0861b7a2) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where Astro didn't log anything in case a file isn't created during the build. + +- [#12875](https://github.com/withastro/astro/pull/12875) [`e109002`](https://github.com/withastro/astro/commit/e109002c3d5980362788360211e61f11f4394837) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug in emulated legacy collections where the entry passed to the getCollection filter function did not include the legacy entry fields. + +- [#12768](https://github.com/withastro/astro/pull/12768) [`524c855`](https://github.com/withastro/astro/commit/524c855075bb75696500445fdc31cb2c69b09627) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where Astro was printing the incorrect output format when running the `astro build` command + +- [#12810](https://github.com/withastro/astro/pull/12810) [`70a9f0b`](https://github.com/withastro/astro/commit/70a9f0b984638c21a4da1d83b7d5a5c9940bb693) Thanks [@louisescher](https://github.com/louisescher)! - Fixes server islands failing to check content-type header under certain circumstances + + Sometimes a reverse proxy or similar service might modify the content-type header to include the charset or other parameters in the media type of the response. This previously wasn't handled by the client-side server island script and thus removed the script without actually placing the requested content in the DOM. This fix makes it so the script checks if the header starts with the proper content type instead of exactly matching `text/html`, so the following will still be considered a valid header: `text/html; charset=utf-8` + +- [#12816](https://github.com/withastro/astro/pull/12816) [`7fb2184`](https://github.com/withastro/astro/commit/7fb21844dff893c90dc0a07fd13cefdba61d0a45) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where an injected route entrypoint wasn't correctly marked because the resolved file path contained a query parameter. + + This fixes some edge case where some injected entrypoint were not resolved when using an adapter. + +## 5.1.1 + +### Patch Changes + +- [#12782](https://github.com/withastro/astro/pull/12782) [`f3d8385`](https://github.com/withastro/astro/commit/f3d83854aa671df4db6f95558a7ef5bad4bc64f9) Thanks [@fhiromasa](https://github.com/fhiromasa)! - update comment in packages/astro/src/types/public/common.ts + +- [#12789](https://github.com/withastro/astro/pull/12789) [`f632b94`](https://github.com/withastro/astro/commit/f632b945275c2615fc0fdf2abc831c45d0ddebcd) Thanks [@ascorbic](https://github.com/ascorbic)! - Pass raw frontmatter to remark plugins in glob loader + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + +## 5.1.0 + +### Minor Changes + +- [#12441](https://github.com/withastro/astro/pull/12441) [`b4fec3c`](https://github.com/withastro/astro/commit/b4fec3c7d17ed92dcaaeea5e2545aae6dfd19e53) Thanks [@ascorbic](https://github.com/ascorbic)! - Adds experimental session support + + Sessions are used to store user state between requests for server-rendered pages, such as login status, shopping cart contents, or other user-specific data. + + ```astro + --- + export const prerender = false; // Not needed in 'server' mode + const cart = await Astro.session.get('cart'); + --- + + 🛒 {cart?.length ?? 0} items + ``` + + Sessions are available in on-demand rendered/SSR pages, API endpoints, actions and middleware. To enable session support, you must configure a storage driver. + + If you are using the Node.js adapter, you can use the `fs` driver to store session data on the filesystem: + + ```js + // astro.config.mjs + { + adapter: node({ mode: 'standalone' }), + experimental: { + session: { + // Required: the name of the unstorage driver + driver: "fs", + }, + }, + } + ``` + + If you are deploying to a serverless environment, you can use drivers such as `redis`, `netlify-blobs`, `vercel-kv`, or `cloudflare-kv-binding` and optionally pass additional configuration options. + + For more information, including using the session API with other adapters and a full list of supported drivers, see [the docs for experimental session support](https://docs.astro.build/en/reference/experimental-flags/sessions/). For even more details, and to leave feedback and participate in the development of this feature, [the Sessions RFC](https://github.com/withastro/roadmap/pull/1055). + +- [#12426](https://github.com/withastro/astro/pull/12426) [`3dc02c5`](https://github.com/withastro/astro/commit/3dc02c57e4060cb2bde7c4e05d91841dd5dd8eb7) Thanks [@oliverlynch](https://github.com/oliverlynch)! - Improves asset caching of remote images + + Astro will now store [entity tags](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) and the [Last-Modified](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Last-Modified) date for cached remote images and use them to revalidate the cache when it goes stale. + +- [#12721](https://github.com/withastro/astro/pull/12721) [`c9d5110`](https://github.com/withastro/astro/commit/c9d51107d0a4b58a9ced486b28d09118f3885254) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds a new `getActionPath()` helper available from `astro:actions` + + Astro 5.1 introduces a new helper function, `getActionPath()` to give you more flexibility when calling your action. + + Calling `getActionPath()` with your action returns its URL path so you can make a `fetch()` request with custom headers, or use your action with an API such as `navigator.sendBeacon()`. Then, you can [handle the custom-formatted returned data](https://docs.astro.build/en/guides/actions/#handling-returned-data) as needed, just as if you had called an action directly. + + This example shows how to call a defined `like` action passing the `Authorization` header and the [`keepalive`](https://developer.mozilla.org/en-US/docs/Web/API/Request/keepalive) option: + + ```astro + + ``` + + This example shows how to call the same `like` action using the [`sendBeacon`](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/sendBeacon) API: + + ```astro + + ``` + +### Patch Changes + +- [#12786](https://github.com/withastro/astro/pull/12786) [`e56af4a`](https://github.com/withastro/astro/commit/e56af4a3d7039673658e4a014158969ea5076e32) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where Astro i18n didn't properly show the 404 page when using fallback and the option `prefixDefaultLocale` set to `true`. + +- [#12758](https://github.com/withastro/astro/pull/12758) [`483da89`](https://github.com/withastro/astro/commit/483da89cf68d68ec792ff8721d469ed10dc14e4a) Thanks [@delucis](https://github.com/delucis)! - Adds types for `?url&inline` and `?url&no-inline` [import queries](https://vite.dev/guide/assets.html#explicit-inline-handling) added in Vite 6 + +- [#12763](https://github.com/withastro/astro/pull/12763) [`8da2318`](https://github.com/withastro/astro/commit/8da231855162af245f2b3664babb68dff0ba390f) Thanks [@rbsummers](https://github.com/rbsummers)! - Fixed changes to vite configuration made in the astro:build:setup integration hook having no effect when target is "client" + +- [#12767](https://github.com/withastro/astro/pull/12767) [`36c1e06`](https://github.com/withastro/astro/commit/36c1e0697da9fdc453a7a9a3c84e0e79cd0cb376) Thanks [@ascorbic](https://github.com/ascorbic)! - Clears the content layer cache when the Astro config is changed + ## 5.0.9 ### Patch Changes @@ -164,7 +386,7 @@ Both of these options can be overridden by setting your own values to the corresponding settings in your `tsconfig.json` file. -- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specfic metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: +- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specific metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: - `vfile.data.__astroHeadings` -> `vfile.data.astro.headings` - `vfile.data.imagePaths` -> `vfile.data.astro.imagePaths` @@ -884,7 +1106,7 @@ { "dogs": [{}], "cats": [{}] } ``` - You can seperate these collections by passing a custom `parser` to the `file()` loader like so: + You can separate these collections by passing a custom `parser` to the `file()` loader like so: ```typescript const dogs = defineCollection({ @@ -1921,7 +2143,7 @@ { "dogs": [{}], "cats": [{}] } ``` - You can seperate these collections by passing a custom `parser` to the `file()` loader like so: + You can separate these collections by passing a custom `parser` to the `file()` loader like so: ```typescript const dogs = defineCollection({ @@ -2488,7 +2710,7 @@ ### Major Changes -- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specfic metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: +- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specific metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: - `vfile.data.__astroHeadings` -> `vfile.data.astro.headings` - `vfile.data.imagePaths` -> `vfile.data.astro.imagePaths` @@ -3055,7 +3277,7 @@ ``` ```` -- [#11984](https://github.com/withastro/astro/pull/11984) [`3ac2263`](https://github.com/withastro/astro/commit/3ac2263ff6070136bec9cffb863c38bcc31ccdfe) Thanks [@chaegumi](https://github.com/chaegumi)! - Adds a new `build.concurreny` configuration option to specify the number of pages to build in parallel +- [#11984](https://github.com/withastro/astro/pull/11984) [`3ac2263`](https://github.com/withastro/astro/commit/3ac2263ff6070136bec9cffb863c38bcc31ccdfe) Thanks [@chaegumi](https://github.com/chaegumi)! - Adds a new `build.concurrency` configuration option to specify the number of pages to build in parallel **In most cases, you should not change the default value of `1`.** @@ -3634,7 +3856,7 @@ This allows you to provide a value for [Shiki's `meta` attribute](https://shiki.style/guide/transformers#meta) to pass options to transformers. - The following example passes an option to highlight lines 1 and 3 to Shiki's `tranformerMetaHighlight`: + The following example passes an option to highlight lines 1 and 3 to Shiki's `transformerMetaHighlight`: ```astro --- @@ -4261,7 +4483,7 @@ The `server:defer` directive can be used on any Astro component in a project using `hybrid` or `server` mode with an adapter. There are no special APIs needed inside of the island. - Enable server islands by adding the experimental flag to your Astro config with an appropriate `output` mode and adatper: + Enable server islands by adding the experimental flag to your Astro config with an appropriate `output` mode and adapter: ```js import { defineConfig } from 'astro/config'; @@ -7337,7 +7559,7 @@ - [#9179](https://github.com/withastro/astro/pull/9179) [`3f28336d9`](https://github.com/withastro/astro/commit/3f28336d9a52d7e4364d455ee3128d14d10a078a) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where the presence of a slot in a page led to an error. -- [#9219](https://github.com/withastro/astro/pull/9219) [`067a65f5b`](https://github.com/withastro/astro/commit/067a65f5b4d163bf1944cf47e6bf891f0b93553f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fix edge case where ` + diff --git a/packages/astro/test/fixtures/content-layer-remark-plugins/src/content.config.ts b/packages/astro/test/fixtures/content-layer-remark-plugins/src/content.config.ts new file mode 100644 index 0000000000..8fc3038048 --- /dev/null +++ b/packages/astro/test/fixtures/content-layer-remark-plugins/src/content.config.ts @@ -0,0 +1,16 @@ +import { defineCollection, z } from 'astro:content'; +import { glob } from 'astro/loaders'; + +const docs = defineCollection({ + loader: glob({ pattern: '**/*.{md,mdx}', base: './src/content/docs' }), + schema: z + .object({ + title: z.string(), + }) + .transform((data) => ({ + ...data, + someOtherField: 'Added by transform', + })), +}); + +export const collections = { docs }; diff --git a/packages/astro/test/fixtures/content-layer-remark-plugins/src/content/docs/empty-content.md b/packages/astro/test/fixtures/content-layer-remark-plugins/src/content/docs/empty-content.md new file mode 100644 index 0000000000..840d7d64ac --- /dev/null +++ b/packages/astro/test/fixtures/content-layer-remark-plugins/src/content/docs/empty-content.md @@ -0,0 +1,3 @@ +--- +title: Test Empty Markdown +--- diff --git a/packages/astro/test/fixtures/content-layer-remark-plugins/src/content/docs/test1.md b/packages/astro/test/fixtures/content-layer-remark-plugins/src/content/docs/test1.md new file mode 100644 index 0000000000..a5e9bc6086 --- /dev/null +++ b/packages/astro/test/fixtures/content-layer-remark-plugins/src/content/docs/test1.md @@ -0,0 +1,6 @@ +--- +title: Test Markdown +foo: bar +--- + +# Test Markdown diff --git a/packages/astro/test/fixtures/content-layer-remark-plugins/src/content/docs/test2.mdx b/packages/astro/test/fixtures/content-layer-remark-plugins/src/content/docs/test2.mdx new file mode 100644 index 0000000000..3b937b559e --- /dev/null +++ b/packages/astro/test/fixtures/content-layer-remark-plugins/src/content/docs/test2.mdx @@ -0,0 +1,8 @@ +--- +title: Test MDX +foo: bar +--- + +Hello from MDX! + +[Markdown page](/test1) diff --git a/packages/astro/test/fixtures/content-layer-remark-plugins/src/pages/[...slug].astro b/packages/astro/test/fixtures/content-layer-remark-plugins/src/pages/[...slug].astro new file mode 100644 index 0000000000..b25523258a --- /dev/null +++ b/packages/astro/test/fixtures/content-layer-remark-plugins/src/pages/[...slug].astro @@ -0,0 +1,28 @@ +--- +import { getCollection, render } from 'astro:content'; + +export async function getStaticPaths() { + const docs = await getCollection('docs'); + return docs.map(doc => ({ + params: { slug: doc.id }, + props: { doc }, + })); +} + +const { doc } = Astro.props; +const { Content, remarkPluginFrontmatter } = await render(doc); +--- + + + + + + + Document + + +

{doc.data.title}

+
{remarkPluginFrontmatter?.customProperty}
+ + + diff --git a/packages/astro/test/fixtures/content-layer-remark-plugins/src/pages/index.astro b/packages/astro/test/fixtures/content-layer-remark-plugins/src/pages/index.astro new file mode 100644 index 0000000000..34ce5d6102 --- /dev/null +++ b/packages/astro/test/fixtures/content-layer-remark-plugins/src/pages/index.astro @@ -0,0 +1,12 @@ + + + + + + Document + + +

Markdown page

+

MDX page

+ + \ No newline at end of file diff --git a/packages/astro/test/fixtures/content-layer/src/content.config.ts b/packages/astro/test/fixtures/content-layer/src/content.config.ts index 82228f61da..88ed0231eb 100644 --- a/packages/astro/test/fixtures/content-layer/src/content.config.ts +++ b/packages/astro/test/fixtures/content-layer/src/content.config.ts @@ -2,6 +2,7 @@ import { defineCollection, z, reference } from 'astro:content'; import { file, glob } from 'astro/loaders'; import { loader } from './loaders/post-loader.js'; import { parse as parseToml } from 'toml'; +import { readFile } from 'fs/promises'; const blog = defineCollection({ loader: loader({ url: 'https://jsonplaceholder.typicode.com/posts' }), @@ -71,43 +72,32 @@ const rodents = defineCollection({ nocturnal: z.boolean(), }), }); +// Absolute paths should also work +const absoluteRoot = new URL('content/space', import.meta.url); + +const spacecraft = defineCollection({ + loader: glob({ pattern: '*.md', base: absoluteRoot }), + schema: ({ image }) => + z.object({ + title: z.string(), + description: z.string(), + publishedDate: z.coerce.date(), + tags: z.array(z.string()), + heroImage: image().optional(), + cat: reference('cats').default('siamese'), + something: z + .string() + .optional() + .transform((str) => ({ type: 'test', content: str })), + }), +}); + const cats = defineCollection({ loader: async function () { - return [ - { - breed: 'Siamese', - id: 'siamese', - size: 'Medium', - origin: 'Thailand', - lifespan: '15 years', - temperament: ['Active', 'Affectionate', 'Social', 'Playful'], - }, - { - breed: 'Persian', - id: 'persian', - size: 'Medium', - origin: 'Iran', - lifespan: '15 years', - temperament: ['Calm', 'Affectionate', 'Social'], - }, - { - breed: 'Tabby', - id: 'tabby', - size: 'Medium', - origin: 'Egypt', - lifespan: '15 years', - temperament: ['Curious', 'Playful', 'Independent'], - }, - { - breed: 'Ragdoll', - id: 'ragdoll', - size: 'Medium', - origin: 'United States', - lifespan: '15 years', - temperament: ['Calm', 'Affectionate', 'Social'], - }, - ]; + const file = new URL('data/cats.json', import.meta.url); + const data = await readFile(file, 'utf-8'); + return JSON.parse(data); }, schema: z.object({ breed: z.string(), @@ -140,25 +130,6 @@ const birds = defineCollection({ }), }); -// Absolute paths should also work -const absoluteRoot = new URL('content/space', import.meta.url); - -const spacecraft = defineCollection({ - loader: glob({ pattern: '*.md', base: absoluteRoot }), - schema: ({ image }) => - z.object({ - title: z.string(), - description: z.string(), - publishedDate: z.coerce.date(), - tags: z.array(z.string()), - heroImage: image().optional(), - cat: reference('cats').optional(), - something: z - .string() - .optional() - .transform((str) => ({ type: 'test', content: str })), - }), -}); const probes = defineCollection({ loader: glob({ pattern: ['*.md', '!voyager-*'], base: 'src/data/space-probes' }), @@ -177,6 +148,13 @@ const numbers = defineCollection({ loader: glob({ pattern: 'src/data/glob-data/*', base: '.' }), }); +const notADirectory = defineCollection({ + loader: glob({ pattern: '*', base: 'src/nonexistent' }), +}); + +const nothingMatches = defineCollection({ + loader: glob({ pattern: 'nothingmatches/*', base: 'src/data' }), +}); const images = defineCollection({ loader: () => [ { @@ -259,4 +237,7 @@ export const collections = { songs, probes, rodents, + notADirectory, + nothingMatches }; + diff --git a/packages/astro/test/fixtures/content-layer/src/content/space/exomars.md b/packages/astro/test/fixtures/content-layer/src/content/space/exomars.md new file mode 100644 index 0000000000..ea0ac60236 --- /dev/null +++ b/packages/astro/test/fixtures/content-layer/src/content/space/exomars.md @@ -0,0 +1,10 @@ +--- +title: Rosalind Franklin Rover +description: 'Learn about the Rosalind Franklin Rover.' +publishedDate: '2022-09-19' +tags: [space, 2020s] +# slug: rosalind-franklin-rover +--- +**Source:** [Wikipedia](https://en.wikipedia.org/wiki/Rosalind_Franklin_(rover)) + +The Rosalind Franklin rover is a planned robotic Mars rover, part of the ExoMars mission led by the European Space Agency and the Russian space agency Roscosmos. The mission is scheduled to launch in September 2022, and the rover is expected to land on Mars in June 2023. The rover is named after the British biophysicist Rosalind Franklin, who made key contributions to the discovery of the structure of DNA. diff --git a/packages/astro/test/fixtures/content-layer/src/data/cats.json b/packages/astro/test/fixtures/content-layer/src/data/cats.json new file mode 100644 index 0000000000..cf44e70b73 --- /dev/null +++ b/packages/astro/test/fixtures/content-layer/src/data/cats.json @@ -0,0 +1,51 @@ +[ + { + "breed": "Siamese", + "id": "siamese", + "size": "Medium", + "origin": "Thailand", + "lifespan": "15 years", + "temperament": [ + "Active", + "Affectionate", + "Social", + "Playful" + ] + }, + { + "breed": "Persian", + "id": "persian", + "size": "Medium", + "origin": "Iran", + "lifespan": "15 years", + "temperament": [ + "Calm", + "Affectionate", + "Social" + ] + }, + { + "breed": "Tabby", + "id": "tabby", + "size": "Medium", + "origin": "Egypt", + "lifespan": "15 years", + "temperament": [ + "Curious", + "Playful", + "Independent" + ] + }, + { + "breed": "Ragdoll", + "id": "ragdoll", + "size": "Medium", + "origin": "United States", + "lifespan": "15 years", + "temperament": [ + "Calm", + "Affectionate", + "Social" + ] + } +] diff --git a/packages/astro/test/fixtures/content-layer/src/pages/collections.json.js b/packages/astro/test/fixtures/content-layer/src/pages/collections.json.js index 968dfc24d3..3fa3543e6e 100644 --- a/packages/astro/test/fixtures/content-layer/src/pages/collections.json.js +++ b/packages/astro/test/fixtures/content-layer/src/pages/collections.json.js @@ -15,6 +15,8 @@ export async function GET() { const atlantis = await getEntry('spacecraft', 'atlantis'); const referencedEntry = await getEntry(entryWithReference.data.cat); + const spacecraft = await getCollection('spacecraft'); + const entryWithImagePath = await getEntry('spacecraft', 'lunar-module'); const increment = await getEntry('increment', 'value'); @@ -50,7 +52,8 @@ export async function GET() { yamlLoader, tomlLoader, nestedJsonLoader, - atlantis + atlantis, + spacecraft: spacecraft.map(({id}) => id).sort((a, b) => a.localeCompare(b)), }) ); } diff --git a/packages/astro/test/fixtures/content-layer/src/pages/missing.astro b/packages/astro/test/fixtures/content-layer/src/pages/missing.astro index 6fee7db07b..f0e65d1bcb 100644 --- a/packages/astro/test/fixtures/content-layer/src/pages/missing.astro +++ b/packages/astro/test/fixtures/content-layer/src/pages/missing.astro @@ -1,7 +1,7 @@ --- import { getEntry, render } from "astro:content" // Skipping the broken page in production so the build doesn't fail -if(import.meta.env.PROD) { +if(import.meta.env.PROD || import.meta.env.MODE === "production") { return new Response(null, { status: 404 }) } diff --git a/packages/astro/test/fixtures/content-layer/src/pages/spacecraft/index.astro b/packages/astro/test/fixtures/content-layer/src/pages/spacecraft/index.astro new file mode 100644 index 0000000000..38bbb08f7f --- /dev/null +++ b/packages/astro/test/fixtures/content-layer/src/pages/spacecraft/index.astro @@ -0,0 +1,17 @@ +--- +import { getCollection } from "astro:content"; +const collection = await getCollection("spacecraft"); +--- + + + Spacecraft + + +

Spacecraft

+ + + diff --git a/packages/astro/test/fixtures/css-dangling-references/package.json b/packages/astro/test/fixtures/css-dangling-references/package.json index e4ecc83be0..24bc8f53a7 100644 --- a/packages/astro/test/fixtures/css-dangling-references/package.json +++ b/packages/astro/test/fixtures/css-dangling-references/package.json @@ -5,6 +5,6 @@ "dependencies": { "@astrojs/svelte": "workspace:*", "astro": "workspace:*", - "svelte": "^5.2.9" + "svelte": "^5.17.3" } } \ No newline at end of file diff --git a/packages/astro/test/fixtures/custom-404-locals/astro.config.mjs b/packages/astro/test/fixtures/custom-404-locals/astro.config.mjs new file mode 100644 index 0000000000..8e5335b3d5 --- /dev/null +++ b/packages/astro/test/fixtures/custom-404-locals/astro.config.mjs @@ -0,0 +1,19 @@ +import { defineConfig } from 'astro/config'; + +// https://astro.build/config +export default defineConfig({ + integrations: [{ + name: 'locals-integration', + hooks: { + 'astro:server:setup': ({ server }) => { + server.middlewares.use(async function middleware(req, res, next) { + const clientLocalsSymbol = Symbol.for('astro.locals'); + Reflect.set(req, clientLocalsSymbol, { + runtime: 'locals' + }); + next(); + }); + }, + }, + }] +}); diff --git a/packages/astro/test/fixtures/custom-404-locals/package.json b/packages/astro/test/fixtures/custom-404-locals/package.json new file mode 100644 index 0000000000..6fe4651b3a --- /dev/null +++ b/packages/astro/test/fixtures/custom-404-locals/package.json @@ -0,0 +1,8 @@ +{ + "name": "@test/custom-404-locals", + "version": "0.0.0", + "private": true, + "dependencies": { + "astro": "workspace:*" + } +} diff --git a/packages/astro/test/fixtures/custom-404-locals/src/pages/404-return.astro b/packages/astro/test/fixtures/custom-404-locals/src/pages/404-return.astro new file mode 100644 index 0000000000..85c7644717 --- /dev/null +++ b/packages/astro/test/fixtures/custom-404-locals/src/pages/404-return.astro @@ -0,0 +1,5 @@ +--- +return new Response(null, { status: 404 }); +--- + +I should never load \ No newline at end of file diff --git a/packages/astro/test/fixtures/custom-404-locals/src/pages/404.astro b/packages/astro/test/fixtures/custom-404-locals/src/pages/404.astro new file mode 100644 index 0000000000..867ca600c9 --- /dev/null +++ b/packages/astro/test/fixtures/custom-404-locals/src/pages/404.astro @@ -0,0 +1,13 @@ +--- +const runtime = Astro.locals.runtime +--- + + + Not Found - Custom 404 + + +

Page not found

+

This 404 is a dynamic HTML file.

+

{runtime}

+ + \ No newline at end of file diff --git a/packages/astro/test/fixtures/custom-404-locals/src/pages/index.astro b/packages/astro/test/fixtures/custom-404-locals/src/pages/index.astro new file mode 100644 index 0000000000..cf5ef9b586 --- /dev/null +++ b/packages/astro/test/fixtures/custom-404-locals/src/pages/index.astro @@ -0,0 +1,11 @@ +--- +--- + + + + Custom 404 + + +

Home

+ + diff --git a/packages/astro/test/fixtures/custom-assets-name/package.json b/packages/astro/test/fixtures/custom-assets-name/package.json index 7a5bfbdec3..f045052561 100644 --- a/packages/astro/test/fixtures/custom-assets-name/package.json +++ b/packages/astro/test/fixtures/custom-assets-name/package.json @@ -4,6 +4,6 @@ "private": true, "dependencies": { "astro": "workspace:*", - "@astrojs/node": "^8.3.4" + "@astrojs/node": "^9.0.0" } } diff --git a/packages/astro/test/fixtures/entry-file-names/package.json b/packages/astro/test/fixtures/entry-file-names/package.json index dbb20e4123..370b7b0724 100644 --- a/packages/astro/test/fixtures/entry-file-names/package.json +++ b/packages/astro/test/fixtures/entry-file-names/package.json @@ -5,6 +5,6 @@ "dependencies": { "@astrojs/preact": "workspace:", "astro": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/astro/test/fixtures/fetch/package.json b/packages/astro/test/fixtures/fetch/package.json index 1189cebc3a..b70d214f4f 100644 --- a/packages/astro/test/fixtures/fetch/package.json +++ b/packages/astro/test/fixtures/fetch/package.json @@ -7,8 +7,8 @@ "@astrojs/svelte": "workspace:*", "@astrojs/vue": "workspace:*", "astro": "workspace:*", - "preact": "^10.25.0", - "svelte": "^5.2.9", + "preact": "^10.25.4", + "svelte": "^5.17.3", "vue": "^3.5.13" } } diff --git a/packages/astro/test/fixtures/fontsource-package/package.json b/packages/astro/test/fixtures/fontsource-package/package.json index 2c1c417341..5f3daf4039 100644 --- a/packages/astro/test/fixtures/fontsource-package/package.json +++ b/packages/astro/test/fixtures/fontsource-package/package.json @@ -3,8 +3,8 @@ "version": "0.0.0", "private": true, "dependencies": { - "@fontsource/monofett": "5.1.0", - "@fontsource/montserrat": "5.1.0", + "@fontsource/monofett": "5.1.1", + "@fontsource/montserrat": "5.1.1", "astro": "workspace:*" } } diff --git a/packages/astro/test/fixtures/hoisted-imports/astro.config.js b/packages/astro/test/fixtures/hoisted-imports/astro.config.mjs similarity index 100% rename from packages/astro/test/fixtures/hoisted-imports/astro.config.js rename to packages/astro/test/fixtures/hoisted-imports/astro.config.mjs diff --git a/packages/astro/test/fixtures/hydration-race/package.json b/packages/astro/test/fixtures/hydration-race/package.json index 2a55441d61..f90e31191c 100644 --- a/packages/astro/test/fixtures/hydration-race/package.json +++ b/packages/astro/test/fixtures/hydration-race/package.json @@ -9,6 +9,6 @@ "dependencies": { "@astrojs/preact": "workspace:*", "astro": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/astro/test/fixtures/i18n-routing-fallback/src/pages/index.astro b/packages/astro/test/fixtures/i18n-routing-fallback/src/pages/index.astro index 34b39fcd67..c2965ac812 100644 --- a/packages/astro/test/fixtures/i18n-routing-fallback/src/pages/index.astro +++ b/packages/astro/test/fixtures/i18n-routing-fallback/src/pages/index.astro @@ -1,3 +1,6 @@ +--- +const locale = Astro.currentLocale +--- Astro @@ -7,6 +10,10 @@ Hello +

+ + locale - {locale} +

diff --git a/packages/astro/test/fixtures/jsx/package.json b/packages/astro/test/fixtures/jsx/package.json index d6051421d0..8071b6125b 100644 --- a/packages/astro/test/fixtures/jsx/package.json +++ b/packages/astro/test/fixtures/jsx/package.json @@ -12,11 +12,11 @@ "astro": "workspace:*" }, "dependencies": { - "preact": "^10.25.0", + "preact": "^10.25.4", "react": "^18.3.1", "react-dom": "^18.3.1", - "solid-js": "^1.9.3", - "svelte": "^5.2.9", + "solid-js": "^1.9.4", + "svelte": "^5.17.3", "vue": "^3.5.13" } } diff --git a/packages/astro/test/fixtures/large-array/package.json b/packages/astro/test/fixtures/large-array/package.json index bb8972194c..2680bf914a 100644 --- a/packages/astro/test/fixtures/large-array/package.json +++ b/packages/astro/test/fixtures/large-array/package.json @@ -5,6 +5,6 @@ "dependencies": { "@astrojs/solid-js": "workspace:*", "astro": "workspace:*", - "solid-js": "^1.9.3" + "solid-js": "^1.9.4" } } diff --git a/packages/astro/test/fixtures/legacy-content-collections/src/pages/collections.json.js b/packages/astro/test/fixtures/legacy-content-collections/src/pages/collections.json.js index 67bafdb93e..16350c5ad3 100644 --- a/packages/astro/test/fixtures/legacy-content-collections/src/pages/collections.json.js +++ b/packages/astro/test/fixtures/legacy-content-collections/src/pages/collections.json.js @@ -9,8 +9,17 @@ export async function GET() { const withUnionSchema = stripAllRenderFn(await getCollection('with-union-schema')); const withSymlinkedContent = stripAllRenderFn(await getCollection('with-symlinked-content')); const withSymlinkedData = stripAllRenderFn(await getCollection('with-symlinked-data')); + const filtered = stripAllRenderFn(await getCollection('without-config', (entry) => entry.slug)); return new Response( - devalue.stringify({ withoutConfig, withSchemaConfig, withSlugConfig, withUnionSchema, withSymlinkedContent, withSymlinkedData }), + devalue.stringify({ + withoutConfig, + withSchemaConfig, + withSlugConfig, + withUnionSchema, + withSymlinkedContent, + withSymlinkedData, + filtered, + }), ); } diff --git a/packages/astro/test/fixtures/middleware-full-ssr/src/error.js b/packages/astro/test/fixtures/middleware-full-ssr/src/error.js index 6eed03a82c..711404e780 100644 --- a/packages/astro/test/fixtures/middleware-full-ssr/src/error.js +++ b/packages/astro/test/fixtures/middleware-full-ssr/src/error.js @@ -1 +1 @@ -throw new Error("Shoud not error at build time") +throw new Error("Should not error at build time") diff --git a/packages/astro/test/fixtures/postcss/package.json b/packages/astro/test/fixtures/postcss/package.json index c104422c23..52a4201c7b 100644 --- a/packages/astro/test/fixtures/postcss/package.json +++ b/packages/astro/test/fixtures/postcss/package.json @@ -9,11 +9,11 @@ "astro": "workspace:*", "autoprefixer": "^10.4.20", "postcss": "^8.4.49", - "solid-js": "^1.9.3", - "svelte": "^5.2.9", + "solid-js": "^1.9.4", + "svelte": "^5.17.3", "vue": "^3.5.13" }, "devDependencies": { - "postcss-preset-env": "^10.1.1" + "postcss-preset-env": "^10.1.3" } } diff --git a/packages/astro/test/fixtures/preact-compat-component/package.json b/packages/astro/test/fixtures/preact-compat-component/package.json index e09aa89e77..a0810945e7 100644 --- a/packages/astro/test/fixtures/preact-compat-component/package.json +++ b/packages/astro/test/fixtures/preact-compat-component/package.json @@ -6,6 +6,6 @@ "@astrojs/preact": "workspace:*", "@test/react-lib": "workspace:*", "astro": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/astro/test/fixtures/preact-component/package.json b/packages/astro/test/fixtures/preact-component/package.json index 377cb63b7e..798131eb4c 100644 --- a/packages/astro/test/fixtures/preact-component/package.json +++ b/packages/astro/test/fixtures/preact-component/package.json @@ -4,8 +4,8 @@ "private": true, "dependencies": { "@astrojs/preact": "workspace:*", - "@preact/signals": "1.3.0", + "@preact/signals": "2.0.1", "astro": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/astro/test/fixtures/react-and-solid/package.json b/packages/astro/test/fixtures/react-and-solid/package.json index aa436e4b6e..ce939bce3f 100644 --- a/packages/astro/test/fixtures/react-and-solid/package.json +++ b/packages/astro/test/fixtures/react-and-solid/package.json @@ -7,6 +7,6 @@ "astro": "workspace:*", "react": "^18.3.1", "react-dom": "^18.3.1", - "solid-js": "^1.9.3" + "solid-js": "^1.9.4" } } diff --git a/packages/astro/test/fixtures/reexport-astro-containing-client-component/package.json b/packages/astro/test/fixtures/reexport-astro-containing-client-component/package.json index 8c6a3152be..eb510949e6 100644 --- a/packages/astro/test/fixtures/reexport-astro-containing-client-component/package.json +++ b/packages/astro/test/fixtures/reexport-astro-containing-client-component/package.json @@ -4,6 +4,6 @@ "dependencies": { "@astrojs/preact": "workspace:", "astro": "workspace:", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/astro/test/fixtures/rewrite-runtime-error-custom500/package.json b/packages/astro/test/fixtures/rewrite-runtime-error-custom500/package.json index 6d844adc4e..20f535354b 100644 --- a/packages/astro/test/fixtures/rewrite-runtime-error-custom500/package.json +++ b/packages/astro/test/fixtures/rewrite-runtime-error-custom500/package.json @@ -1,5 +1,5 @@ { - "name": "@test/rewrite-runtime-errror-custom500", + "name": "@test/rewrite-runtime-error-custom500", "version": "0.0.0", "private": true, "dependencies": { diff --git a/packages/astro/test/fixtures/rewrite-runtime-error/package.json b/packages/astro/test/fixtures/rewrite-runtime-error/package.json index af8c42709f..e371b302c8 100644 --- a/packages/astro/test/fixtures/rewrite-runtime-error/package.json +++ b/packages/astro/test/fixtures/rewrite-runtime-error/package.json @@ -1,5 +1,5 @@ { - "name": "@test/rewrite-runtime-errror", + "name": "@test/rewrite-runtime-error", "version": "0.0.0", "private": true, "dependencies": { diff --git a/packages/astro/test/fixtures/routing-priority/src/pages/empty-paths/[...slug].astro b/packages/astro/test/fixtures/routing-priority/src/pages/empty-paths/[...slug].astro new file mode 100644 index 0000000000..67130d51e8 --- /dev/null +++ b/packages/astro/test/fixtures/routing-priority/src/pages/empty-paths/[...slug].astro @@ -0,0 +1,18 @@ +--- +export function getStaticPaths() { + return [] +} +const { slug } = Astro.params +--- + + + + + + {slug} + + +

empty-paths/[...slug].astro

+

slug: {slug}

+ + diff --git a/packages/astro/test/fixtures/server-islands/hybrid/package.json b/packages/astro/test/fixtures/server-islands/hybrid/package.json index c68cb6d96a..75c476b1dc 100644 --- a/packages/astro/test/fixtures/server-islands/hybrid/package.json +++ b/packages/astro/test/fixtures/server-islands/hybrid/package.json @@ -5,6 +5,6 @@ "dependencies": { "@astrojs/svelte": "workspace:*", "astro": "workspace:*", - "svelte": "^5.2.9" + "svelte": "^5.17.3" } } diff --git a/packages/astro/test/fixtures/server-islands/ssr/package.json b/packages/astro/test/fixtures/server-islands/ssr/package.json index ace5daf9fc..dab3a77e38 100644 --- a/packages/astro/test/fixtures/server-islands/ssr/package.json +++ b/packages/astro/test/fixtures/server-islands/ssr/package.json @@ -5,6 +5,6 @@ "dependencies": { "@astrojs/svelte": "workspace:*", "astro": "workspace:*", - "svelte": "^5.2.9" + "svelte": "^5.17.3" } } diff --git a/packages/astro/test/fixtures/server-islands/ssr/src/components/ComponentWithProps.astro b/packages/astro/test/fixtures/server-islands/ssr/src/components/ComponentWithProps.astro new file mode 100644 index 0000000000..b1eeff5446 --- /dev/null +++ b/packages/astro/test/fixtures/server-islands/ssr/src/components/ComponentWithProps.astro @@ -0,0 +1,11 @@ +--- +await new Promise(resolve => setTimeout(resolve, 1)); +Astro.response.headers.set('X-Works', 'true'); +export type Props = { + greeting?: string; +}; +const greeting = Astro.props?.greeting ? Astro.props.greeting : 'default greeting'; +--- +
+
{greeting}
+
diff --git a/packages/astro/test/fixtures/server-islands/ssr/src/pages/includeComponentWithProps.astro b/packages/astro/test/fixtures/server-islands/ssr/src/pages/includeComponentWithProps.astro new file mode 100644 index 0000000000..614f7f8b86 --- /dev/null +++ b/packages/astro/test/fixtures/server-islands/ssr/src/pages/includeComponentWithProps.astro @@ -0,0 +1,11 @@ +--- +import ComponentWithProps from '../components/ComponentWithProps.astro'; +--- + + + Testing + + + + + diff --git a/packages/astro/test/fixtures/sessions/package.json b/packages/astro/test/fixtures/sessions/package.json index 453f09a96d..9e73d9e21f 100644 --- a/packages/astro/test/fixtures/sessions/package.json +++ b/packages/astro/test/fixtures/sessions/package.json @@ -3,6 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { + "@netlify/blobs": "^8.1.0", "astro": "workspace:*" } } diff --git a/packages/astro/test/fixtures/sessions/src/actions/index.ts b/packages/astro/test/fixtures/sessions/src/actions/index.ts index 33ac1cb653..856f68ba8f 100644 --- a/packages/astro/test/fixtures/sessions/src/actions/index.ts +++ b/packages/astro/test/fixtures/sessions/src/actions/index.ts @@ -21,7 +21,16 @@ export const server = { accept: 'json', handler: async (input, context) => { await context.session.set('cart', []); - return {cart: [], message: 'Cart cleared at ' + new Date().toTimeString() }; + return { cart: [], message: 'Cart cleared at ' + new Date().toTimeString() }; }, }), -}; + addUrl: defineAction({ + input: z.object({ favoriteUrl: z.string().url() }), + handler: async (input, context) => { + const previousFavoriteUrl = await context.session.get('favoriteUrl'); + const url = new URL(input.favoriteUrl); + context.session.set('favoriteUrl', url); + return { message: 'Favorite URL set to ' + url.href + ' from ' + (previousFavoriteUrl?.href ?? "nothing") }; + } + }) +} diff --git a/packages/astro/test/fixtures/sessions/src/pages/update.ts b/packages/astro/test/fixtures/sessions/src/pages/update.ts new file mode 100644 index 0000000000..71b058e753 --- /dev/null +++ b/packages/astro/test/fixtures/sessions/src/pages/update.ts @@ -0,0 +1,10 @@ +import type { APIRoute } from 'astro'; + +export const GET: APIRoute = async (context) => { + const previousObject = await context.session.get("key") ?? { value: "none" }; + const previousValue = previousObject.value; + const sessionData = { value: "expected" }; + context.session.set("key", sessionData); + sessionData.value = "unexpected"; + return Response.json({previousValue}); +}; diff --git a/packages/astro/test/fixtures/slots-preact/package.json b/packages/astro/test/fixtures/slots-preact/package.json index 1a6b8f20be..483f971b44 100644 --- a/packages/astro/test/fixtures/slots-preact/package.json +++ b/packages/astro/test/fixtures/slots-preact/package.json @@ -6,6 +6,6 @@ "@astrojs/mdx": "workspace:*", "@astrojs/preact": "workspace:*", "astro": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/astro/test/fixtures/slots-solid/package.json b/packages/astro/test/fixtures/slots-solid/package.json index 05897028c1..de2afefa42 100644 --- a/packages/astro/test/fixtures/slots-solid/package.json +++ b/packages/astro/test/fixtures/slots-solid/package.json @@ -6,6 +6,6 @@ "@astrojs/mdx": "workspace:*", "@astrojs/solid-js": "workspace:*", "astro": "workspace:*", - "solid-js": "^1.9.3" + "solid-js": "^1.9.4" } } diff --git a/packages/astro/test/fixtures/slots-svelte/package.json b/packages/astro/test/fixtures/slots-svelte/package.json index a589e09e78..244a92f2e9 100644 --- a/packages/astro/test/fixtures/slots-svelte/package.json +++ b/packages/astro/test/fixtures/slots-svelte/package.json @@ -6,6 +6,6 @@ "@astrojs/mdx": "workspace:*", "@astrojs/svelte": "workspace:*", "astro": "workspace:*", - "svelte": "^5.2.9" + "svelte": "^5.17.3" } } diff --git a/packages/astro/test/fixtures/solid-component/deps/solid-jsx-component/package.json b/packages/astro/test/fixtures/solid-component/deps/solid-jsx-component/package.json index 3513e3dd92..a8f5285ba6 100644 --- a/packages/astro/test/fixtures/solid-component/deps/solid-jsx-component/package.json +++ b/packages/astro/test/fixtures/solid-component/deps/solid-jsx-component/package.json @@ -10,6 +10,6 @@ } }, "dependencies": { - "solid-js": "^1.9.3" + "solid-js": "^1.9.4" } } diff --git a/packages/astro/test/fixtures/solid-component/package.json b/packages/astro/test/fixtures/solid-component/package.json index 85b84749d9..a7b8ea6ffd 100644 --- a/packages/astro/test/fixtures/solid-component/package.json +++ b/packages/astro/test/fixtures/solid-component/package.json @@ -4,9 +4,9 @@ "private": true, "dependencies": { "@astrojs/solid-js": "workspace:*", - "@solidjs/router": "^0.15.1", + "@solidjs/router": "^0.15.2", "@test/solid-jsx-component": "file:./deps/solid-jsx-component", "astro": "workspace:*", - "solid-js": "^1.9.3" + "solid-js": "^1.9.4" } } diff --git a/packages/astro/test/fixtures/ssr-api-route/package.json b/packages/astro/test/fixtures/ssr-api-route/package.json index 46c1ae3140..1a0442c56c 100644 --- a/packages/astro/test/fixtures/ssr-api-route/package.json +++ b/packages/astro/test/fixtures/ssr-api-route/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "@astrojs/node": "^8.3.4", + "@astrojs/node": "^9.0.0", "astro": "workspace:*" } } diff --git a/packages/astro/test/fixtures/ssr-api-route/src/pages/fail.js b/packages/astro/test/fixtures/ssr-api-route/src/pages/fail.js index f9852dd937..529a906a8a 100644 --- a/packages/astro/test/fixtures/ssr-api-route/src/pages/fail.js +++ b/packages/astro/test/fixtures/ssr-api-route/src/pages/fail.js @@ -1,3 +1,3 @@ export async function GET({ request }) { - return fetch("https://http.im/status/500", request) + return fetch("https://httpstat.us/500", request) } diff --git a/packages/astro/test/fixtures/ssr-env/package.json b/packages/astro/test/fixtures/ssr-env/package.json index 227ca6f74d..57d16f9084 100644 --- a/packages/astro/test/fixtures/ssr-env/package.json +++ b/packages/astro/test/fixtures/ssr-env/package.json @@ -5,6 +5,6 @@ "dependencies": { "@astrojs/preact": "workspace:*", "astro": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/astro/test/fixtures/ssr-params/src/pages/[category].astro b/packages/astro/test/fixtures/ssr-params/src/pages/[category].astro index 2e2ca3a82d..07e3150f53 100644 --- a/packages/astro/test/fixtures/ssr-params/src/pages/[category].astro +++ b/packages/astro/test/fixtures/ssr-params/src/pages/[category].astro @@ -5,6 +5,7 @@ export function getStaticPaths() { { params: { category: "%23something" } }, { params: { category: "%2Fsomething" } }, { params: { category: "%3Fsomething" } }, + { params: { category: "%25something" } }, { params: { category: "[page]" } }, { params: { category: "你好" } }, ] diff --git a/packages/astro/test/fixtures/ssr-params/src/pages/東西/[category].astro b/packages/astro/test/fixtures/ssr-params/src/pages/東西/[group].astro similarity index 57% rename from packages/astro/test/fixtures/ssr-params/src/pages/東西/[category].astro rename to packages/astro/test/fixtures/ssr-params/src/pages/東西/[group].astro index 8aaf4de24b..9cc3142e6f 100644 --- a/packages/astro/test/fixtures/ssr-params/src/pages/東西/[category].astro +++ b/packages/astro/test/fixtures/ssr-params/src/pages/東西/[group].astro @@ -1,10 +1,10 @@ --- export function getStaticPaths() { return [ - { params: { category: "food" } }, + { params: { group: "food" } }, ] } -const { category } = Astro.params +const { group } = Astro.params --- @@ -12,6 +12,6 @@ const { category } = Astro.params

Testing

-

{ category }

+

{ group }

diff --git a/packages/astro/test/fixtures/ssr-prerender-chunks/package.json b/packages/astro/test/fixtures/ssr-prerender-chunks/package.json index dc4d658135..ce3ab769d3 100644 --- a/packages/astro/test/fixtures/ssr-prerender-chunks/package.json +++ b/packages/astro/test/fixtures/ssr-prerender-chunks/package.json @@ -5,8 +5,8 @@ "dependencies": { "@astrojs/react": "workspace:*", "@test/ssr-prerender-chunks-test-adapter": "link:./deps/test-adapter", - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", + "@types/react": "^18.3.18", + "@types/react-dom": "^18.3.5", "astro": "workspace:*", "react": "^18.3.1", "react-dom": "^18.3.1" diff --git a/packages/astro/test/fixtures/ssr-scripts/package.json b/packages/astro/test/fixtures/ssr-scripts/package.json index e00c69958f..c44589e3c9 100644 --- a/packages/astro/test/fixtures/ssr-scripts/package.json +++ b/packages/astro/test/fixtures/ssr-scripts/package.json @@ -5,6 +5,6 @@ "dependencies": { "@astrojs/preact": "workspace:", "astro": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/astro/test/fixtures/static-build-frameworks/package.json b/packages/astro/test/fixtures/static-build-frameworks/package.json index 8b4bea64a9..e10d86d7a8 100644 --- a/packages/astro/test/fixtures/static-build-frameworks/package.json +++ b/packages/astro/test/fixtures/static-build-frameworks/package.json @@ -6,7 +6,7 @@ "@astrojs/preact": "workspace:*", "@astrojs/react": "workspace:*", "astro": "workspace:*", - "preact": "^10.25.0", + "preact": "^10.25.4", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/packages/astro/test/fixtures/static-build-ssr/package.json b/packages/astro/test/fixtures/static-build-ssr/package.json index 2848e3983b..cb51f3472f 100644 --- a/packages/astro/test/fixtures/static-build-ssr/package.json +++ b/packages/astro/test/fixtures/static-build-ssr/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "private": true, "dependencies": { - "@astrojs/node": "^8.3.4", + "@astrojs/node": "^9.0.0", "@test/static-build-pkg": "workspace:*", "astro": "workspace:*" } diff --git a/packages/astro/test/fixtures/static-build/package.json b/packages/astro/test/fixtures/static-build/package.json index 99d155f9cd..c9a4bf47fd 100644 --- a/packages/astro/test/fixtures/static-build/package.json +++ b/packages/astro/test/fixtures/static-build/package.json @@ -6,6 +6,6 @@ "@astrojs/preact": "workspace:*", "@test/static-build-pkg": "workspace:*", "astro": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/astro/test/fixtures/svelte-component/package.json b/packages/astro/test/fixtures/svelte-component/package.json index 2cddde9a90..2713bdbf53 100644 --- a/packages/astro/test/fixtures/svelte-component/package.json +++ b/packages/astro/test/fixtures/svelte-component/package.json @@ -5,6 +5,6 @@ "dependencies": { "@astrojs/svelte": "workspace:*", "astro": "workspace:*", - "svelte": "^5.2.9" + "svelte": "^5.17.3" } } diff --git a/packages/astro/test/fixtures/tailwindcss-ts/package.json b/packages/astro/test/fixtures/tailwindcss-ts/package.json index cc27e16dc4..68052c9b52 100644 --- a/packages/astro/test/fixtures/tailwindcss-ts/package.json +++ b/packages/astro/test/fixtures/tailwindcss-ts/package.json @@ -6,6 +6,6 @@ "@astrojs/tailwind": "workspace:*", "astro": "workspace:*", "postcss": "^8.4.49", - "tailwindcss": "^3.4.15" + "tailwindcss": "^3.4.17" } } diff --git a/packages/astro/test/fixtures/tailwindcss/package.json b/packages/astro/test/fixtures/tailwindcss/package.json index fb19d2c5db..68c2724296 100644 --- a/packages/astro/test/fixtures/tailwindcss/package.json +++ b/packages/astro/test/fixtures/tailwindcss/package.json @@ -8,6 +8,6 @@ "astro": "workspace:*", "autoprefixer": "^10.4.20", "postcss": "^8.4.49", - "tailwindcss": "^3.4.14" + "tailwindcss": "^3.4.17" } } diff --git a/packages/astro/test/fixtures/virtual-routes/astro.config.js b/packages/astro/test/fixtures/virtual-routes/astro.config.mjs similarity index 100% rename from packages/astro/test/fixtures/virtual-routes/astro.config.js rename to packages/astro/test/fixtures/virtual-routes/astro.config.mjs diff --git a/packages/astro/test/fixtures/vitest/package.json b/packages/astro/test/fixtures/vitest/package.json index ee32c2b331..471f7f7628 100644 --- a/packages/astro/test/fixtures/vitest/package.json +++ b/packages/astro/test/fixtures/vitest/package.json @@ -8,6 +8,6 @@ }, "dependencies": { "astro": "workspace:*", - "vitest": "^2.1.6" + "vitest": "^3.0.0-beta.4" } } diff --git a/packages/astro/test/fixtures/vue-with-multi-renderer/package.json b/packages/astro/test/fixtures/vue-with-multi-renderer/package.json index ef8de89578..f55016e40d 100644 --- a/packages/astro/test/fixtures/vue-with-multi-renderer/package.json +++ b/packages/astro/test/fixtures/vue-with-multi-renderer/package.json @@ -6,7 +6,7 @@ "@astrojs/svelte": "workspace:*", "@astrojs/vue": "workspace:*", "astro": "workspace:*", - "svelte": "^5.2.9", + "svelte": "^5.17.3", "vue": "^3.5.13" } } diff --git a/packages/astro/test/i18n-routing.test.js b/packages/astro/test/i18n-routing.test.js index 27491069d3..dc338c7db0 100644 --- a/packages/astro/test/i18n-routing.test.js +++ b/packages/astro/test/i18n-routing.test.js @@ -152,11 +152,22 @@ describe('[DEV] i18n routing', () => { it("should NOT render the default locale if there isn't a fallback and the route is missing", async () => { const response = await fixture.fetch('/it/start'); assert.equal(response.status, 404); + const html = await response.text(); + assert.match(html, /Can't find the page you're looking for./); }); it("should render a 404 because the route `fr` isn't included in the list of locales of the configuration", async () => { const response = await fixture.fetch('/fr/start'); assert.equal(response.status, 404); + const html = await response.text(); + assert.match(html, /Can't find the page you're looking for./); + }); + + it('should render the custom 404.astro when navigating non-existing routes ', async () => { + const response = await fixture.fetch('/does-not-exist'); + assert.equal(response.status, 404); + const html = await response.text(); + assert.match(html, /Can't find the page you're looking for./); }); }); @@ -2003,13 +2014,13 @@ describe('Fallback rewrite dev server', () => { locales: ['en', 'fr', 'es', 'it', 'pt'], routing: { prefixDefaultLocale: false, + fallbackType: 'rewrite', }, fallback: { fr: 'en', it: 'en', es: 'pt', }, - fallbackType: 'rewrite', }, }); devServer = await fixture.startDevServer(); @@ -2021,6 +2032,7 @@ describe('Fallback rewrite dev server', () => { it('should correctly rewrite to en', async () => { const html = await fixture.fetch('/fr').then((res) => res.text()); assert.match(html, /Hello/); + assert.match(html, /locale - fr/); // assert.fail() }); @@ -2074,6 +2086,7 @@ describe('Fallback rewrite SSG', () => { it('should correctly rewrite to en', async () => { const html = await fixture.readFile('/fr/index.html'); assert.match(html, /Hello/); + assert.match(html, /locale - fr/); // assert.fail() }); @@ -2127,6 +2140,7 @@ describe('Fallback rewrite SSR', () => { const response = await app.render(request); assert.equal(response.status, 200); const html = await response.text(); + assert.match(html, /locale - fr/); assert.match(html, /Hello/); }); diff --git a/packages/astro/test/legacy-content-collections.test.js b/packages/astro/test/legacy-content-collections.test.js index 613d76e1ec..e4327ceb3d 100644 --- a/packages/astro/test/legacy-content-collections.test.js +++ b/packages/astro/test/legacy-content-collections.test.js @@ -55,6 +55,12 @@ describe('Legacy Content Collections', () => { ); }); + it('Passes legacy entry to filter function', async () => { + assert.ok(json.hasOwnProperty('filtered')); + assert.ok(Array.isArray(json.filtered)); + assert.ok(json.filtered.length > 0); + }); + it('Returns `with schema` collection', async () => { assert.ok(json.hasOwnProperty('withSchemaConfig')); assert.equal(Array.isArray(json.withSchemaConfig), true); diff --git a/packages/astro/test/params.test.js b/packages/astro/test/params.test.js index 7508b73528..60890637d3 100644 --- a/packages/astro/test/params.test.js +++ b/packages/astro/test/params.test.js @@ -148,4 +148,10 @@ describe('Astro.params in static mode', () => { const $ = cheerio.load(html); assert.equal($('.category').text(), '%3Fsomething'); }); + + it("It doesn't encode/decode URI characters such as %25 (%)", async () => { + const html = await fixture.readFile(encodeURI('/%25something/index.html')); + const $ = cheerio.load(html); + assert.equal($('.category').text(), '%25something'); + }); }); diff --git a/packages/astro/test/routing-priority.test.js b/packages/astro/test/routing-priority.test.js index d4203595d8..888c28d104 100644 --- a/packages/astro/test/routing-priority.test.js +++ b/packages/astro/test/routing-priority.test.js @@ -107,6 +107,11 @@ const routes = [ url: '/empty-slug/undefined', fourOhFour: true, }, + { + description: 'do not match /empty-paths/hello to empty-paths/[...slug].astro', + url: '/empty-paths/hello', + fourOhFour: true, + }, { description: 'matches /api/catch/a.json to api/catch/[...slug].json.ts', url: '/api/catch/a.json', diff --git a/packages/astro/test/server-islands.test.js b/packages/astro/test/server-islands.test.js index 913650a950..96b58354e2 100644 --- a/packages/astro/test/server-islands.test.js +++ b/packages/astro/test/server-islands.test.js @@ -37,6 +37,18 @@ describe('Server islands', () => { assert.equal(serverIslandEl.length, 0); }); + it('island is not indexed', async () => { + const res = await fixture.fetch('/_server-islands/Island', { + method: 'POST', + body: JSON.stringify({ + componentExport: 'default', + encryptedProps: 'FC8337AF072BE5B1641501E1r8mLIhmIME1AV7UO9XmW9OLD', + slots: {}, + }), + }); + assert.equal(res.headers.get('x-robots-tag'), 'noindex'); + }); + it('island can set headers', async () => { const res = await fixture.fetch('/_server-islands/Island', { method: 'POST', @@ -49,6 +61,36 @@ describe('Server islands', () => { const works = res.headers.get('X-Works'); assert.equal(works, 'true', 'able to set header from server island'); }); + it('omits empty props from the query string', async () => { + const res = await fixture.fetch('/'); + assert.equal(res.status, 200); + const html = await res.text(); + const fetchMatch = html.match(/fetch\('\/_server-islands\/Island\?[^']*p=([^&']*)/s); + assert.equal(fetchMatch.length, 2, 'should include props in the query string'); + assert.equal(fetchMatch[1], '', 'should not include encrypted empty props'); + }); + it('re-encrypts props on each request', async () => { + const res = await fixture.fetch('/includeComponentWithProps/'); + assert.equal(res.status, 200); + const html = await res.text(); + const fetchMatch = html.match( + /fetch\('\/_server-islands\/ComponentWithProps\?[^']*p=([^&']*)/s, + ); + assert.equal(fetchMatch.length, 2, 'should include props in the query string'); + const firstProps = fetchMatch[1]; + const secondRes = await fixture.fetch('/includeComponentWithProps/'); + assert.equal(secondRes.status, 200); + const secondHtml = await secondRes.text(); + const secondFetchMatch = secondHtml.match( + /fetch\('\/_server-islands\/ComponentWithProps\?[^']*p=([^&']*)/s, + ); + assert.equal(secondFetchMatch.length, 2, 'should include props in the query string'); + assert.notEqual( + secondFetchMatch[1], + firstProps, + 'should re-encrypt props on each request with a different IV', + ); + }); }); describe('prod', () => { @@ -74,6 +116,58 @@ describe('Server islands', () => { const serverIslandScript = $('script[data-island-id]'); assert.equal(serverIslandScript.length, 1, 'has the island script'); }); + + it('island is not indexed', async () => { + const app = await fixture.loadTestAdapterApp(); + const request = new Request('http://example.com/_server-islands/Island', { + method: 'POST', + body: JSON.stringify({ + componentExport: 'default', + encryptedProps: 'FC8337AF072BE5B1641501E1r8mLIhmIME1AV7UO9XmW9OLD', + slots: {}, + }), + headers: { + origin: 'http://example.com', + }, + }); + const response = await app.render(request); + assert.equal(response.headers.get('x-robots-tag'), 'noindex'); + }); + it('omits empty props from the query string', async () => { + const app = await fixture.loadTestAdapterApp(); + const request = new Request('http://example.com/'); + const response = await app.render(request); + assert.equal(response.status, 200); + const html = await response.text(); + const fetchMatch = html.match(/fetch\('\/_server-islands\/Island\?[^']*p=([^&']*)/s); + assert.equal(fetchMatch.length, 2, 'should include props in the query string'); + assert.equal(fetchMatch[1], '', 'should not include encrypted empty props'); + }); + it('re-encrypts props on each request', async () => { + const app = await fixture.loadTestAdapterApp(); + const request = new Request('http://example.com/includeComponentWithProps/'); + const response = await app.render(request); + assert.equal(response.status, 200); + const html = await response.text(); + const fetchMatch = html.match( + /fetch\('\/_server-islands\/ComponentWithProps\?[^']*p=([^&']*)/s, + ); + assert.equal(fetchMatch.length, 2, 'should include props in the query string'); + const firstProps = fetchMatch[1]; + const secondRequest = new Request('http://example.com/includeComponentWithProps/'); + const secondResponse = await app.render(secondRequest); + assert.equal(secondResponse.status, 200); + const secondHtml = await secondResponse.text(); + const secondFetchMatch = secondHtml.match( + /fetch\('\/_server-islands\/ComponentWithProps\?[^']*p=([^&']*)/s, + ); + assert.equal(secondFetchMatch.length, 2, 'should include props in the query string'); + assert.notEqual( + secondFetchMatch[1], + firstProps, + 'should re-encrypt props on each request with a different IV', + ); + }); }); }); diff --git a/packages/astro/test/sessions.test.js b/packages/astro/test/sessions.test.js new file mode 100644 index 0000000000..1dbc304bd2 --- /dev/null +++ b/packages/astro/test/sessions.test.js @@ -0,0 +1,95 @@ +import assert from 'node:assert/strict'; +import { before, describe, it } from 'node:test'; +import * as devalue from 'devalue'; +import testAdapter from './test-adapter.js'; +import { loadFixture } from './test-utils.js'; + +describe('Astro.session', () => { + /** @type {import('./test-utils').Fixture} */ + let fixture; + + before(async () => { + fixture = await loadFixture({ + root: './fixtures/sessions/', + output: 'server', + adapter: testAdapter(), + }); + }); + + describe('Production', () => { + let app; + before(async () => { + await fixture.build(); + app = await fixture.loadTestAdapterApp(); + }); + + async function fetchResponse(path, requestInit) { + const request = new Request('http://example.com' + path, requestInit); + const response = await app.render(request); + return response; + } + + it('can regenerate session cookies upon request', async () => { + const firstResponse = await fetchResponse('/regenerate', { method: 'GET' }); + const firstHeaders = Array.from(app.setCookieHeaders(firstResponse)); + const firstSessionId = firstHeaders[0].split(';')[0].split('=')[1]; + + const secondResponse = await fetchResponse('/regenerate', { + method: 'GET', + headers: { + cookie: `astro-session=${firstSessionId}`, + }, + }); + const secondHeaders = Array.from(app.setCookieHeaders(secondResponse)); + const secondSessionId = secondHeaders[0].split(';')[0].split('=')[1]; + assert.notEqual(firstSessionId, secondSessionId); + }); + + it('can save session data by value', async () => { + const firstResponse = await fetchResponse('/update', { method: 'GET' }); + const firstValue = await firstResponse.json(); + assert.equal(firstValue.previousValue, 'none'); + + const firstHeaders = Array.from(app.setCookieHeaders(firstResponse)); + const firstSessionId = firstHeaders[0].split(';')[0].split('=')[1]; + const secondResponse = await fetchResponse('/update', { + method: 'GET', + headers: { + cookie: `astro-session=${firstSessionId}`, + }, + }); + const secondValue = await secondResponse.json(); + assert.equal(secondValue.previousValue, 'expected'); + }); + + it('can save and restore URLs in session data', async () => { + const firstResponse = await fetchResponse('/_actions/addUrl', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ favoriteUrl: 'https://domain.invalid' }), + }); + + assert.equal(firstResponse.ok, true); + const firstHeaders = Array.from(app.setCookieHeaders(firstResponse)); + const firstSessionId = firstHeaders[0].split(';')[0].split('=')[1]; + + const data = devalue.parse(await firstResponse.text()); + assert.equal(data.message, 'Favorite URL set to https://domain.invalid/ from nothing'); + const secondResponse = await fetchResponse('/_actions/addUrl', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + cookie: `astro-session=${firstSessionId}`, + }, + body: JSON.stringify({ favoriteUrl: 'https://example.com' }), + }); + const secondData = devalue.parse(await secondResponse.text()); + assert.equal( + secondData.message, + 'Favorite URL set to https://example.com/ from https://domain.invalid/', + ); + }); + }); +}); diff --git a/packages/astro/test/ssr-api-route.test.js b/packages/astro/test/ssr-api-route.test.js index 8e9c1bb5ef..34dffba8ae 100644 --- a/packages/astro/test/ssr-api-route.test.js +++ b/packages/astro/test/ssr-api-route.test.js @@ -141,7 +141,7 @@ describe('API routes in SSR', () => { const response = await fixture.fetch('/fail'); const text = await response.text(); assert.equal(response.status, 500); - assert.equal(text, ''); + assert.equal(text, '500 Internal Server Error'); }); it('Has valid api context', async () => { diff --git a/packages/astro/test/ssr-assets.test.js b/packages/astro/test/ssr-assets.test.js index d11fc8673d..d56ad1686b 100644 --- a/packages/astro/test/ssr-assets.test.js +++ b/packages/astro/test/ssr-assets.test.js @@ -22,7 +22,7 @@ describe('SSR Assets', () => { const app = await fixture.loadTestAdapterApp(); /** @type {Set} */ const assets = app.manifest.assets; - assert.equal(assets.size, 2); + assert.equal(assets.size, 1); assert.equal(Array.from(assets)[0].endsWith('.css'), true); }); }); diff --git a/packages/astro/test/test-utils.js b/packages/astro/test/test-utils.js index f0bdf8542f..c33e43ca36 100644 --- a/packages/astro/test/test-utils.js +++ b/packages/astro/test/test-utils.js @@ -34,12 +34,12 @@ process.env.ASTRO_TELEMETRY_DISABLED = true; * @property {typeof build} build * @property {(url: string) => string} resolveUrl * @property {(path: string) => Promise} pathExists - * @property {(url: string, opts: Parameters[1]) => Promise} fetch + * @property {(url: string, opts?: Parameters[1]) => Promise} fetch * @property {(path: string) => Promise} readFile * @property {(path: string, updater: (content: string) => string) => Promise} editFile * @property {(path: string) => Promise} readdir * @property {(pattern: string) => Promise} glob - * @property {typeof dev} startDevServer + * @property {(inlineConfig?: Parameters[0]) => ReturnType} startDevServer * @property {typeof preview} preview * @property {() => Promise} clean * @property {() => Promise} loadTestAdapterApp @@ -181,6 +181,7 @@ export async function loadFixture(inlineConfig) { devServer = await dev(mergeConfig(inlineConfig, extraInlineConfig)); config.server.host = parseAddressToHost(devServer.address.address); // update host config.server.port = devServer.address.port; // update port + await new Promise((resolve) => setTimeout(resolve, 100)); return devServer; }, onNextDataStoreChange: (timeout = 5000) => { @@ -284,7 +285,7 @@ export async function loadFixture(inlineConfig) { app.manifest = manifest; return app; }, - editFile: async (filePath, newContentsOrCallback) => { + editFile: async (filePath, newContentsOrCallback, waitForNextWrite = true) => { const fileUrl = new URL(filePath.replace(/^\//, ''), config.root); const contents = await fs.promises.readFile(fileUrl, 'utf-8'); const reset = () => { @@ -299,7 +300,7 @@ export async function loadFixture(inlineConfig) { typeof newContentsOrCallback === 'function' ? newContentsOrCallback(contents) : newContentsOrCallback; - const nextChange = devServer ? onNextChange() : Promise.resolve(); + const nextChange = devServer && waitForNextWrite ? onNextChange() : Promise.resolve(); await fs.promises.writeFile(fileUrl, newContents); await nextChange; return reset; diff --git a/packages/astro/test/units/config/config-validate.test.js b/packages/astro/test/units/config/config-validate.test.js index 2ef08e4b6a..cfc52d8a9d 100644 --- a/packages/astro/test/units/config/config-validate.test.js +++ b/packages/astro/test/units/config/config-validate.test.js @@ -406,5 +406,25 @@ describe('Config Validation', () => { 'A valid variable name cannot start with a number.', ); }); + + it('Should provide a useful error for access/context invalid combinations', async () => { + const configError = await validateConfig( + { + env: { + schema: { + BAR: envField.string({ access: 'secret', context: 'client' }), + }, + }, + }, + process.cwd(), + ).catch((err) => err); + assert.equal(configError instanceof z.ZodError, true); + assert.equal( + configError.errors[0].message.includes( + '**Invalid combination** of "access" and "context" options', + ), + true, + ); + }); }); }); diff --git a/packages/astro/test/units/content-collections/get-entry-type.test.js b/packages/astro/test/units/content-collections/get-entry-type.test.js index 9d60c4c5c0..d8dcb459b8 100644 --- a/packages/astro/test/units/content-collections/get-entry-type.test.js +++ b/packages/astro/test/units/content-collections/get-entry-type.test.js @@ -12,6 +12,7 @@ const fixtures = [ exists: true, }, contentDir: new URL('src/content/', import.meta.url), + root: new URL('.', import.meta.url), }, }, { @@ -22,6 +23,7 @@ const fixtures = [ exists: true, }, contentDir: new URL('_src/content/', import.meta.url), + root: new URL('.', import.meta.url), }, }, ]; diff --git a/packages/astro/test/units/dev/collections-renderentry.test.js b/packages/astro/test/units/dev/collections-renderentry.test.js index c30c471b88..298c433b8b 100644 --- a/packages/astro/test/units/dev/collections-renderentry.test.js +++ b/packages/astro/test/units/dev/collections-renderentry.test.js @@ -101,7 +101,7 @@ describe('Content Collections - render()', () => { assert.equal($('ul li').length, 3); // Rendered the styles - assert.equal($('style').length, 2); + assert.equal($('style').length, 1); }, ); }); @@ -158,7 +158,7 @@ describe('Content Collections - render()', () => { assert.equal($('ul li').length, 3); // Rendered the styles - assert.equal($('style').length, 2); + assert.equal($('style').length, 1); }, ); }); @@ -225,7 +225,7 @@ describe('Content Collections - render()', () => { assert.equal($('ul li').length, 3); // Rendered the styles - assert.equal($('style').length, 2); + assert.equal($('style').length, 1); }, ); }); @@ -291,7 +291,7 @@ describe('Content Collections - render()', () => { assert.equal($('ul li').length, 3); // Rendered the styles - assert.equal($('style').length, 2); + assert.equal($('style').length, 1); }, ); }); diff --git a/packages/astro/test/units/integrations/api.test.js b/packages/astro/test/units/integrations/api.test.js index 97da20c193..59f88ed965 100644 --- a/packages/astro/test/units/integrations/api.test.js +++ b/packages/astro/test/units/integrations/api.test.js @@ -346,6 +346,55 @@ describe('Integration API', () => { ); }); }); + + describe('Routes setup hook', () => { + it('should work in dev', async () => { + let routes = []; + const fixture = await createFixture({ + '/src/pages/no-prerender.astro': '---\nexport const prerender = false\n---', + '/src/pages/prerender.astro': '---\nexport const prerender = true\n---', + '/src/pages/unknown-prerender.astro': '', + }); + + await runInContainer( + { + inlineConfig: { + root: fixture.path, + integrations: [ + { + name: 'test', + hooks: { + 'astro:route:setup': (params) => { + routes.push({ + component: params.route.component, + prerender: params.route.prerender, + }); + }, + }, + }, + ], + }, + }, + async () => { + routes.sort((a, b) => a.component.localeCompare(b.component)); + assert.deepEqual(routes, [ + { + component: 'src/pages/no-prerender.astro', + prerender: false, + }, + { + component: 'src/pages/prerender.astro', + prerender: true, + }, + { + component: 'src/pages/unknown-prerender.astro', + prerender: true, + }, + ]); + }, + ); + }); + }); }); describe('Astro feature map', function () { diff --git a/packages/astro/test/units/sessions/astro-session.test.js b/packages/astro/test/units/sessions/astro-session.test.js index 95a8b84ef5..3fa1b9de16 100644 --- a/packages/astro/test/units/sessions/astro-session.test.js +++ b/packages/astro/test/units/sessions/astro-session.test.js @@ -86,18 +86,20 @@ test('AstroSession - Cookie Management', async (t) => { }); await t.test('should delete cookie on destroy', async () => { - let cookieDeleted = false; + let cookieDeletedArgs; + let cookieDeletedName; const mockCookies = { ...defaultMockCookies, - delete: () => { - cookieDeleted = true; + delete: (name, args) => { + cookieDeletedName = name; + cookieDeletedArgs = args; }, }; const session = createSession(defaultConfig, mockCookies); session.destroy(); - - assert.equal(cookieDeleted, true); + assert.equal(cookieDeletedName, 'test-session'); + assert.equal(cookieDeletedArgs?.path, '/'); }); }); diff --git a/packages/astro/test/units/vite-plugin-astro/compile.test.js b/packages/astro/test/units/vite-plugin-astro/compile.test.js index 25ffdcfe77..b25fcdf90d 100644 --- a/packages/astro/test/units/vite-plugin-astro/compile.test.js +++ b/packages/astro/test/units/vite-plugin-astro/compile.test.js @@ -5,13 +5,12 @@ import { init, parse } from 'es-module-lexer'; import { resolveConfig } from 'vite'; import { compileAstro } from '../../../dist/vite-plugin-astro/compile.js'; -const viteConfig = await resolveConfig({ configFile: false }, 'serve'); - /** * @param {string} source * @param {string} id */ -async function compile(source, id) { +async function compile(source, id, inlineConfig = {}) { + const viteConfig = await resolveConfig({ configFile: false, ...inlineConfig }, 'serve'); return await compileAstro({ compileProps: { astroConfig: { root: pathToFileURL('/'), base: '/', experimental: {} }, @@ -69,4 +68,23 @@ const name = 'world assert.equal(names.includes('file'), true); assert.equal(names.includes('url'), true); }); + + describe('when the code contains syntax that is transformed by esbuild', () => { + let code = `\ +--- +using x = {} +---`; + + it('should not transform the syntax by default', async () => { + const result = await compile(code, '/src/components/index.astro'); + assert.equal(result.code.includes('using x = {}'), true); + }); + + it('should transform the syntax by esbuild.target', async () => { + const result = await compile(code, '/src/components/index.astro', { + esbuild: { target: 'es2018' }, + }); + assert.equal(result.code.includes('using x = {}'), false); + }); + }); }); diff --git a/packages/astro/types/content.d.ts b/packages/astro/types/content.d.ts index 38e9158f0e..c40d867a40 100644 --- a/packages/astro/types/content.d.ts +++ b/packages/astro/types/content.d.ts @@ -89,27 +89,29 @@ declare module 'astro:content' { input: CollectionConfig, ): CollectionConfig; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ export const getEntryBySlug: (...args: any[]) => any; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ export const getDataEntryById: (...args: any[]) => any; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ export const getCollection: (...args: any[]) => any; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ export const getEntry: (...args: any[]) => any; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ export const getEntries: (...args: any[]) => any; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ export const reference: (...args: any[]) => any; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ export type CollectionKey = any; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ // biome-ignore lint/correctness/noUnusedVariables: stub generic type to match generated type export type CollectionEntry = any; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ export type ContentCollectionKey = any; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ export type DataCollectionKey = any; - /** Run `astro sync` to generate high fidelity types */ + /** Run `astro dev` or `astro sync` to generate high fidelity types */ export type ContentConfig = any; + /** Run `astro dev` or `astro sync` to generate high fidelity types */ + export const render: (entry: any) => any; } diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index c41a4edb0b..9ab723ac5f 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -98,7 +98,7 @@ ### Patch Changes -- [#10255](https://github.com/withastro/astro/pull/10255) [`2aec2cdc21f48f9b4f1dd82e2fd16fa3d653ccc5`](https://github.com/withastro/astro/commit/2aec2cdc21f48f9b4f1dd82e2fd16fa3d653ccc5) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fixes an issue where TypeScript and `@astrojs/check` versions would occassionally print as `undefined`. +- [#10255](https://github.com/withastro/astro/pull/10255) [`2aec2cdc21f48f9b4f1dd82e2fd16fa3d653ccc5`](https://github.com/withastro/astro/commit/2aec2cdc21f48f9b4f1dd82e2fd16fa3d653ccc5) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fixes an issue where TypeScript and `@astrojs/check` versions would occasionally print as `undefined`. ## 4.7.3 diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index 0f38002209..16fd3c898f 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -32,7 +32,7 @@ "//b": "DEPENDENCIES IS FOR UNBUNDLED PACKAGES", "dependencies": { "@astrojs/cli-kit": "^0.4.1", - "@bluwy/giget-core": "^0.1.1" + "@bluwy/giget-core": "^0.1.2" }, "devDependencies": { "arg": "^5.0.2", diff --git a/packages/db/CHANGELOG.md b/packages/db/CHANGELOG.md index 7acd76965a..b7e9bae007 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,14 @@ # @astrojs/db +## 0.14.5 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + +- Updated dependencies [[`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0)]: + - @astrojs/studio@0.1.3 + ## 0.14.4 ### Patch Changes @@ -218,7 +227,7 @@ - [#11032](https://github.com/withastro/astro/pull/11032) [`b78e83f`](https://github.com/withastro/astro/commit/b78e83f448d142e83be592f6249c4822e7cd5726) Thanks [@itsMapleLeaf](https://github.com/itsMapleLeaf)! - Adds support for multiple Astro Studio workspaces (aka “Teams”) to the Astro DB CLI - Users who are members of a team workspace in Astro Studio can now choose between those and their personal workspace when runnning `astro db link`. + Users who are members of a team workspace in Astro Studio can now choose between those and their personal workspace when running `astro db link`. - [#11091](https://github.com/withastro/astro/pull/11091) [`e14ce57`](https://github.com/withastro/astro/commit/e14ce5726df73e2988fe1a39e078ef2d66d2f4a8) Thanks [@matthewp](https://github.com/matthewp)! - Fix inconsistent result type using raw SQL diff --git a/packages/db/package.json b/packages/db/package.json index d9553e249f..0f12e5ec16 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/db", - "version": "0.14.4", + "version": "0.14.5", "description": "Add libSQL and Astro Studio support to your Astro site", "license": "MIT", "repository": { @@ -80,8 +80,8 @@ "open": "^10.1.0", "prompts": "^2.4.2", "yargs-parser": "^21.1.1", - "yocto-spinner": "^0.1.0", - "zod": "^3.23.8" + "yocto-spinner": "^0.1.2", + "zod": "^3.24.1" }, "devDependencies": { "@types/deep-diff": "^1.0.5", @@ -90,7 +90,7 @@ "astro": "workspace:*", "astro-scripts": "workspace:*", "cheerio": "1.0.0", - "typescript": "^5.6.3", - "vite": "^6.0.1" + "typescript": "^5.7.3", + "vite": "^6.0.7" } } diff --git a/packages/db/src/core/cli/commands/shell/index.ts b/packages/db/src/core/cli/commands/shell/index.ts index 8237fdc1be..dcc54fc703 100644 --- a/packages/db/src/core/cli/commands/shell/index.ts +++ b/packages/db/src/core/cli/commands/shell/index.ts @@ -41,7 +41,7 @@ export async function cmd({ ASTRO_DATABASE_FILE, new URL(DB_PATH, astroConfig.root).href, ); - const db = createLocalDatabaseClient({ dbUrl, enableTransations: dbInfo.type === 'libsql' }); + const db = createLocalDatabaseClient({ dbUrl, enableTransactions: dbInfo.type === 'libsql' }); const result = await db.run(sql.raw(query)); console.log(result); } diff --git a/packages/db/src/core/integration/vite-plugin-db.ts b/packages/db/src/core/integration/vite-plugin-db.ts index 7e10699df7..80919144d3 100644 --- a/packages/db/src/core/integration/vite-plugin-db.ts +++ b/packages/db/src/core/integration/vite-plugin-db.ts @@ -211,7 +211,7 @@ async function recreateTables({ tables, root }: { tables: LateTables; root: URL const dbInfo = getRemoteDatabaseInfo(); const { ASTRO_DATABASE_FILE } = getAstroEnv(); const dbUrl = normalizeDatabaseUrl(ASTRO_DATABASE_FILE, new URL(DB_PATH, root).href); - const db = createLocalDatabaseClient({ dbUrl, enableTransations: dbInfo.type === 'libsql' }); + const db = createLocalDatabaseClient({ dbUrl, enableTransactions: dbInfo.type === 'libsql' }); const setupQueries: SQL[] = []; for (const [name, table] of Object.entries(tables.get() ?? {})) { const dropQuery = sql.raw(`DROP TABLE IF EXISTS ${sqlite.escapeName(name)}`); diff --git a/packages/db/src/runtime/db-client.ts b/packages/db/src/runtime/db-client.ts index 2e49b28f79..21f45aa454 100644 --- a/packages/db/src/runtime/db-client.ts +++ b/packages/db/src/runtime/db-client.ts @@ -20,7 +20,7 @@ function applyTransactionNotSupported(db: SqliteRemoteDatabase) { type LocalDbClientOptions = { dbUrl: string; - enableTransations: boolean; + enableTransactions: boolean; }; export function createLocalDatabaseClient(options: LocalDbClientOptions): LibSQLDatabase { @@ -28,7 +28,7 @@ export function createLocalDatabaseClient(options: LocalDbClientOptions): LibSQL const client = createClient({ url }); const db = drizzleLibsql(client); - if (!options.enableTransations) { + if (!options.enableTransactions) { applyTransactionNotSupported(db); } return db; diff --git a/packages/db/test/fixtures/ticketing-example/package.json b/packages/db/test/fixtures/ticketing-example/package.json index 765d46e2c7..c39bf10669 100644 --- a/packages/db/test/fixtures/ticketing-example/package.json +++ b/packages/db/test/fixtures/ticketing-example/package.json @@ -11,16 +11,16 @@ "dependencies": { "@astrojs/check": "^0.9.4", "@astrojs/db": "workspace:*", - "@astrojs/node": "^8.3.4", + "@astrojs/node": "^9.0.0", "@astrojs/react": "workspace:*", - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", + "@types/react": "^18.3.18", + "@types/react-dom": "^18.3.5", "astro": "workspace:*", - "open-props": "^1.7.7", + "open-props": "^1.7.10", "react": "^18.3.1", "react-dom": "^18.3.1", "simple-stack-form": "^0.1.12", - "typescript": "^5.7.2", - "zod": "^3.23.8" + "typescript": "^5.7.3", + "zod": "^3.24.1" } } diff --git a/packages/integrations/alpinejs/CHANGELOG.md b/packages/integrations/alpinejs/CHANGELOG.md index e54875d08a..47b9b11939 100644 --- a/packages/integrations/alpinejs/CHANGELOG.md +++ b/packages/integrations/alpinejs/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/alpinejs +## 0.4.1 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + ## 0.4.0 ### Minor Changes diff --git a/packages/integrations/alpinejs/package.json b/packages/integrations/alpinejs/package.json index 8c61fdaf5d..183787f78e 100644 --- a/packages/integrations/alpinejs/package.json +++ b/packages/integrations/alpinejs/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/alpinejs", "description": "Use Alpine within Astro", - "version": "0.4.0", + "version": "0.4.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -38,10 +38,10 @@ "alpinejs": "^3.0.0" }, "devDependencies": { - "@playwright/test": "1.49.0", + "@playwright/test": "1.49.1", "astro": "workspace:*", "astro-scripts": "workspace:*", - "vite": "^6.0.1" + "vite": "^6.0.7" }, "publishConfig": { "provenance": true diff --git a/packages/integrations/alpinejs/test/fixtures/basics/package.json b/packages/integrations/alpinejs/test/fixtures/basics/package.json index b30b60556a..ece072bf77 100644 --- a/packages/integrations/alpinejs/test/fixtures/basics/package.json +++ b/packages/integrations/alpinejs/test/fixtures/basics/package.json @@ -5,7 +5,7 @@ "dependencies": { "@astrojs/alpinejs": "workspace:*", "@types/alpinejs": "^3.13.11", - "alpinejs": "^3.14.3", + "alpinejs": "^3.14.8", "astro": "workspace:*" } } diff --git a/packages/integrations/alpinejs/test/fixtures/directive/package.json b/packages/integrations/alpinejs/test/fixtures/directive/package.json index a096f5a75e..e405e7caf4 100644 --- a/packages/integrations/alpinejs/test/fixtures/directive/package.json +++ b/packages/integrations/alpinejs/test/fixtures/directive/package.json @@ -5,7 +5,7 @@ "dependencies": { "@astrojs/alpinejs": "workspace:*", "@types/alpinejs": "^3.13.11", - "alpinejs": "^3.14.3", + "alpinejs": "^3.14.8", "astro": "workspace:*" } } diff --git a/packages/integrations/alpinejs/test/fixtures/plugin-script-import/package.json b/packages/integrations/alpinejs/test/fixtures/plugin-script-import/package.json index 3aa0d29bc2..1fc40e76d4 100644 --- a/packages/integrations/alpinejs/test/fixtures/plugin-script-import/package.json +++ b/packages/integrations/alpinejs/test/fixtures/plugin-script-import/package.json @@ -5,7 +5,7 @@ "dependencies": { "@astrojs/alpinejs": "workspace:*", "@types/alpinejs": "^3.13.11", - "alpinejs": "^3.14.3", + "alpinejs": "^3.14.8", "astro": "workspace:*" } } diff --git a/packages/integrations/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md index 1b752b85b2..af653d86f8 100644 --- a/packages/integrations/markdoc/CHANGELOG.md +++ b/packages/integrations/markdoc/CHANGELOG.md @@ -1,5 +1,28 @@ # @astrojs/markdoc +## 0.12.6 + +### Patch Changes + +- [#12361](https://github.com/withastro/astro/pull/12361) [`3d89e62`](https://github.com/withastro/astro/commit/3d89e6282235a8da45d9ddfe02bcf7ec78056941) Thanks [@LunaticMuch](https://github.com/LunaticMuch)! - Upgrades the `esbuild` version to match `vite` + +- [#12967](https://github.com/withastro/astro/pull/12967) [`0ef1613`](https://github.com/withastro/astro/commit/0ef1613ea36439a76965290053ccc3f8afb9f400) Thanks [@bluwy](https://github.com/bluwy)! - Fixes rendering components when the `nodes.document.render` Markdoc config is set to `null` + +- Updated dependencies [[`3d89e62`](https://github.com/withastro/astro/commit/3d89e6282235a8da45d9ddfe02bcf7ec78056941)]: + - @astrojs/markdown-remark@6.0.2 + +## 0.12.5 + +### Patch Changes + +- [#12930](https://github.com/withastro/astro/pull/12930) [`a20a4d7`](https://github.com/withastro/astro/commit/a20a4d7b8ffe3ae941b5c510b319ac6f9783aabe) Thanks [@bluwy](https://github.com/bluwy)! - Fixes rendering code blocks within if tags + +## 0.12.4 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + ## 0.12.3 ### Patch Changes diff --git a/packages/integrations/markdoc/components/Renderer.astro b/packages/integrations/markdoc/components/Renderer.astro index c26d92ad73..270604091f 100644 --- a/packages/integrations/markdoc/components/Renderer.astro +++ b/packages/integrations/markdoc/components/Renderer.astro @@ -1,6 +1,6 @@ --- //! astro-head-inject -import type { Config } from '@markdoc/markdoc'; +import type { Config, RenderableTreeNodes } from '@markdoc/markdoc'; import Markdoc from '@markdoc/markdoc'; import { ComponentNode, createTreeNode } from './TreeNode.js'; @@ -12,13 +12,12 @@ type Props = { const { stringifiedAst, config } = Astro.props as Props; const ast = Markdoc.Ast.fromJSON(stringifiedAst); -const content = await Markdoc.transform(ast, config); +// The AST may be an array, and `transform` has overloads for arrays and non-array cases, +// However TypeScript seems to struggle to combine both overloads into a single signature. +// Also, `transform` returns a promise here but the types don't reflect that. +// @ts-expect-error +const content = (await Markdoc.transform(ast, config)) as RenderableTreeNodes; +const treeNode = await createTreeNode(content); --- -{ - Array.isArray(content) ? ( - content.map(async (c) => ) - ) : ( - - ) -} + diff --git a/packages/integrations/markdoc/components/TreeNode.ts b/packages/integrations/markdoc/components/TreeNode.ts index cbcf153292..4c1174c3c5 100644 --- a/packages/integrations/markdoc/components/TreeNode.ts +++ b/packages/integrations/markdoc/components/TreeNode.ts @@ -1,6 +1,6 @@ -import type { RenderableTreeNode } from '@markdoc/markdoc'; +import type { RenderableTreeNodes } from '@markdoc/markdoc'; import Markdoc from '@markdoc/markdoc'; -import type { AstroInstance } from 'astro'; +import type { AstroInstance, SSRResult } from 'astro'; import type { HTMLString } from 'astro/runtime/server/index.js'; import { createComponent, @@ -15,6 +15,9 @@ import { } from 'astro/runtime/server/index.js'; export type TreeNode = + // Markdoc `if` tag often returns an array of nodes in the AST, which gets translated + // here as an array of `TreeNode`s, which we'll render all without a wrapper. + | TreeNode[] | { type: 'text'; content: string | HTMLString; @@ -35,75 +38,90 @@ export type TreeNode = children: TreeNode[]; }; -export const ComponentNode = createComponent({ - factory(result: any, { treeNode }: { treeNode: TreeNode }) { - if (treeNode.type === 'text') return render`${treeNode.content}`; +function renderTreeNodeToFactoryResult(result: SSRResult, treeNode: TreeNode) { + if (Array.isArray(treeNode)) { + return Promise.all( + treeNode.map((node) => + renderComponent(result, 'ComponentNode', ComponentNode, { treeNode: node }), + ), + ); + } - const slots = { - default: () => - render`${treeNode.children.map((child) => - renderComponent(result, 'ComponentNode', ComponentNode, { treeNode: child }), - )}`, - }; - if (treeNode.type === 'component') { - let styles = '', - links = '', - scripts = ''; - if (Array.isArray(treeNode.collectedStyles)) { - styles = treeNode.collectedStyles - .map((style: any) => - renderUniqueStylesheet(result, { - type: 'inline', - content: style, - }), - ) - .join(''); - } - if (Array.isArray(treeNode.collectedLinks)) { - links = treeNode.collectedLinks - .map((link: any) => { - return renderUniqueStylesheet(result, { - type: 'external', - src: link[0] === '/' ? link : '/' + link, - }); - }) - .join(''); - } - if (Array.isArray(treeNode.collectedScripts)) { - scripts = treeNode.collectedScripts - .map((script: any) => renderScriptElement(script)) - .join(''); - } + if (treeNode.type === 'text') return render`${treeNode.content}`; - const head = unescapeHTML(styles + links + scripts); - - let headAndContent = createHeadAndContent( - head, - renderTemplate`${renderComponent( - result, - treeNode.component.name, - treeNode.component, - treeNode.props, - slots, - )}`, - ); - - // Let the runtime know that this component is being used. - result._metadata.propagators.add({ - init() { - return headAndContent; - }, - }); - - return headAndContent; + const slots = { + default: () => + render`${treeNode.children.map((child) => + renderComponent(result, 'ComponentNode', ComponentNode, { treeNode: child }), + )}`, + }; + if (treeNode.type === 'component') { + let styles = '', + links = '', + scripts = ''; + if (Array.isArray(treeNode.collectedStyles)) { + styles = treeNode.collectedStyles + .map((style: any) => + renderUniqueStylesheet(result, { + type: 'inline', + content: style, + }), + ) + .join(''); } - return renderComponent(result, treeNode.tag, treeNode.tag, treeNode.attributes, slots); + if (Array.isArray(treeNode.collectedLinks)) { + links = treeNode.collectedLinks + .map((link: any) => { + return renderUniqueStylesheet(result, { + type: 'external', + src: link[0] === '/' ? link : '/' + link, + }); + }) + .join(''); + } + if (Array.isArray(treeNode.collectedScripts)) { + scripts = treeNode.collectedScripts + .map((script: any) => renderScriptElement(script)) + .join(''); + } + + const head = unescapeHTML(styles + links + scripts); + + let headAndContent = createHeadAndContent( + head, + renderTemplate`${renderComponent( + result, + treeNode.component.name, + treeNode.component, + treeNode.props, + slots, + )}`, + ); + + // Let the runtime know that this component is being used. + // @ts-expect-error Astro only uses `init()` so specify it only (plus `_metadata` is internal) + result._metadata.propagators.add({ + init() { + return headAndContent; + }, + }); + + return headAndContent; + } + return renderComponent(result, treeNode.tag, treeNode.tag, treeNode.attributes, slots); +} + +export const ComponentNode = createComponent({ + factory(result: SSRResult, { treeNode }: { treeNode: TreeNode | TreeNode[] }) { + return renderTreeNodeToFactoryResult(result, treeNode); }, propagation: 'self', }); -export async function createTreeNode(node: RenderableTreeNode): Promise { - if (isHTMLString(node)) { +export async function createTreeNode(node: RenderableTreeNodes): Promise { + if (Array.isArray(node)) { + return Promise.all(node.map((child) => createTreeNode(child))); + } else if (isHTMLString(node)) { return { type: 'text', content: node as HTMLString }; } else if (typeof node === 'string' || typeof node === 'number') { return { type: 'text', content: String(node) }; diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json index 5421f82c12..1f55422f12 100644 --- a/packages/integrations/markdoc/package.json +++ b/packages/integrations/markdoc/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/markdoc", "description": "Add support for Markdoc in your Astro site", - "version": "0.12.3", + "version": "0.12.6", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -66,9 +66,9 @@ "@astrojs/markdown-remark": "workspace:*", "@astrojs/prism": "workspace:*", "@markdoc/markdoc": "^0.4.0", - "esbuild": "^0.21.5", + "esbuild": "^0.24.2", "github-slugger": "^2.0.0", - "htmlparser2": "^9.1.0" + "htmlparser2": "^10.0.0" }, "peerDependencies": { "astro": "^5.0.0" @@ -78,8 +78,8 @@ "astro": "workspace:*", "astro-scripts": "workspace:*", "devalue": "^5.1.1", - "linkedom": "^0.18.5", - "vite": "^6.0.1" + "linkedom": "^0.18.6", + "vite": "^6.0.7" }, "engines": { "node": "^18.17.1 || ^20.3.0 || >=22.0.0" diff --git a/packages/integrations/markdoc/test/fixtures/render-null/markdoc.config.mjs b/packages/integrations/markdoc/test/fixtures/render-null/markdoc.config.mjs index 01082bfacd..5db65fddd5 100644 --- a/packages/integrations/markdoc/test/fixtures/render-null/markdoc.config.mjs +++ b/packages/integrations/markdoc/test/fixtures/render-null/markdoc.config.mjs @@ -1,10 +1,15 @@ -import { defineMarkdocConfig, nodes } from '@astrojs/markdoc/config'; +import { defineMarkdocConfig, nodes, component } from '@astrojs/markdoc/config'; export default defineMarkdocConfig({ nodes: { document: { ...nodes.document, render: null, - } - } -}) + }, + }, + tags: { + 'div-wrapper': { + render: component('./src/components/DivWrapper.astro'), + }, + }, +}); diff --git a/packages/integrations/markdoc/test/fixtures/render-null/src/components/DivWrapper.astro b/packages/integrations/markdoc/test/fixtures/render-null/src/components/DivWrapper.astro new file mode 100644 index 0000000000..942a11945f --- /dev/null +++ b/packages/integrations/markdoc/test/fixtures/render-null/src/components/DivWrapper.astro @@ -0,0 +1 @@ +
diff --git a/packages/integrations/markdoc/test/fixtures/render-null/src/content/blog/render-null.mdoc b/packages/integrations/markdoc/test/fixtures/render-null/src/content/blog/render-null.mdoc index 7b7b193cb1..f85ebebd13 100644 --- a/packages/integrations/markdoc/test/fixtures/render-null/src/content/blog/render-null.mdoc +++ b/packages/integrations/markdoc/test/fixtures/render-null/src/content/blog/render-null.mdoc @@ -5,3 +5,9 @@ title: Post with render null ## Post with render null This should render the contents inside a fragment! + +{% div-wrapper %} + +I'm inside a div wrapper + +{% /div-wrapper %} diff --git a/packages/integrations/markdoc/test/fixtures/render-with-components/package.json b/packages/integrations/markdoc/test/fixtures/render-with-components/package.json index 8f3a87d113..518348cb62 100644 --- a/packages/integrations/markdoc/test/fixtures/render-with-components/package.json +++ b/packages/integrations/markdoc/test/fixtures/render-with-components/package.json @@ -6,6 +6,6 @@ "@astrojs/markdoc": "workspace:*", "@astrojs/preact": "workspace:*", "astro": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/integrations/markdoc/test/fixtures/render-with-components/src/content/blog/with-components.mdoc b/packages/integrations/markdoc/test/fixtures/render-with-components/src/content/blog/with-components.mdoc index eb7d20426e..0d1ec835c8 100644 --- a/packages/integrations/markdoc/test/fixtures/render-with-components/src/content/blog/with-components.mdoc +++ b/packages/integrations/markdoc/test/fixtures/render-with-components/src/content/blog/with-components.mdoc @@ -17,3 +17,12 @@ And a code component for code blocks: ```js const isRenderedWithShiki = true; ``` + +{% if equals("true", "true") %} +Inside truthy + +```js +const isRenderedWithShikiInside = true; +``` + +{% /if %} diff --git a/packages/integrations/markdoc/test/fixtures/render-with-extends-components/src/content/blog/with-components.mdoc b/packages/integrations/markdoc/test/fixtures/render-with-extends-components/src/content/blog/with-components.mdoc index 61f404a970..8ff944b060 100644 --- a/packages/integrations/markdoc/test/fixtures/render-with-extends-components/src/content/blog/with-components.mdoc +++ b/packages/integrations/markdoc/test/fixtures/render-with-extends-components/src/content/blog/with-components.mdoc @@ -15,3 +15,12 @@ And a code component for code blocks: ```js const isRenderedWithShiki = true; ``` + +{% if equals("true", "true") %} +Inside truthy + +```js +const isRenderedWithShikiInside = true; +``` + +{% /if %} diff --git a/packages/integrations/markdoc/test/propagated-assets.test.js b/packages/integrations/markdoc/test/propagated-assets.test.js index 5fe7369ceb..a0768448f1 100644 --- a/packages/integrations/markdoc/test/propagated-assets.test.js +++ b/packages/integrations/markdoc/test/propagated-assets.test.js @@ -45,12 +45,12 @@ describe('Markdoc - propagated assets', () => { let styleContents; if (mode === 'dev') { const styles = stylesDocument.querySelectorAll('style'); - assert.equal(styles.length, 2); - styleContents = styles[1].textContent; + assert.equal(styles.length, 1); + styleContents = styles[0].textContent; } else { const links = stylesDocument.querySelectorAll('link[rel="stylesheet"]'); - assert.equal(links.length, 2); - styleContents = await fixture.readFile(links[1].href); + assert.equal(links.length, 1); + styleContents = await fixture.readFile(links[0].href); } assert.equal(styleContents.includes('--color-base-purple: 269, 79%;'), true); }); @@ -58,10 +58,10 @@ describe('Markdoc - propagated assets', () => { it('[fails] Does not bleed styles to other page', async () => { if (mode === 'dev') { const styles = scriptsDocument.querySelectorAll('style'); - assert.equal(styles.length, 1); + assert.equal(styles.length, 0); } else { const links = scriptsDocument.querySelectorAll('link[rel="stylesheet"]'); - assert.equal(links.length, 1); + assert.equal(links.length, 0); } }); }); diff --git a/packages/integrations/markdoc/test/render-components.test.js b/packages/integrations/markdoc/test/render-components.test.js index b9ac8770f7..e8ddec9097 100644 --- a/packages/integrations/markdoc/test/render-components.test.js +++ b/packages/integrations/markdoc/test/render-components.test.js @@ -74,6 +74,11 @@ function renderComponentsChecks(html) { const pre = document.querySelector('pre'); assert.notEqual(pre, null); assert.equal(pre.className, 'astro-code github-dark'); + + // Renders 2nd Astro Code component inside if tag + const pre2 = document.querySelectorAll('pre')[1]; + assert.notEqual(pre2, null); + assert.equal(pre2.className, 'astro-code github-dark'); } /** @param {string} html */ diff --git a/packages/integrations/markdoc/test/render-extends-components.test.js b/packages/integrations/markdoc/test/render-extends-components.test.js index 8d1778d3ee..f5f1454c8e 100644 --- a/packages/integrations/markdoc/test/render-extends-components.test.js +++ b/packages/integrations/markdoc/test/render-extends-components.test.js @@ -61,4 +61,9 @@ function renderComponentsChecks(html) { const pre = document.querySelector('pre'); assert.notEqual(pre, null); assert.equal(pre.className, 'astro-code github-dark'); + + // Renders 2nd Astro Code component inside if tag + const pre2 = document.querySelectorAll('pre')[1]; + assert.notEqual(pre2, null); + assert.equal(pre2.className, 'astro-code github-dark'); } diff --git a/packages/integrations/markdoc/test/render.test.js b/packages/integrations/markdoc/test/render.test.js index 364604405d..4c9293288b 100644 --- a/packages/integrations/markdoc/test/render.test.js +++ b/packages/integrations/markdoc/test/render.test.js @@ -137,6 +137,8 @@ function renderNullChecks(html) { const h2 = document.querySelector('h2'); assert.equal(h2.textContent, 'Post with render null'); assert.equal(h2.parentElement?.tagName, 'BODY'); + const divWrapper = document.querySelector('.div-wrapper'); + assert.equal(divWrapper.textContent, "I'm inside a div wrapper"); } /** @param {string} html */ diff --git a/packages/integrations/markdoc/test/syntax-highlighting.test.js b/packages/integrations/markdoc/test/syntax-highlighting.test.js index f47b891f43..6ea841ae12 100644 --- a/packages/integrations/markdoc/test/syntax-highlighting.test.js +++ b/packages/integrations/markdoc/test/syntax-highlighting.test.js @@ -68,6 +68,27 @@ describe('Markdoc - syntax highlighting', () => { assert.equal(pre.getAttribute('style').includes('word-wrap: break-word'), true); } }); + it('transform within if tags', async () => { + const ast = Markdoc.parse(` +{% if equals("true", "true") %} +Inside truthy + +\`\`\`js +const hello = "yes"; +\`\`\` + +{% /if %}`); + const content = await Markdoc.transform(ast, await getConfigExtendingShiki()); + assert.equal(content.children.length, 1); + assert.equal(content.children[0].length, 2); + const pTag = content.children[0][0]; + assert.equal(pTag.name, 'p'); + const codeBlock = content.children[0][1]; + assert.equal(isHTMLString(codeBlock), true); + const pre = parsePreTag(codeBlock); + assert.equal(pre.classList.contains('astro-code'), true); + assert.equal(pre.classList.contains('github-dark'), true); + }); }); describe('prism', () => { diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index d6cd10fea1..93b9757e61 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,32 @@ # @astrojs/mdx +## 4.0.6 + +### Patch Changes + +- Updated dependencies [[`3d89e62`](https://github.com/withastro/astro/commit/3d89e6282235a8da45d9ddfe02bcf7ec78056941)]: + - @astrojs/markdown-remark@6.0.2 + +## 4.0.5 + +### Patch Changes + +- [#12959](https://github.com/withastro/astro/pull/12959) [`3a267f3`](https://github.com/withastro/astro/commit/3a267f33a2a2576c9065c88646ed67f5a7a8ba0b) Thanks [@bluwy](https://github.com/bluwy)! - Reverts https://github.com/withastro/astro/commit/9a3b48c5c3e8f597159454f06c5a0ce8e709bc50 which caused a regression for rendering inline MDX components and MDX files from content collections + +## 4.0.4 + +### Patch Changes + +- [#12921](https://github.com/withastro/astro/pull/12921) [`aeb7e1a`](https://github.com/withastro/astro/commit/aeb7e1ac11ebf87847ed2fac89072aa2b4ac2aae) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that caused Image component to be imported on MDX pages that did not include images + +- [#12913](https://github.com/withastro/astro/pull/12913) [`9a3b48c`](https://github.com/withastro/astro/commit/9a3b48c5c3e8f597159454f06c5a0ce8e709bc50) Thanks [@bluwy](https://github.com/bluwy)! - Makes internal `check()` function a no-op to allow faster component renders and prevent React 19 component warnings + +## 4.0.3 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + ## 4.0.2 ### Patch Changes @@ -1090,7 +1117,7 @@ ### Patch Changes -- [#5667](https://github.com/withastro/astro/pull/5667) [`a5ba4af79`](https://github.com/withastro/astro/commit/a5ba4af79930145f4edf66d45cd40ddad045cc86) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Chore: remove verbose "Now interiting Markdown plugins..." logs +- [#5667](https://github.com/withastro/astro/pull/5667) [`a5ba4af79`](https://github.com/withastro/astro/commit/a5ba4af79930145f4edf66d45cd40ddad045cc86) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Chore: remove verbose "Now inheriting Markdown plugins..." logs - [#5648](https://github.com/withastro/astro/pull/5648) [`853081d1c`](https://github.com/withastro/astro/commit/853081d1c857d8ad8a9634c37ed8fd123d32d241) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Prevent relative image paths in `src/content/` diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index 3979b3caed..c39e1b2b39 100644 --- a/packages/integrations/mdx/package.json +++ b/packages/integrations/mdx/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/mdx", "description": "Add support for MDX pages in your Astro site", - "version": "4.0.2", + "version": "4.0.6", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -37,9 +37,9 @@ "@astrojs/markdown-remark": "workspace:*", "@mdx-js/mdx": "^3.1.0", "acorn": "^8.14.0", - "es-module-lexer": "^1.5.4", + "es-module-lexer": "^1.6.0", "estree-util-visit": "^2.0.0", - "hast-util-to-html": "^9.0.3", + "hast-util-to-html": "^9.0.4", "kleur": "^4.1.5", "rehype-raw": "^7.0.0", "remark-gfm": "^4.0.0", @@ -58,9 +58,9 @@ "astro": "workspace:*", "astro-scripts": "workspace:*", "cheerio": "1.0.0", - "linkedom": "^0.18.5", + "linkedom": "^0.18.6", "mdast-util-mdx": "^3.0.0", - "mdast-util-mdx-jsx": "^3.1.3", + "mdast-util-mdx-jsx": "^3.2.0", "mdast-util-to-string": "^4.0.0", "rehype-mathjax": "^6.0.0", "rehype-pretty-code": "^0.14.0", @@ -68,9 +68,9 @@ "remark-rehype": "^11.1.1", "remark-shiki-twoslash": "^3.1.3", "remark-toc": "^9.0.0", - "shiki": "^1.23.1", + "shiki": "^1.26.2", "unified": "^11.0.5", - "vite": "^6.0.1" + "vite": "^6.0.7" }, "engines": { "node": "^18.17.1 || ^20.3.0 || >=22.0.0" diff --git a/packages/integrations/mdx/src/README.md b/packages/integrations/mdx/src/README.md index 3fc991b77c..5c01ce755a 100644 --- a/packages/integrations/mdx/src/README.md +++ b/packages/integrations/mdx/src/README.md @@ -87,7 +87,7 @@ Flow: - Q: How does `findElementGroups()` work?
A: For each elements in `allPossibleElements` that are non-static, we're able to take the element metadata from `elementMetadatas` and guess the next sibling node. If the next sibling node is static and is an element in `allPossibleElements`, we group them together for optimization. It continues to guess until it hits a non-static node or an element not in `allPossibleElements`, which it'll finalize the group as part of the returned result. -2. For each elements in `allPossibleElements`, we serailize them as HTML and add it to the `set:html` property of the `hast` node, and remove its children. +2. For each elements in `allPossibleElements`, we serialize them as HTML and add it to the `set:html` property of the `hast` node, and remove its children. 3. For each element group in `elementGroups`, we serialize the group children as HTML and add it to a new `` node, and replace the group children with the new `` node. 4. 🎉 The rest of the MDX pipeline will do its thing and generate the desired JSX like above. diff --git a/packages/integrations/mdx/src/rehype-images-to-component.ts b/packages/integrations/mdx/src/rehype-images-to-component.ts index da2f25ee56..c903ae511b 100644 --- a/packages/integrations/mdx/src/rehype-images-to-component.ts +++ b/packages/integrations/mdx/src/rehype-images-to-component.ts @@ -73,13 +73,13 @@ function getImageComponentAttributes(props: Properties): MdxJsxAttribute[] { export function rehypeImageToComponent() { return function (tree: Root, file: VFile) { - if (!file.data.astro?.imagePaths) return; - + if (!file.data.astro?.imagePaths?.length) return; const importsStatements: MdxjsEsm[] = []; const importedImages = new Map(); visit(tree, 'element', (node, index, parent) => { - if (!file.data.astro?.imagePaths || node.tagName !== 'img' || !node.properties.src) return; + if (!file.data.astro?.imagePaths?.length || node.tagName !== 'img' || !node.properties.src) + return; const src = decodeURI(String(node.properties.src)); diff --git a/packages/integrations/mdx/test/css-head-mdx.test.js b/packages/integrations/mdx/test/css-head-mdx.test.js index d55e2f52ac..96ee7c9001 100644 --- a/packages/integrations/mdx/test/css-head-mdx.test.js +++ b/packages/integrations/mdx/test/css-head-mdx.test.js @@ -28,7 +28,7 @@ describe('Head injection w/ MDX', () => { const { document } = parseHTML(html); const links = document.querySelectorAll('head link[rel=stylesheet]'); - assert.equal(links.length, 2); + assert.equal(links.length, 1); const scripts = document.querySelectorAll('script[type=module]'); assert.equal(scripts.length, 1); @@ -39,7 +39,7 @@ describe('Head injection w/ MDX', () => { const { document } = parseHTML(html); const links = document.querySelectorAll('head link[rel=stylesheet]'); - assert.equal(links.length, 2); + assert.equal(links.length, 1); }); it('injects content from a component using Content#render()', async () => { @@ -47,7 +47,7 @@ describe('Head injection w/ MDX', () => { const { document } = parseHTML(html); const links = document.querySelectorAll('head link[rel=stylesheet]'); - assert.equal(links.length, 2); + assert.equal(links.length, 1); const scripts = document.querySelectorAll('script[type=module]'); assert.equal(scripts.length, 1); @@ -67,7 +67,7 @@ describe('Head injection w/ MDX', () => { const $ = cheerio.load(html); const headLinks = $('head link[rel=stylesheet]'); - assert.equal(headLinks.length, 2); + assert.equal(headLinks.length, 1); const bodyLinks = $('body link[rel=stylesheet]'); assert.equal(bodyLinks.length, 0); @@ -79,7 +79,7 @@ describe('Head injection w/ MDX', () => { const $ = cheerio.load(html); const headLinks = $('head link[rel=stylesheet]'); - assert.equal(headLinks.length, 2); + assert.equal(headLinks.length, 1); const bodyLinks = $('body link[rel=stylesheet]'); assert.equal(bodyLinks.length, 0); @@ -92,7 +92,7 @@ describe('Head injection w/ MDX', () => { const $ = cheerio.load(html); const headLinks = $('head link[rel=stylesheet]'); - assert.equal(headLinks.length, 2); + assert.equal(headLinks.length, 1); const bodyLinks = $('body link[rel=stylesheet]'); assert.equal(bodyLinks.length, 0); diff --git a/packages/integrations/mdx/test/fixtures/mdx-images/astro.config.ts b/packages/integrations/mdx/test/fixtures/mdx-images/astro.config.ts index 2e487f5a84..a6326190ef 100644 --- a/packages/integrations/mdx/test/fixtures/mdx-images/astro.config.ts +++ b/packages/integrations/mdx/test/fixtures/mdx-images/astro.config.ts @@ -1,9 +1,13 @@ import mdx from '@astrojs/mdx'; import { testImageService } from '../../../../../astro/test/test-image-service.js'; +import { defineConfig } from 'astro/config'; -export default { +export default defineConfig({ integrations: [mdx()], image: { service: testImageService(), }, -} + experimental: { + responsiveImages: true, + } +}) diff --git a/packages/integrations/mdx/test/fixtures/mdx-images/src/pages/content-collection.astro b/packages/integrations/mdx/test/fixtures/mdx-images/src/pages/content-collection.astro index 63d068b5c2..68a3fe3bab 100644 --- a/packages/integrations/mdx/test/fixtures/mdx-images/src/pages/content-collection.astro +++ b/packages/integrations/mdx/test/fixtures/mdx-images/src/pages/content-collection.astro @@ -1,9 +1,9 @@ --- -import { getEntry } from 'astro:content'; +import { getEntry, render } from 'astro:content'; import MyImage from 'src/components/MyImage.astro'; const entry = await getEntry('blog', 'entry'); -const { Content } = await entry.render(); +const { Content } = await render(entry) --- diff --git a/packages/integrations/mdx/test/fixtures/mdx-images/src/pages/no-image.mdx b/packages/integrations/mdx/test/fixtures/mdx-images/src/pages/no-image.mdx new file mode 100644 index 0000000000..944c593a93 --- /dev/null +++ b/packages/integrations/mdx/test/fixtures/mdx-images/src/pages/no-image.mdx @@ -0,0 +1 @@ +Nothing to see here. diff --git a/packages/integrations/mdx/test/fixtures/mdx-infinite-loop/package.json b/packages/integrations/mdx/test/fixtures/mdx-infinite-loop/package.json index dfe998a6c9..253691e2d0 100644 --- a/packages/integrations/mdx/test/fixtures/mdx-infinite-loop/package.json +++ b/packages/integrations/mdx/test/fixtures/mdx-infinite-loop/package.json @@ -6,6 +6,6 @@ "@astrojs/mdx": "workspace:*", "@astrojs/preact": "workspace:*", "astro": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" } } diff --git a/packages/integrations/mdx/test/fixtures/mdx-plus-react/src/pages/inline-component.mdx b/packages/integrations/mdx/test/fixtures/mdx-plus-react/src/pages/inline-component.mdx new file mode 100644 index 0000000000..4071a2c70d --- /dev/null +++ b/packages/integrations/mdx/test/fixtures/mdx-plus-react/src/pages/inline-component.mdx @@ -0,0 +1,5 @@ +export const Comp = () => Comp + +# Inline component + +This is an inline component: diff --git a/packages/integrations/mdx/test/mdx-images.test.js b/packages/integrations/mdx/test/mdx-images.test.js index 3d544f8559..543b9021eb 100644 --- a/packages/integrations/mdx/test/mdx-images.test.js +++ b/packages/integrations/mdx/test/mdx-images.test.js @@ -65,4 +65,18 @@ describe('MDX Page', () => { }); } }); + + describe('build', () => { + before(async () => { + await fixture.build(); + }); + it('includes responsive styles', async () => { + const code = await fixture.readFile('/index.html'); + assert.ok(code.includes('[data-astro-image]')); + }); + it("doesn't include styles on pages without images", async () => { + const code = await fixture.readFile('/no-image/index.html'); + assert.ok(!code.includes('[data-astro-image]')); + }); + }); }); diff --git a/packages/integrations/mdx/test/mdx-math.test.js b/packages/integrations/mdx/test/mdx-math.test.js index a68c5cbe74..ff54a10427 100644 --- a/packages/integrations/mdx/test/mdx-math.test.js +++ b/packages/integrations/mdx/test/mdx-math.test.js @@ -28,7 +28,7 @@ describe('MDX math', () => { const mjxContainer = document.querySelector('mjx-container[jax="SVG"]'); assert.notEqual(mjxContainer, null); - const mjxStyle = document.querySelectorAll('style')[1].innerHTML; + const mjxStyle = document.querySelectorAll('style')[0].innerHTML; assert.equal( mjxStyle.includes('mjx-container[jax="SVG"]'), true, @@ -62,7 +62,7 @@ describe('MDX math', () => { const mjxContainer = document.querySelector('mjx-container[jax="CHTML"]'); assert.notEqual(mjxContainer, null); - const mjxStyle = document.querySelectorAll('style')[1].innerHTML; + const mjxStyle = document.querySelectorAll('style')[0].innerHTML; assert.equal( mjxStyle.includes('mjx-container[jax="CHTML"]'), true, diff --git a/packages/integrations/mdx/test/mdx-plus-react.test.js b/packages/integrations/mdx/test/mdx-plus-react.test.js index 08c0f118c0..0aa3ed4594 100644 --- a/packages/integrations/mdx/test/mdx-plus-react.test.js +++ b/packages/integrations/mdx/test/mdx-plus-react.test.js @@ -47,4 +47,9 @@ describe('MDX and React', () => { const errors = unhook(); assert.equal(errors.length === 0, true); }); + + it('renders inline mdx component', async () => { + const html = await fixture.readFile('/inline-component/index.html'); + assert.match(html, /This is an inline component: Comp<\/span>/); + }); }); diff --git a/packages/integrations/partytown/CHANGELOG.md b/packages/integrations/partytown/CHANGELOG.md index 35b24feb16..e43021f79f 100644 --- a/packages/integrations/partytown/CHANGELOG.md +++ b/packages/integrations/partytown/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/partytown +## 2.1.3 + +### Patch Changes + +- [#12822](https://github.com/withastro/astro/pull/12822) [`1fab2f2`](https://github.com/withastro/astro/commit/1fab2f2ef671cc265c8dd46c5858915f971f2478) Thanks [@stdavis](https://github.com/stdavis)! - Updates the partytown dependency to the new npm org name and latest version. + ## 2.1.2 ### Patch Changes diff --git a/packages/integrations/partytown/package.json b/packages/integrations/partytown/package.json index 0a171c1c0e..a6f8c10859 100644 --- a/packages/integrations/partytown/package.json +++ b/packages/integrations/partytown/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/partytown", "description": "Use Partytown to move scripts into a web worker in your Astro project", - "version": "2.1.2", + "version": "2.1.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -32,7 +32,7 @@ "dev": "astro-scripts dev \"src/**/*.ts\"" }, "dependencies": { - "@builder.io/partytown": "^0.10.2", + "@qwik.dev/partytown": "^0.11.0", "mrmime": "^2.0.0" }, "devDependencies": { diff --git a/packages/integrations/partytown/src/index.ts b/packages/integrations/partytown/src/index.ts index 05a1b4c115..f2ffbfea42 100644 --- a/packages/integrations/partytown/src/index.ts +++ b/packages/integrations/partytown/src/index.ts @@ -2,9 +2,9 @@ import * as fs from 'node:fs'; import { createRequire } from 'node:module'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; -import type { PartytownConfig } from '@builder.io/partytown/integration'; -import { partytownSnippet } from '@builder.io/partytown/integration'; -import { copyLibFiles, libDirPath } from '@builder.io/partytown/utils'; +import type { PartytownConfig } from '@qwik.dev/partytown/integration'; +import { partytownSnippet } from '@qwik.dev/partytown/integration'; +import { copyLibFiles, libDirPath } from '@qwik.dev/partytown/utils'; import type { AstroIntegration } from 'astro'; import sirv from './sirv.js'; const resolve = createRequire(import.meta.url).resolve; @@ -19,7 +19,7 @@ function appendForwardSlash(str: string) { export default function createPlugin(options?: PartytownOptions): AstroIntegration { let partytownSnippetHtml: string; - const partytownEntrypoint = resolve('@builder.io/partytown/package.json'); + const partytownEntrypoint = resolve('@qwik.dev/partytown/package.json'); const partytownLibDirectory = path.resolve(partytownEntrypoint, '../lib'); return { name: '@astrojs/partytown', diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md index e6895b1a7d..a86705a67c 100644 --- a/packages/integrations/preact/CHANGELOG.md +++ b/packages/integrations/preact/CHANGELOG.md @@ -1,5 +1,17 @@ # @astrojs/preact +## 4.0.2 + +### Patch Changes + +- [#12887](https://github.com/withastro/astro/pull/12887) [`ea603ae`](https://github.com/withastro/astro/commit/ea603aec80531205d38fed11c525b3faa0271903) Thanks [@louisescher](https://github.com/louisescher)! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the `include` or `exclude` property being set on the integration. + +## 4.0.1 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + ## 4.0.0 ### Major Changes @@ -168,7 +180,7 @@ ### Patch Changes -- [#9482](https://github.com/withastro/astro/pull/9482) [`72b26daf694b213918f02d0fcbf90ab5b7ebc31f`](https://github.com/withastro/astro/commit/72b26daf694b213918f02d0fcbf90ab5b7ebc31f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improves compatability with the [Qwik adapter](https://github.com/QwikDev/astro) +- [#9482](https://github.com/withastro/astro/pull/9482) [`72b26daf694b213918f02d0fcbf90ab5b7ebc31f`](https://github.com/withastro/astro/commit/72b26daf694b213918f02d0fcbf90ab5b7ebc31f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improves compatibility with the [Qwik adapter](https://github.com/QwikDev/astro) - [#9479](https://github.com/withastro/astro/pull/9479) [`1baf0b0d3cbd0564954c2366a7278794fad6726e`](https://github.com/withastro/astro/commit/1baf0b0d3cbd0564954c2366a7278794fad6726e) Thanks [@sarah11918](https://github.com/sarah11918)! - Updates README diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index e90779e9b0..6010925b89 100644 --- a/packages/integrations/preact/package.json +++ b/packages/integrations/preact/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/preact", "description": "Use Preact components within Astro", - "version": "4.0.0", + "version": "4.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -38,15 +38,15 @@ "@babel/plugin-transform-react-jsx": "^7.25.9", "@babel/plugin-transform-react-jsx-development": "^7.25.9", "@preact/preset-vite": "2.8.2", - "@preact/signals": "^1.3.0", + "@preact/signals": "^2.0.1", "babel-plugin-transform-hook-names": "^1.0.2", - "preact-render-to-string": "^6.5.11", - "vite": "^6.0.1" + "preact-render-to-string": "^6.5.13", + "vite": "^6.0.7" }, "devDependencies": { "astro": "workspace:*", "astro-scripts": "workspace:*", - "preact": "^10.25.0" + "preact": "^10.25.4" }, "peerDependencies": { "preact": "^10.6.5" diff --git a/packages/integrations/preact/src/index.ts b/packages/integrations/preact/src/index.ts index 4f999103ca..fd16a9e4a4 100644 --- a/packages/integrations/preact/src/index.ts +++ b/packages/integrations/preact/src/index.ts @@ -71,6 +71,18 @@ export default function ({ include, exclude, compat, devtools }: Options = {}): injectScript('page', 'import "preact/debug";'); } }, + 'astro:config:done': ({ logger, config }) => { + const knownJsxRenderers = ['@astrojs/react', '@astrojs/preact', '@astrojs/solid-js']; + const enabledKnownJsxRenderers = config.integrations.filter((renderer) => + knownJsxRenderers.includes(renderer.name), + ); + + if (enabledKnownJsxRenderers.length > 1 && !include && !exclude) { + logger.warn( + 'More than one JSX renderer is enabled. This will lead to unexpected behavior unless you set the `include` or `exclude` option. See https://docs.astro.build/en/guides/integrations-guide/preact/#combining-multiple-jsx-frameworks for more information.', + ); + } + }, }, }; } diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index ea52560aad..1120a0d966 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,29 @@ # @astrojs/react +## 4.1.5 + +### Patch Changes + +- [#12887](https://github.com/withastro/astro/pull/12887) [`ea603ae`](https://github.com/withastro/astro/commit/ea603aec80531205d38fed11c525b3faa0271903) Thanks [@louisescher](https://github.com/louisescher)! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the `include` or `exclude` property being set on the integration. + +## 4.1.4 + +### Patch Changes + +- [#12923](https://github.com/withastro/astro/pull/12923) [`c7642fb`](https://github.com/withastro/astro/commit/c7642fb80b2a2b4d1ec18369b37700ff28b4c041) Thanks [@bluwy](https://github.com/bluwy)! - Removes react-specific entrypoints in `optimizeDeps.include` and rely on `@vitejs/plugin-react` to add + +## 4.1.3 + +### Patch Changes + +- [#12948](https://github.com/withastro/astro/pull/12948) [`51ab7b5`](https://github.com/withastro/astro/commit/51ab7b5722acecce722fb404ca6bc152a109c9e5) Thanks [@bluwy](https://github.com/bluwy)! - Supports checking for React 19 components + +## 4.1.2 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + ## 4.1.1 ### Patch Changes @@ -318,7 +342,7 @@ ### Patch Changes -- [#9482](https://github.com/withastro/astro/pull/9482) [`72b26daf694b213918f02d0fcbf90ab5b7ebc31f`](https://github.com/withastro/astro/commit/72b26daf694b213918f02d0fcbf90ab5b7ebc31f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improves compatability with the [Qwik adapter](https://github.com/QwikDev/astro) +- [#9482](https://github.com/withastro/astro/pull/9482) [`72b26daf694b213918f02d0fcbf90ab5b7ebc31f`](https://github.com/withastro/astro/commit/72b26daf694b213918f02d0fcbf90ab5b7ebc31f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improves compatibility with the [Qwik adapter](https://github.com/QwikDev/astro) - [#9479](https://github.com/withastro/astro/pull/9479) [`1baf0b0d3cbd0564954c2366a7278794fad6726e`](https://github.com/withastro/astro/commit/1baf0b0d3cbd0564954c2366a7278794fad6726e) Thanks [@sarah11918](https://github.com/sarah11918)! - Updates README diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index 602ff03152..38eedb14c1 100644 --- a/packages/integrations/react/package.json +++ b/packages/integrations/react/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/react", "description": "Use React components within Astro", - "version": "4.1.1", + "version": "4.1.5", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -51,11 +51,11 @@ "dependencies": { "@vitejs/plugin-react": "^4.3.4", "ultrahtml": "^1.5.3", - "vite": "^6.0.1" + "vite": "^6.0.7" }, "devDependencies": { - "@types/react": "^18.3.12", - "@types/react-dom": "^18.3.1", + "@types/react": "^18.3.18", + "@types/react-dom": "^18.3.5", "astro": "workspace:*", "astro-scripts": "workspace:*", "cheerio": "1.0.0", diff --git a/packages/integrations/react/server.js b/packages/integrations/react/server.js index 9c3c309cc0..50d6bd94bb 100644 --- a/packages/integrations/react/server.js +++ b/packages/integrations/react/server.js @@ -6,6 +6,7 @@ import StaticHtml from './static-html.js'; const slotName = (str) => str.trim().replace(/[-_]([a-z])/g, (_, w) => w.toUpperCase()); const reactTypeof = Symbol.for('react.element'); +const reactTransitionalTypeof = Symbol.for('react.transitional.element'); async function check(Component, props, children) { // Note: there are packages that do some unholy things to create "components". @@ -28,7 +29,10 @@ async function check(Component, props, children) { function Tester(...args) { try { const vnode = Component(...args); - if (vnode && vnode['$$typeof'] === reactTypeof) { + if ( + vnode && + (vnode['$$typeof'] === reactTypeof || vnode['$$typeof'] === reactTransitionalTypeof) + ) { isReactComponent = true; } } catch {} diff --git a/packages/integrations/react/src/index.ts b/packages/integrations/react/src/index.ts index b1effa27a0..1569a7c70b 100644 --- a/packages/integrations/react/src/index.ts +++ b/packages/integrations/react/src/index.ts @@ -54,20 +54,10 @@ function getViteConfiguration( ) { return { optimizeDeps: { - include: [ - reactConfig.client, - 'react', - 'react/jsx-runtime', - 'react/jsx-dev-runtime', - 'react-dom', - 'react-compiler-runtime', - ], + include: [reactConfig.client], exclude: [reactConfig.server], }, plugins: [react({ include, exclude, babel }), optionsPlugin(!!experimentalReactChildren)], - resolve: { - dedupe: ['react', 'react-dom', 'react-dom/server'], - }, ssr: { external: reactConfig.externals, noExternal: [ @@ -110,6 +100,18 @@ export default function ({ injectScript('before-hydration', preamble); } }, + 'astro:config:done': ({ logger, config }) => { + const knownJsxRenderers = ['@astrojs/react', '@astrojs/preact', '@astrojs/solid-js']; + const enabledKnownJsxRenderers = config.integrations.filter((renderer) => + knownJsxRenderers.includes(renderer.name), + ); + + if (enabledKnownJsxRenderers.length > 1 && !include && !exclude) { + logger.warn( + 'More than one JSX renderer is enabled. This will lead to unexpected behavior unless you set the `include` or `exclude` option. See https://docs.astro.build/en/guides/integrations-guide/react/#combining-multiple-jsx-frameworks for more information.', + ); + } + }, }, }; } diff --git a/packages/integrations/sitemap/package.json b/packages/integrations/sitemap/package.json index 1c4bcacdc6..1851b273de 100644 --- a/packages/integrations/sitemap/package.json +++ b/packages/integrations/sitemap/package.json @@ -35,7 +35,7 @@ "dependencies": { "sitemap": "^8.0.0", "stream-replace-string": "^2.0.0", - "zod": "^3.23.8" + "zod": "^3.24.1" }, "devDependencies": { "@astrojs/node": "^9.0.0", diff --git a/packages/integrations/sitemap/test/config.test.js b/packages/integrations/sitemap/test/config.test.js index e4b7c38826..4dda5304de 100644 --- a/packages/integrations/sitemap/test/config.test.js +++ b/packages/integrations/sitemap/test/config.test.js @@ -27,7 +27,7 @@ describe('Config', () => { assert.equal(urls.length, 1); }); - it('xslURL: Includes xml-stylsheet', async () => { + it('xslURL: Includes xml-stylesheet', async () => { const xml = await fixture.readFile('/sitemap-0.xml'); assert.ok( xml.includes(''), @@ -56,7 +56,7 @@ describe('Config', () => { assert.equal(urls.length, 1); }); - it('xslURL: Includes xml-stylsheet', async () => { + it('xslURL: Includes xml-stylesheet', async () => { const xml = await fixture.readFile('/client/sitemap-0.xml'); assert.ok( xml.includes(''), diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md index 6172a8ed9e..8453f94ab9 100644 --- a/packages/integrations/solid/CHANGELOG.md +++ b/packages/integrations/solid/CHANGELOG.md @@ -1,5 +1,23 @@ # @astrojs/solid-js +## 5.0.3 + +### Patch Changes + +- [#12887](https://github.com/withastro/astro/pull/12887) [`ea603ae`](https://github.com/withastro/astro/commit/ea603aec80531205d38fed11c525b3faa0271903) Thanks [@louisescher](https://github.com/louisescher)! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the `include` or `exclude` property being set on the integration. + +## 5.0.2 + +### Patch Changes + +- [#12923](https://github.com/withastro/astro/pull/12923) [`c7642fb`](https://github.com/withastro/astro/commit/c7642fb80b2a2b4d1ec18369b37700ff28b4c041) Thanks [@bluwy](https://github.com/bluwy)! - Adds the client entrypoint to `optimizeDeps.include` + +## 5.0.1 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + ## 5.0.0 ### Major Changes @@ -186,7 +204,7 @@ ### Patch Changes -- [#9482](https://github.com/withastro/astro/pull/9482) [`72b26daf694b213918f02d0fcbf90ab5b7ebc31f`](https://github.com/withastro/astro/commit/72b26daf694b213918f02d0fcbf90ab5b7ebc31f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improves compatability with the [Qwik adapter](https://github.com/QwikDev/astro) +- [#9482](https://github.com/withastro/astro/pull/9482) [`72b26daf694b213918f02d0fcbf90ab5b7ebc31f`](https://github.com/withastro/astro/commit/72b26daf694b213918f02d0fcbf90ab5b7ebc31f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improves compatibility with the [Qwik adapter](https://github.com/QwikDev/astro) - [#9479](https://github.com/withastro/astro/pull/9479) [`1baf0b0d3cbd0564954c2366a7278794fad6726e`](https://github.com/withastro/astro/commit/1baf0b0d3cbd0564954c2366a7278794fad6726e) Thanks [@sarah11918](https://github.com/sarah11918)! - Updates README diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json index 987bc37d78..7dda5254cc 100644 --- a/packages/integrations/solid/package.json +++ b/packages/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/solid-js", - "version": "5.0.0", + "version": "5.0.3", "description": "Use Solid components within Astro", "type": "module", "types": "./dist/index.d.ts", @@ -36,12 +36,12 @@ }, "dependencies": { "vite-plugin-solid": "^2.11.0", - "vite": "^6.0.1" + "vite": "^6.0.7" }, "devDependencies": { "astro": "workspace:*", "astro-scripts": "workspace:*", - "solid-js": "^1.9.3" + "solid-js": "^1.9.4" }, "peerDependencies": { "solid-devtools": "^0.30.1", diff --git a/packages/integrations/solid/src/index.ts b/packages/integrations/solid/src/index.ts index 60680ff9c3..deab40fd07 100644 --- a/packages/integrations/solid/src/index.ts +++ b/packages/integrations/solid/src/index.ts @@ -51,6 +51,7 @@ function getViteConfiguration( ) { const config: UserConfig = { optimizeDeps: { + include: ['@astrojs/solid-js/client.js'], exclude: ['@astrojs/solid-js/server.js'], }, plugins: [solid({ include, exclude, ssr: true })], @@ -107,6 +108,18 @@ export default function (options: Options = {}): AstroIntegration { injectScript('page', 'import "solid-devtools";'); } }, + 'astro:config:done': ({ logger, config }) => { + const knownJsxRenderers = ['@astrojs/react', '@astrojs/preact', '@astrojs/solid-js']; + const enabledKnownJsxRenderers = config.integrations.filter((renderer) => + knownJsxRenderers.includes(renderer.name), + ); + + if (enabledKnownJsxRenderers.length > 1 && !options.include && !options.exclude) { + logger.warn( + 'More than one JSX renderer is enabled. This will lead to unexpected behavior unless you set the `include` or `exclude` option. See https://docs.astro.build/en/guides/integrations-guide/solid-js/#combining-multiple-jsx-frameworks for more information.', + ); + } + }, }, }; } diff --git a/packages/integrations/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md index f79234b215..9d44d3f6d2 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,17 @@ # @astrojs/svelte +## 7.0.3 + +### Patch Changes + +- [#12776](https://github.com/withastro/astro/pull/12776) [`8809b85`](https://github.com/withastro/astro/commit/8809b85747c1af4a772a3649ce8a8b3bb0f31236) Thanks [@aminevg](https://github.com/aminevg)! - Fixes an issue where TypeScript couldn't infer the correct types of the `server.mjs` file + +## 7.0.2 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + ## 7.0.1 ### Patch Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index aa576300cf..8dcb029747 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "7.0.1", + "version": "7.0.3", "description": "Use Svelte components within Astro", "type": "module", "types": "./dist/index.d.ts", @@ -39,14 +39,14 @@ "dev": "astro-scripts dev \"src/**/*.ts\"" }, "dependencies": { - "@sveltejs/vite-plugin-svelte": "^5.0.1", - "svelte2tsx": "^0.7.22", - "vite": "^6.0.1" + "@sveltejs/vite-plugin-svelte": "^5.0.3", + "svelte2tsx": "^0.7.34", + "vite": "^6.0.7" }, "devDependencies": { "astro": "workspace:*", "astro-scripts": "workspace:*", - "svelte": "^5.2.9" + "svelte": "^5.17.3" }, "peerDependencies": { "astro": "^5.0.0", diff --git a/packages/integrations/svelte/server.d.ts b/packages/integrations/svelte/server.d.ts index bb2f29556c..75cc3eb64d 100644 --- a/packages/integrations/svelte/server.d.ts +++ b/packages/integrations/svelte/server.d.ts @@ -1,2 +1,4 @@ import type { NamedSSRLoadedRendererValue } from 'astro'; -export default NamedSSRLoadedRendererValue; + +declare const renderer: NamedSSRLoadedRendererValue; +export default renderer; diff --git a/packages/integrations/tailwind/CHANGELOG.md b/packages/integrations/tailwind/CHANGELOG.md index 65307dc5ac..f4be96ff48 100644 --- a/packages/integrations/tailwind/CHANGELOG.md +++ b/packages/integrations/tailwind/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/tailwind +## 5.1.4 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + ## 5.1.3 ### Patch Changes diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json index 4ddcfcec43..4683313524 100644 --- a/packages/integrations/tailwind/package.json +++ b/packages/integrations/tailwind/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/tailwind", "description": "Use Tailwind CSS to style your Astro site", - "version": "5.1.3", + "version": "5.1.4", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -42,8 +42,8 @@ "devDependencies": { "astro": "workspace:*", "astro-scripts": "workspace:*", - "tailwindcss": "^3.4.14", - "vite": "^6.0.1" + "tailwindcss": "^3.4.17", + "vite": "^6.0.7" }, "peerDependencies": { "astro": "^3.0.0 || ^4.0.0 || ^5.0.0", diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md index d0f6b8ee7f..700cc354b4 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -1,5 +1,23 @@ # @astrojs/vue +## 5.0.5 + +### Patch Changes + +- [#12887](https://github.com/withastro/astro/pull/12887) [`ea603ae`](https://github.com/withastro/astro/commit/ea603aec80531205d38fed11c525b3faa0271903) Thanks [@louisescher](https://github.com/louisescher)! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the `include` or `exclude` property being set on the integration. + +## 5.0.4 + +### Patch Changes + +- [#12776](https://github.com/withastro/astro/pull/12776) [`8809b85`](https://github.com/withastro/astro/commit/8809b85747c1af4a772a3649ce8a8b3bb0f31236) Thanks [@aminevg](https://github.com/aminevg)! - Fixes an issue where TypeScript couldn't infer the correct types of the `server.mjs` file + +## 5.0.3 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + ## 5.0.2 ### Patch Changes diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index 49928cefe1..16fd6e7f92 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "5.0.2", + "version": "5.0.5", "description": "Use Vue components within Astro", "type": "module", "types": "./dist/index.d.ts", @@ -44,15 +44,15 @@ "dependencies": { "@vitejs/plugin-vue": "^5.2.1", "@vitejs/plugin-vue-jsx": "^4.1.1", - "@vue/compiler-sfc": "^3.5.12", - "vite": "^6.0.1", - "vite-plugin-vue-devtools": "^7.6.7" + "@vue/compiler-sfc": "^3.5.13", + "vite": "^6.0.7", + "vite-plugin-vue-devtools": "^7.7.0" }, "devDependencies": { "astro": "workspace:*", "astro-scripts": "workspace:*", "cheerio": "1.0.0", - "linkedom": "^0.18.5", + "linkedom": "^0.18.6", "vue": "^3.5.13" }, "peerDependencies": { diff --git a/packages/integrations/vue/server.d.ts b/packages/integrations/vue/server.d.ts index bb2f29556c..75cc3eb64d 100644 --- a/packages/integrations/vue/server.d.ts +++ b/packages/integrations/vue/server.d.ts @@ -1,2 +1,4 @@ import type { NamedSSRLoadedRendererValue } from 'astro'; -export default NamedSSRLoadedRendererValue; + +declare const renderer: NamedSSRLoadedRendererValue; +export default renderer; diff --git a/packages/integrations/vue/src/index.ts b/packages/integrations/vue/src/index.ts index fc54a5f99a..f811673232 100644 --- a/packages/integrations/vue/src/index.ts +++ b/packages/integrations/vue/src/index.ts @@ -116,6 +116,8 @@ async function getViteConfiguration( const config: UserConfig = { optimizeDeps: { + // We add `vue` here as `@vitejs/plugin-vue` doesn't add it and we want to prevent + // re-optimization if the `vue` import is only encountered later. include: ['@astrojs/vue/client.js', 'vue'], exclude: ['@astrojs/vue/server.js', VIRTUAL_MODULE_ID], }, @@ -156,6 +158,21 @@ export default function (options?: Options): AstroIntegration { } updateConfig({ vite: await getViteConfiguration(command, options) }); }, + 'astro:config:done': ({ logger, config }) => { + if (!options?.jsx) return; + + const knownJsxRenderers = ['@astrojs/react', '@astrojs/preact', '@astrojs/solid-js']; + const enabledKnownJsxRenderers = config.integrations.filter((renderer) => + knownJsxRenderers.includes(renderer.name), + ); + + // This error can only be thrown from here since Vue is an optional JSX renderer + if (enabledKnownJsxRenderers.length > 1 && !options?.include && !options?.exclude) { + logger.warn( + 'More than one JSX renderer is enabled. This will lead to unexpected behavior unless you set the `include` or `exclude` option. See https://docs.astro.build/en/guides/integrations-guide/solid-js/#combining-multiple-jsx-frameworks for more information.', + ); + } + }, }, }; } diff --git a/packages/integrations/web-vitals/package.json b/packages/integrations/web-vitals/package.json index bdcd2d5d04..0c1374736c 100644 --- a/packages/integrations/web-vitals/package.json +++ b/packages/integrations/web-vitals/package.json @@ -41,7 +41,7 @@ "@astrojs/db": "workspace:*", "astro": "workspace:*", "astro-scripts": "workspace:*", - "linkedom": "^0.18.5" + "linkedom": "^0.18.6" }, "publishConfig": { "provenance": true diff --git a/packages/integrations/web-vitals/test/fixtures/basics/package.json b/packages/integrations/web-vitals/test/fixtures/basics/package.json index 23404fc802..9c4a384f8c 100644 --- a/packages/integrations/web-vitals/test/fixtures/basics/package.json +++ b/packages/integrations/web-vitals/test/fixtures/basics/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@astrojs/db": "workspace:*", - "@astrojs/node": "^8.3.4", + "@astrojs/node": "^9.0.0", "@astrojs/web-vitals": "workspace:*", "astro": "workspace:*" } diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md index f30f484298..93399ddae7 100644 --- a/packages/markdown/remark/CHANGELOG.md +++ b/packages/markdown/remark/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/markdown-remark +## 6.0.2 + +### Patch Changes + +- [#12361](https://github.com/withastro/astro/pull/12361) [`3d89e62`](https://github.com/withastro/astro/commit/3d89e6282235a8da45d9ddfe02bcf7ec78056941) Thanks [@LunaticMuch](https://github.com/LunaticMuch)! - Upgrades the `esbuild` version to match `vite` + ## 6.0.1 ### Patch Changes @@ -14,7 +20,7 @@ ### Major Changes -- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specfic metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: +- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specific metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: - `vfile.data.__astroHeadings` -> `vfile.data.astro.headings` - `vfile.data.imagePaths` -> `vfile.data.astro.imagePaths` @@ -74,7 +80,7 @@ ### Major Changes -- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specfic metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: +- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specific metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: - `vfile.data.__astroHeadings` -> `vfile.data.astro.headings` - `vfile.data.imagePaths` -> `vfile.data.astro.imagePaths` diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json index 2d133873b5..fab1c201ff 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-remark", - "version": "6.0.1", + "version": "6.0.2", "type": "module", "author": "withastro", "license": "MIT", @@ -45,7 +45,7 @@ "remark-parse": "^11.0.0", "remark-rehype": "^11.1.1", "remark-smartypants": "^3.0.2", - "shiki": "^1.23.1", + "shiki": "^1.26.2", "unified": "^11.0.5", "unist-util-remove-position": "^5.0.0", "unist-util-visit": "^5.0.0", @@ -59,7 +59,7 @@ "@types/mdast": "^4.0.4", "@types/unist": "^3.0.3", "astro-scripts": "workspace:*", - "esbuild": "^0.21.5", + "esbuild": "^0.24.2", "mdast-util-mdx-expression": "^2.0.1" }, "publishConfig": { diff --git a/packages/markdown/remark/src/import-plugin-default.ts b/packages/markdown/remark/src/import-plugin-default.ts index 1b6778f753..2b898aa937 100644 --- a/packages/markdown/remark/src/import-plugin-default.ts +++ b/packages/markdown/remark/src/import-plugin-default.ts @@ -10,13 +10,13 @@ let cwdUrlStr: string | undefined; export async function importPlugin(p: string): Promise { // Try import from this package first try { - const importResult = await import(p); + const importResult = await import(/* @vite-ignore */ p); return importResult.default; } catch {} // Try import from user project cwdUrlStr ??= pathToFileURL(path.join(process.cwd(), 'package.json')).toString(); const resolved = importMetaResolve(p, cwdUrlStr); - const importResult = await import(resolved); + const importResult = await import(/* @vite-ignore */ resolved); return importResult.default; } diff --git a/packages/markdown/remark/test/shiki.test.js b/packages/markdown/remark/test/shiki.test.js index 45582d7525..e230b29823 100644 --- a/packages/markdown/remark/test/shiki.test.js +++ b/packages/markdown/remark/test/shiki.test.js @@ -124,7 +124,7 @@ describe('shiki syntax highlighting', () => { assert.match(html, /data-language="cjs"/); }); - it('the markdown processsor support lang alias', async () => { + it('the markdown processor support lang alias', async () => { const processor = await createMarkdownProcessor({ shikiConfig: { langAlias: { diff --git a/packages/studio/CHANGELOG.md b/packages/studio/CHANGELOG.md index 6947b1d039..bf9df1bc3d 100644 --- a/packages/studio/CHANGELOG.md +++ b/packages/studio/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/studio +## 0.1.3 + +### Patch Changes + +- [#12799](https://github.com/withastro/astro/pull/12799) [`739dbfb`](https://github.com/withastro/astro/commit/739dbfba4214107cf8fc40c702834dad33eed3b0) Thanks [@ascorbic](https://github.com/ascorbic)! - Upgrades Vite to pin esbuild + ## 0.1.2 ### Patch Changes diff --git a/packages/studio/package.json b/packages/studio/package.json index 445788665b..a495bdb93d 100644 --- a/packages/studio/package.json +++ b/packages/studio/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/studio", - "version": "0.1.2", + "version": "0.1.3", "description": "Internal package powering integrations between Astro projects and Astro Studio", "license": "MIT", "repository": { @@ -36,12 +36,12 @@ "dependencies": { "ci-info": "^4.1.0", "kleur": "^4.1.5", - "yocto-spinner": "^0.1.0" + "yocto-spinner": "^0.1.2" }, "devDependencies": { "astro": "workspace:*", "astro-scripts": "workspace:*", - "typescript": "^5.6.3", - "vite": "^6.0.1" + "typescript": "^5.7.3", + "vite": "^6.0.7" } } diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json index 5c49696f91..ea934fdd04 100644 --- a/packages/telemetry/package.json +++ b/packages/telemetry/package.json @@ -30,7 +30,7 @@ ], "dependencies": { "ci-info": "^4.1.0", - "debug": "^4.3.7", + "debug": "^4.4.0", "dlv": "^1.1.3", "dset": "^3.1.4", "is-docker": "^3.0.0", diff --git a/packages/underscore-redirects/CHANGELOG.md b/packages/underscore-redirects/CHANGELOG.md index 95bb95f441..b384c1d807 100644 --- a/packages/underscore-redirects/CHANGELOG.md +++ b/packages/underscore-redirects/CHANGELOG.md @@ -1,5 +1,58 @@ # @astrojs/underscore-redirects +## 0.6.0 + +### Minor Changes + +- [#12924](https://github.com/withastro/astro/pull/12924) [`3caa337`](https://github.com/withastro/astro/commit/3caa337f0ba917ad677fd8438b7045abc5d29e1c) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Updates how the output is determined in `createRedirectsFromAstroRoutes`. Since `v0.5.0`, the output would use the `buildOutput` property and `config.output` as a fallback. It no longer uses this fallback. + +- [#12924](https://github.com/withastro/astro/pull/12924) [`3caa337`](https://github.com/withastro/astro/commit/3caa337f0ba917ad677fd8438b7045abc5d29e1c) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Updates the input requirements of `createRedirectsFromAstroRoutes`: + + - `routeToDynamicTargetMap` keys are `IntegrationResolvedRoute` instead of `IntegrationRouteData` (obtained from the `astro:routes:resolved` hook) + - There's a new `assets` property, that can be obtained from the `astro:build:done` hook + + ```js + function myIntegration() { + let routes; + let buildOutput; + let config; + + return { + name: 'my-integration', + hooks: { + 'astro:routes:resolved': (params) => { + routes = params.routes; + }, + 'astro:config:done': (params) => { + buildOutput = params.buildOutput; + config = params.config; + }, + 'astro:build:done': (params) => { + const redirects = createRedirectsFromAstroRoutes({ + config, + buildOutput, + routeToDynamicTargetMap: new Map(routes.map((route) => [route, ''])), + dir: params.dir, + assets: params.assets, + }); + }, + }, + }; + } + ``` + +## 0.5.1 + +### Patch Changes + +- [#12904](https://github.com/withastro/astro/pull/12904) [`7fdbd43`](https://github.com/withastro/astro/commit/7fdbd4384dea186b9bbc2c6b130e8aba2a2c1e89) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes the type of `force` + +## 0.5.0 + +### Minor Changes + +- [#12768](https://github.com/withastro/astro/pull/12768) [`524c855`](https://github.com/withastro/astro/commit/524c855075bb75696500445fdc31cb2c69b09627) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new `buildOutput` property to the API `createRedirectsFromAstroRoutes` + ## 0.4.0 ### Minor Changes diff --git a/packages/underscore-redirects/package.json b/packages/underscore-redirects/package.json index c2a1c6b0bd..9bcce285ce 100644 --- a/packages/underscore-redirects/package.json +++ b/packages/underscore-redirects/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/underscore-redirects", "description": "Utilities to generate _redirects files in Astro projects", - "version": "0.4.0", + "version": "0.6.0", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/underscore-redirects/src/astro.ts b/packages/underscore-redirects/src/astro.ts index 251de499b5..bd3e3b2ea3 100644 --- a/packages/underscore-redirects/src/astro.ts +++ b/packages/underscore-redirects/src/astro.ts @@ -1,10 +1,15 @@ import { posix } from 'node:path'; -import type { AstroConfig, IntegrationRouteData, ValidRedirectStatus } from 'astro'; +import type { + AstroConfig, + HookParameters, + IntegrationResolvedRoute, + ValidRedirectStatus, +} from 'astro'; import { Redirects } from './redirects.js'; const pathJoin = posix.join; -function getRedirectStatus(route: IntegrationRouteData): ValidRedirectStatus { +function getRedirectStatus(route: IntegrationResolvedRoute): ValidRedirectStatus { if (typeof route.redirect === 'object') { return route.redirect.status; } @@ -16,8 +21,10 @@ interface CreateRedirectsFromAstroRoutesParams { /** * Maps a `RouteData` to a dynamic target */ - routeToDynamicTargetMap: Map; + routeToDynamicTargetMap: Map; dir: URL; + buildOutput: 'static' | 'server'; + assets: HookParameters<'astro:build:done'>['assets']; } /** @@ -27,6 +34,8 @@ export function createRedirectsFromAstroRoutes({ config, routeToDynamicTargetMap, dir, + buildOutput, + assets, }: CreateRedirectsFromAstroRoutesParams) { const base = config.base && config.base !== '/' @@ -34,10 +43,10 @@ export function createRedirectsFromAstroRoutes({ ? config.base.slice(0, -1) : config.base : ''; - const output = config.output; const _redirects = new Redirects(); for (const [route, dynamicTarget = ''] of routeToDynamicTargetMap) { + const distURL = assets.get(route.pattern); // A route with a `pathname` is as static route. if (route.pathname) { if (route.redirect) { @@ -54,13 +63,13 @@ export function createRedirectsFromAstroRoutes({ } // If this is a static build we don't want to add redirects to the HTML file. - if (output === 'static') { + if (buildOutput === 'static') { continue; - } else if (route.distURL) { + } else if (distURL) { _redirects.add({ dynamic: false, input: `${base}${route.pathname}`, - target: prependForwardSlash(route.distURL.toString().replace(dir.toString(), '')), + target: prependForwardSlash(distURL.toString().replace(dir.toString(), '')), status: 200, weight: 2, }); @@ -73,7 +82,7 @@ export function createRedirectsFromAstroRoutes({ weight: 2, }); - if (route.route === '/404') { + if (route.pattern === '/404') { _redirects.add({ dynamic: true, input: '/*', @@ -89,7 +98,7 @@ export function createRedirectsFromAstroRoutes({ const pattern = generateDynamicPattern(route); // This route was prerendered and should be forwarded to the HTML file. - if (route.distURL) { + if (distURL) { const targetRoute = route.redirectRoute ?? route; const targetPattern = generateDynamicPattern(targetRoute); let target = targetPattern; @@ -125,7 +134,7 @@ export function createRedirectsFromAstroRoutes({ * /team/articles/* * With stars replacing spread and :id syntax replacing [id] */ -function generateDynamicPattern(route: IntegrationRouteData) { +function generateDynamicPattern(route: IntegrationResolvedRoute) { const pattern = '/' + route.segments diff --git a/packages/underscore-redirects/src/redirects.ts b/packages/underscore-redirects/src/redirects.ts index 11ed9085e6..38a70c448c 100644 --- a/packages/underscore-redirects/src/redirects.ts +++ b/packages/underscore-redirects/src/redirects.ts @@ -9,7 +9,7 @@ export type RedirectDefinition = { // a priority once inserted. weight: number; status: number; - force?: number; + force?: boolean; }; export class Redirects { diff --git a/packages/underscore-redirects/test/astro.test.js b/packages/underscore-redirects/test/astro.test.js index 71ee13f339..6a4944dc90 100644 --- a/packages/underscore-redirects/test/astro.test.js +++ b/packages/underscore-redirects/test/astro.test.js @@ -3,28 +3,24 @@ import { describe, it } from 'node:test'; import { createRedirectsFromAstroRoutes } from '../dist/index.js'; describe('Astro', () => { - const serverConfig = { - output: 'server', - build: { format: 'directory' }, - }; - it('Creates a Redirects object from routes', () => { const routeToDynamicTargetMap = new Map( Array.from([ - [ - { pathname: '/', distURL: new URL('./index.html', import.meta.url), segments: [] }, - './.adapter/dist/entry.mjs', - ], - [ - { pathname: '/one', distURL: new URL('./one/index.html', import.meta.url), segments: [] }, - './.adapter/dist/entry.mjs', - ], + [{ pattern: '/', pathname: '/', segments: [] }, './.adapter/dist/entry.mjs'], + [{ pattern: '/one', pathname: '/one', segments: [] }, './.adapter/dist/entry.mjs'], ]), ); const _redirects = createRedirectsFromAstroRoutes({ - config: serverConfig, + config: { + build: { format: 'directory' }, + }, routeToDynamicTargetMap, dir: new URL(import.meta.url), + buildOutput: 'server', + assets: new Map([ + ['/', new URL('./index.html', import.meta.url)], + ['/one', new URL('./one/index.html', import.meta.url)], + ]), }); assert.equal(_redirects.definitions.length, 2); diff --git a/packages/upgrade/CHANGELOG.md b/packages/upgrade/CHANGELOG.md index a41d315aab..e99560ff3e 100644 --- a/packages/upgrade/CHANGELOG.md +++ b/packages/upgrade/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/upgrade +## 0.4.3 + +### Patch Changes + +- [#12739](https://github.com/withastro/astro/pull/12739) [`1f9571b`](https://github.com/withastro/astro/commit/1f9571b2b9839a5513fe2c03a90ff36235e8efe2) Thanks [@gnify](https://github.com/gnify)! - Updates displayed data to show both source and target versions + ## 0.4.2 ### Patch Changes diff --git a/packages/upgrade/package.json b/packages/upgrade/package.json index ae633f2302..9bac1161b1 100644 --- a/packages/upgrade/package.json +++ b/packages/upgrade/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/upgrade", - "version": "0.4.2", + "version": "0.4.3", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/upgrade/src/actions/install.ts b/packages/upgrade/src/actions/install.ts index 6e593b976b..ac62b15986 100644 --- a/packages/upgrade/src/actions/install.ts +++ b/packages/upgrade/src/actions/install.ts @@ -48,7 +48,7 @@ export async function install( const majors: PackageInfo[] = []; for (const packageInfo of toInstall) { const word = ctx.dryRun ? 'can' : 'will'; - await upgrade(packageInfo, `${word} be updated to`); + await upgrade(packageInfo, `${word} be updated`); if (packageInfo.isMajor) { majors.push(packageInfo); } diff --git a/packages/upgrade/src/messages.ts b/packages/upgrade/src/messages.ts index 17548371c8..032faa1ac9 100644 --- a/packages/upgrade/src/messages.ts +++ b/packages/upgrade/src/messages.ts @@ -109,14 +109,17 @@ export const info = async (prefix: string, text: string, version = '') => { ); } }; + export const upgrade = async (packageInfo: PackageInfo, text: string) => { - const { name, isMajor = false, targetVersion } = packageInfo; + const { name, isMajor = false, targetVersion, currentVersion } = packageInfo; const bg = isMajor ? (v: string) => color.bgYellow(color.black(` ${v} `)) : color.green; const style = isMajor ? color.yellow : color.green; const symbol = isMajor ? '▲' : '●'; + + const fromVersion = currentVersion.replace(/^\D+/, ''); const toVersion = targetVersion.replace(/^\D+/, ''); - const version = `v${toVersion}`; + const version = `from v${fromVersion} to v${toVersion}`; const length = 12 + name.length + text.length + version.length; if (length > stdout.columns) { diff --git a/packages/upgrade/test/install.test.js b/packages/upgrade/test/install.test.js index 4ceaa81c84..c4d56dfbe5 100644 --- a/packages/upgrade/test/install.test.js +++ b/packages/upgrade/test/install.test.js @@ -39,7 +39,7 @@ describe('install', () => { ], }; await install(context); - assert.equal(fixture.hasMessage('● astro can be updated to v1.0.1'), true); + assert.equal(fixture.hasMessage('● astro can be updated from v1.0.0 to v1.0.1'), true); }); it('minor', async () => { @@ -54,7 +54,7 @@ describe('install', () => { ], }; await install(context); - assert.equal(fixture.hasMessage('● astro can be updated to v1.2.0'), true); + assert.equal(fixture.hasMessage('● astro can be updated from v1.0.0 to v1.2.0'), true); }); it('major (reject)', async () => { @@ -81,7 +81,7 @@ describe('install', () => { ], }; await install(context); - assert.equal(fixture.hasMessage('▲ astro can be updated to v2.0.0'), true); + assert.equal(fixture.hasMessage('▲ astro can be updated from v1.0.0 to v2.0.0'), true); assert.equal(prompted, true); assert.equal(exitCode, 0); assert.equal(fixture.hasMessage('check Be sure to follow the CHANGELOG.'), false); @@ -111,7 +111,7 @@ describe('install', () => { ], }; await install(context); - assert.equal(fixture.hasMessage('▲ astro can be updated to v2.0.0'), true); + assert.equal(fixture.hasMessage('▲ astro can be updated from v1.0.0 to v2.0.0'), true); assert.equal(prompted, true); assert.equal(exitCode, undefined); assert.equal(fixture.hasMessage('check Be sure to follow the CHANGELOG.'), true); @@ -149,8 +149,8 @@ describe('install', () => { ], }; await install(context); - assert.equal(fixture.hasMessage('▲ a can be updated to v2.0.0'), true); - assert.equal(fixture.hasMessage('▲ b can be updated to v7.0.0'), true); + assert.equal(fixture.hasMessage('▲ a can be updated from v1.0.0 to v2.0.0'), true); + assert.equal(fixture.hasMessage('▲ b can be updated from v6.0.0 to v7.0.0'), true); assert.equal(prompted, true); assert.equal(exitCode, undefined); const [changelog, a, b] = fixture.messages().slice(-5); @@ -199,9 +199,9 @@ describe('install', () => { }; await install(context); assert.equal(fixture.hasMessage('◼ current is up to date on v1.0.0'), true); - assert.equal(fixture.hasMessage('● patch can be updated to v1.0.1'), true); - assert.equal(fixture.hasMessage('● minor can be updated to v1.2.0'), true); - assert.equal(fixture.hasMessage('▲ major can be updated to v3.0.0'), true); + assert.equal(fixture.hasMessage('● patch can be updated from v1.0.0 to v1.0.1'), true); + assert.equal(fixture.hasMessage('● minor can be updated from v1.0.0 to v1.2.0'), true); + assert.equal(fixture.hasMessage('▲ major can be updated from v1.0.0 to v3.0.0'), true); assert.equal(prompted, true); assert.equal(exitCode, undefined); assert.equal(fixture.hasMessage('check Be sure to follow the CHANGELOG.'), true); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e9c779808e..7c43a2a7c8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -14,7 +14,7 @@ importers: devDependencies: '@astrojs/check': specifier: ^0.9.4 - version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.2) + version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.3) '@biomejs/biome': specifier: 1.9.3 version: 1.9.3 @@ -22,20 +22,20 @@ importers: specifier: ^0.5.0 version: 0.5.0 '@changesets/cli': - specifier: ^2.27.10 - version: 2.27.10 + specifier: ^2.27.11 + version: 2.27.11 '@types/node': specifier: ^18.17.8 version: 18.19.50 esbuild: - specifier: ^0.21.5 - version: 0.21.5 + specifier: ^0.24.2 + version: 0.24.2 eslint: - specifier: ^9.15.0 - version: 9.16.0(jiti@2.4.0) + specifier: ^9.18.0 + version: 9.18.0(jiti@1.21.6) eslint-plugin-regexp: specifier: ^2.7.0 - version: 2.7.0(eslint@9.16.0(jiti@2.4.0)) + version: 2.7.0(eslint@9.18.0(jiti@1.21.6)) globby: specifier: ^14.0.2 version: 14.0.2 @@ -43,23 +43,23 @@ importers: specifier: ^1.2.1 version: 1.2.1 prettier: - specifier: ^3.4.1 + specifier: ^3.4.2 version: 3.4.2 prettier-plugin-astro: specifier: ^0.14.1 version: 0.14.1 publint: - specifier: ^0.2.12 - version: 0.2.12 + specifier: ^0.3.2 + version: 0.3.2 turbo: specifier: ^2.3.3 version: 2.3.3 typescript: - specifier: ~5.7.2 - version: 5.7.2 + specifier: ~5.7.3 + version: 5.7.3 typescript-eslint: - specifier: ^8.16.0 - version: 8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2) + specifier: ^8.19.1 + version: 8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3) benchmark: dependencies: @@ -67,8 +67,8 @@ importers: specifier: workspace:* version: link:../packages/integrations/mdx '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) '@benchmark/adapter': specifier: workspace:* version: link:packages/adapter @@ -97,15 +97,15 @@ importers: specifier: ^0.33.3 version: 0.33.3 tinyexec: - specifier: ^0.3.1 - version: 0.3.1 + specifier: ^0.3.2 + version: 0.3.2 devDependencies: '@codspeed/vitest-plugin': - specifier: 3.1.1 - version: 3.1.1(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))(vitest@2.1.8(@types/node@18.19.50)(jsdom@23.2.0)(sass@1.82.0)) + specifier: 4.0.0 + version: 4.0.0(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))(vitest@3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(jsdom@23.2.0)(sass@1.83.1)(yaml@2.5.1)) vitest: - specifier: 2.1.8 - version: 2.1.8(@types/node@18.19.50)(jsdom@23.2.0)(sass@1.82.0) + specifier: ^3.0.0-beta.4 + version: 3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(jsdom@23.2.0)(sass@1.83.1)(yaml@2.5.1) benchmark/packages/adapter: dependencies: @@ -142,37 +142,37 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro examples/blog: dependencies: '@astrojs/mdx': - specifier: ^4.0.2 + specifier: ^4.0.6 version: link:../../packages/integrations/mdx '@astrojs/rss': - specifier: ^4.0.10 + specifier: ^4.0.11 version: link:../../packages/astro-rss '@astrojs/sitemap': specifier: ^3.2.1 version: link:../../packages/integrations/sitemap astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro examples/container-with-vitest: dependencies: '@astrojs/react': - specifier: ^4.1.1 + specifier: ^4.1.5 version: link:../../packages/integrations/react astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -181,60 +181,60 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) vitest: - specifier: ^2.1.6 - version: 2.1.6(@types/node@18.19.50)(jiti@2.4.0)(jsdom@23.2.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^3.0.0-beta.4 + version: 3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(jsdom@23.2.0)(sass@1.83.1)(yaml@2.5.1) devDependencies: '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^18.3.18 + version: 18.3.18 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^18.3.5 + version: 18.3.5(@types/react@18.3.18) examples/framework-alpine: dependencies: '@astrojs/alpinejs': - specifier: ^0.4.0 + specifier: ^0.4.1 version: link:../../packages/integrations/alpinejs '@types/alpinejs': - specifier: ^3.13.10 - version: 3.13.10 + specifier: ^3.13.11 + version: 3.13.11 alpinejs: - specifier: ^3.14.3 - version: 3.14.3 + specifier: ^3.14.8 + version: 3.14.8 astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro examples/framework-multiple: dependencies: '@astrojs/preact': - specifier: ^4.0.0 + specifier: ^4.0.2 version: link:../../packages/integrations/preact '@astrojs/react': - specifier: ^4.1.1 + specifier: ^4.1.5 version: link:../../packages/integrations/react '@astrojs/solid-js': - specifier: ^5.0.0 + specifier: ^5.0.3 version: link:../../packages/integrations/solid '@astrojs/svelte': - specifier: ^7.0.1 + specifier: ^7.0.3 version: link:../../packages/integrations/svelte '@astrojs/vue': - specifier: ^5.0.2 + specifier: ^5.0.5 version: link:../../packages/integrations/vue '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^18.3.18 + version: 18.3.18 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^18.3.5 + version: 18.3.5(@types/react@18.3.18) astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro preact: - specifier: ^10.24.3 - version: 10.24.3 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -242,43 +242,43 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.1.16 - version: 5.1.16 + specifier: ^5.17.3 + version: 5.17.3 vue: - specifier: ^3.5.12 - version: 3.5.12(typescript@5.7.2) + specifier: ^3.5.13 + version: 3.5.13(typescript@5.7.3) examples/framework-preact: dependencies: '@astrojs/preact': - specifier: ^4.0.0 + specifier: ^4.0.2 version: link:../../packages/integrations/preact '@preact/signals': - specifier: ^1.3.0 - version: 1.3.0(preact@10.24.3) + specifier: ^2.0.1 + version: 2.0.1(preact@10.25.4) astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro preact: - specifier: ^10.24.3 - version: 10.24.3 + specifier: ^10.25.4 + version: 10.25.4 examples/framework-react: dependencies: '@astrojs/react': - specifier: ^4.1.1 + specifier: ^4.1.5 version: link:../../packages/integrations/react '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^18.3.18 + version: 18.3.18 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^18.3.5 + version: 18.3.5(@types/react@18.3.18) astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -290,38 +290,38 @@ importers: examples/framework-solid: dependencies: '@astrojs/solid-js': - specifier: ^5.0.0 + specifier: ^5.0.3 version: link:../../packages/integrations/solid astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 examples/framework-svelte: dependencies: '@astrojs/svelte': - specifier: ^7.0.1 + specifier: ^7.0.3 version: link:../../packages/integrations/svelte astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro svelte: - specifier: ^5.1.16 - version: 5.1.16 + specifier: ^5.17.3 + version: 5.17.3 examples/framework-vue: dependencies: '@astrojs/vue': - specifier: ^5.0.2 + specifier: ^5.0.5 version: link:../../packages/integrations/vue astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro vue: - specifier: ^3.5.12 - version: 3.5.12(typescript@5.7.2) + specifier: ^3.5.13 + version: 3.5.13(typescript@5.7.3) examples/hackernews: dependencies: @@ -329,25 +329,25 @@ importers: specifier: ^9.0.0 version: 9.0.0(astro@packages+astro) astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro examples/ssr: @@ -356,88 +356,91 @@ importers: specifier: ^9.0.0 version: 9.0.0(astro@packages+astro) '@astrojs/svelte': - specifier: ^7.0.1 + specifier: ^7.0.3 version: link:../../packages/integrations/svelte astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro svelte: - specifier: ^5.1.16 - version: 5.1.16 + specifier: ^5.17.3 + version: 5.17.3 examples/starlog: dependencies: astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro sass: - specifier: ^1.80.6 - version: 1.80.6 + specifier: ^1.83.1 + version: 1.83.1 sharp: specifier: ^0.33.3 version: 0.33.3 examples/toolbar-app: devDependencies: + '@types/node': + specifier: ^18.17.8 + version: 18.19.50 astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro examples/with-markdoc: dependencies: '@astrojs/markdoc': - specifier: ^0.12.3 + specifier: ^0.12.6 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro examples/with-mdx: dependencies: '@astrojs/mdx': - specifier: ^4.0.2 + specifier: ^4.0.6 version: link:../../packages/integrations/mdx '@astrojs/preact': - specifier: ^4.0.0 + specifier: ^4.0.2 version: link:../../packages/integrations/preact astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro preact: - specifier: ^10.24.3 - version: 10.24.3 + specifier: ^10.25.4 + version: 10.25.4 examples/with-nanostores: dependencies: '@astrojs/preact': - specifier: ^4.0.0 + specifier: ^4.0.2 version: link:../../packages/integrations/preact '@nanostores/preact': specifier: ^0.5.2 - version: 0.5.2(nanostores@0.11.3)(preact@10.24.3) + version: 0.5.2(nanostores@0.11.3)(preact@10.25.4) astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro nanostores: specifier: ^0.11.3 version: 0.11.3 preact: - specifier: ^10.24.3 - version: 10.24.3 + specifier: ^10.25.4 + version: 10.25.4 examples/with-tailwindcss: dependencies: '@astrojs/mdx': - specifier: ^4.0.2 + specifier: ^4.0.6 version: link:../../packages/integrations/mdx '@astrojs/tailwind': - specifier: ^5.1.3 + specifier: ^5.1.4 version: link:../../packages/integrations/tailwind '@types/canvas-confetti': - specifier: ^1.6.4 - version: 1.6.4 + specifier: ^1.9.0 + version: 1.9.0 astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro autoprefixer: specifier: ^10.4.20 @@ -449,17 +452,17 @@ importers: specifier: ^8.4.49 version: 8.4.49 tailwindcss: - specifier: ^3.4.14 - version: 3.4.14 + specifier: ^3.4.17 + version: 3.4.17 examples/with-vitest: dependencies: astro: - specifier: ^5.0.9 + specifier: ^5.1.7 version: link:../../packages/astro vitest: - specifier: ^2.1.6 - version: 2.1.6(@types/node@18.19.50)(jiti@2.4.0)(jsdom@23.2.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^3.0.0-beta.4 + version: 3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(jsdom@23.2.0)(sass@1.83.1)(yaml@2.5.1) packages/astro: dependencies: @@ -479,8 +482,8 @@ importers: specifier: ^1.1.0 version: 1.1.0 '@rollup/pluginutils': - specifier: ^5.1.3 - version: 5.1.3(rollup@4.28.0) + specifier: ^5.1.4 + version: 5.1.4(rollup@4.30.1) '@types/cookie': specifier: ^0.6.0 version: 0.6.0 @@ -512,8 +515,8 @@ importers: specifier: ^3.0.0 version: 3.0.0 debug: - specifier: ^4.3.7 - version: 4.3.7 + specifier: ^4.4.0 + version: 4.4.0 deterministic-object-hash: specifier: ^2.0.2 version: 2.0.2 @@ -530,17 +533,17 @@ importers: specifier: ^3.1.4 version: 3.1.4 es-module-lexer: - specifier: ^1.5.4 - version: 1.5.4 + specifier: ^1.6.0 + version: 1.6.0 esbuild: - specifier: ^0.21.5 - version: 0.21.5 + specifier: ^0.24.2 + version: 0.24.2 estree-walker: specifier: ^3.0.3 version: 3.0.3 fast-glob: - specifier: ^3.3.2 - version: 3.3.2 + specifier: ^3.3.3 + version: 3.3.3 flattie: specifier: ^1.1.1 version: 1.1.1 @@ -560,8 +563,8 @@ importers: specifier: ^4.1.5 version: 4.1.5 magic-string: - specifier: ^0.30.14 - version: 0.30.14 + specifier: ^0.30.17 + version: 0.30.17 magicast: specifier: ^0.3.5 version: 0.3.5 @@ -575,8 +578,8 @@ importers: specifier: ^0.6.18 version: 0.6.18 p-limit: - specifier: ^6.1.0 - version: 6.1.0 + specifier: ^6.2.0 + version: 6.2.0 p-queue: specifier: ^8.0.1 version: 8.0.1 @@ -593,14 +596,14 @@ importers: specifier: ^7.6.3 version: 7.6.3 shiki: - specifier: ^1.23.1 - version: 1.24.0 + specifier: ^1.26.2 + version: 1.26.2 tinyexec: - specifier: ^0.3.1 - version: 0.3.1 + specifier: ^0.3.2 + version: 0.3.2 tsconfck: specifier: ^3.1.4 - version: 3.1.4(typescript@5.7.2) + version: 3.1.4(typescript@5.7.3) ultrahtml: specifier: ^1.5.3 version: 1.5.3 @@ -608,17 +611,17 @@ importers: specifier: ^5.0.0 version: 5.0.0 unstorage: - specifier: ^1.12.0 - version: 1.13.1 + specifier: ^1.14.4 + version: 1.14.4(@netlify/blobs@8.1.0) vfile: specifier: ^6.0.3 version: 6.0.3 vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) vitefu: - specifier: ^1.0.4 - version: 1.0.4(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) + specifier: ^1.0.5 + version: 1.0.5(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) which-pm: specifier: ^3.0.0 version: 3.0.0 @@ -629,17 +632,17 @@ importers: specifier: ^21.1.1 version: 21.1.1 yocto-spinner: - specifier: ^0.1.0 - version: 0.1.0 + specifier: ^0.1.2 + version: 0.1.2 zod: - specifier: ^3.23.8 - version: 3.23.8 + specifier: ^3.24.1 + version: 3.24.1 zod-to-json-schema: - specifier: ^3.23.5 - version: 3.23.5(zod@3.23.8) + specifier: ^3.24.1 + version: 3.24.1(zod@3.24.1) zod-to-ts: specifier: ^1.2.0 - version: 1.2.0(typescript@5.7.2)(zod@3.23.8) + version: 1.2.0(typescript@5.7.3)(zod@3.24.1) optionalDependencies: sharp: specifier: ^0.33.3 @@ -647,10 +650,10 @@ importers: devDependencies: '@astrojs/check': specifier: ^0.9.4 - version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.2) + version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.3) '@playwright/test': - specifier: ^1.49.0 - version: 1.49.0 + specifier: ^1.49.1 + version: 1.49.1 '@types/aria-query': specifier: ^5.0.4 version: 5.0.4 @@ -715,11 +718,11 @@ importers: specifier: ^3.0.0 version: 3.0.0 mdast-util-mdx-jsx: - specifier: ^3.1.3 - version: 3.1.3 + specifier: ^3.2.0 + version: 3.2.0 node-mocks-http: - specifier: ^1.16.1 - version: 1.16.1(@types/node@18.19.50) + specifier: ^1.16.2 + version: 1.16.2(@types/node@18.19.50) parse-srcset: specifier: ^1.0.2 version: 1.0.2 @@ -736,20 +739,20 @@ importers: specifier: ^0.1.2 version: 0.1.2 rollup: - specifier: ^4.27.4 - version: 4.28.0 + specifier: ^4.30.1 + version: 4.30.1 sass: - specifier: ^1.81.0 - version: 1.82.0 + specifier: ^1.83.1 + version: 1.83.1 undici: - specifier: ^6.21.0 - version: 6.21.0 + specifier: ^7.2.1 + version: 7.2.1 unified: specifier: ^11.0.5 version: 11.0.5 vitest: - specifier: ^2.1.6 - version: 2.1.6(@types/node@18.19.50)(jiti@2.4.0)(jsdom@23.2.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^3.0.0-beta.4 + version: 3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(jsdom@23.2.0)(sass@1.83.1)(yaml@2.5.1) packages/astro-prism: dependencies: @@ -767,8 +770,8 @@ importers: packages/astro-rss: dependencies: fast-xml-parser: - specifier: ^4.5.0 - version: 4.5.0 + specifier: ^4.5.1 + version: 4.5.1 kleur: specifier: ^4.1.5 version: 4.1.5 @@ -796,22 +799,22 @@ importers: dependencies: '@astrojs/check': specifier: ^0.9.4 - version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.2) + version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.3) '@astrojs/db': specifier: workspace:* version: link:../../../../db '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) '@astrojs/react': specifier: workspace:* version: link:../../../../integrations/react '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^18.3.18 + version: 18.3.18 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^18.3.5 + version: 18.3.5(@types/react@18.3.18) astro: specifier: workspace:* version: link:../../.. @@ -822,20 +825,20 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) typescript: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.7.3 + version: 5.7.3 packages/astro/e2e/fixtures/actions-react-19: dependencies: '@astrojs/check': specifier: ^0.9.4 - version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.2) + version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.3) '@astrojs/db': specifier: workspace:* version: link:../../../../db '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) '@astrojs/react': specifier: workspace:* version: link:../../../../integrations/react @@ -849,14 +852,14 @@ importers: specifier: workspace:* version: link:../../.. react: - specifier: 19.0.0-rc-fb9a90fa48-20240614 - version: 19.0.0-rc-fb9a90fa48-20240614 + specifier: 19.0.0 + version: 19.0.0 react-dom: - specifier: 19.0.0-rc-fb9a90fa48-20240614 - version: 19.0.0-rc-fb9a90fa48-20240614(react@19.0.0-rc-fb9a90fa48-20240614) + specifier: 19.0.0 + version: 19.0.0(react@19.0.0) typescript: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.7.3 + version: 5.7.3 packages/astro/e2e/fixtures/astro-component: dependencies: @@ -870,8 +873,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/e2e/fixtures/astro-envs: dependencies: @@ -883,7 +886,7 @@ importers: version: link:../../.. vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/e2e/fixtures/client-idle-timeout: dependencies: @@ -904,8 +907,8 @@ importers: packages/astro/e2e/fixtures/client-only: dependencies: preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -913,14 +916,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) devDependencies: '@astrojs/preact': specifier: workspace:* @@ -980,8 +983,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/e2e/fixtures/error-cyclic: dependencies: @@ -992,8 +995,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/e2e/fixtures/error-sass: dependencies: @@ -1001,8 +1004,8 @@ importers: specifier: workspace:* version: link:../../.. sass: - specifier: ^1.81.0 - version: 1.82.0 + specifier: ^1.83.1 + version: 1.83.1 packages/astro/e2e/fixtures/errors: dependencies: @@ -1025,8 +1028,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -1034,17 +1037,17 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) sass: - specifier: ^1.81.0 - version: 1.82.0 + specifier: ^1.83.1 + version: 1.83.1 solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/e2e/fixtures/hmr: devDependencies: @@ -1052,8 +1055,8 @@ importers: specifier: workspace:* version: link:../../.. sass: - specifier: ^1.81.0 - version: 1.82.0 + specifier: ^1.83.1 + version: 1.83.1 packages/astro/e2e/fixtures/hydration-race: dependencies: @@ -1064,14 +1067,14 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/e2e/fixtures/i18n: dependencies: '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) astro: specifier: workspace:* version: link:../../.. @@ -1085,8 +1088,8 @@ importers: specifier: ^3.2.1 version: 3.2.1 preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -1094,14 +1097,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) devDependencies: '@astrojs/preact': specifier: workspace:* @@ -1125,8 +1128,8 @@ importers: packages/astro/e2e/fixtures/namespaced-component: dependencies: preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 devDependencies: '@astrojs/mdx': specifier: workspace:* @@ -1141,8 +1144,8 @@ importers: packages/astro/e2e/fixtures/nested-in-preact: dependencies: preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -1150,14 +1153,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) devDependencies: '@astrojs/preact': specifier: workspace:* @@ -1181,8 +1184,8 @@ importers: packages/astro/e2e/fixtures/nested-in-react: dependencies: preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -1190,14 +1193,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) devDependencies: '@astrojs/preact': specifier: workspace:* @@ -1221,8 +1224,8 @@ importers: packages/astro/e2e/fixtures/nested-in-solid: dependencies: preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -1230,14 +1233,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) devDependencies: '@astrojs/preact': specifier: workspace:* @@ -1261,8 +1264,8 @@ importers: packages/astro/e2e/fixtures/nested-in-svelte: dependencies: preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -1270,14 +1273,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) devDependencies: '@astrojs/preact': specifier: workspace:* @@ -1301,8 +1304,8 @@ importers: packages/astro/e2e/fixtures/nested-in-vue: dependencies: preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -1310,14 +1313,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) devDependencies: '@astrojs/preact': specifier: workspace:* @@ -1341,8 +1344,8 @@ importers: packages/astro/e2e/fixtures/nested-recursive: dependencies: preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -1350,14 +1353,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) devDependencies: '@astrojs/preact': specifier: workspace:* @@ -1409,8 +1412,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/e2e/fixtures/preact-component: dependencies: @@ -1424,8 +1427,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/e2e/fixtures/preact-lazy-component: dependencies: @@ -1439,8 +1442,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/e2e/fixtures/prefetch: dependencies: @@ -1472,8 +1475,8 @@ importers: specifier: workspace:* version: link:../../../../integrations/mdx '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) '@astrojs/react': specifier: workspace:* version: link:../../../../integrations/react @@ -1490,8 +1493,8 @@ importers: packages/astro/e2e/fixtures/server-islands-key: dependencies: '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) astro: specifier: workspace:* version: link:../../.. @@ -1506,8 +1509,8 @@ importers: version: link:../../.. devDependencies: solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 packages/astro/e2e/fixtures/solid-component: dependencies: @@ -1521,8 +1524,8 @@ importers: specifier: workspace:* version: link:../../.. solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 packages/astro/e2e/fixtures/solid-recurse: dependencies: @@ -1534,8 +1537,8 @@ importers: version: link:../../.. devDependencies: solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 packages/astro/e2e/fixtures/svelte-component: dependencies: @@ -1549,8 +1552,8 @@ importers: specifier: workspace:* version: link:../../.. svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/e2e/fixtures/tailwindcss: dependencies: @@ -1567,8 +1570,8 @@ importers: specifier: ^8.4.49 version: 8.4.49 tailwindcss: - specifier: ^3.4.15 - version: 3.4.16 + specifier: ^3.4.17 + version: 3.4.17 packages/astro/e2e/fixtures/ts-resolution: dependencies: @@ -1588,8 +1591,8 @@ importers: packages/astro/e2e/fixtures/view-transitions: dependencies: '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) '@astrojs/react': specifier: workspace:* version: link:../../../../integrations/react @@ -1612,14 +1615,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/e2e/fixtures/vue-component: dependencies: @@ -1634,7 +1637,7 @@ importers: version: link:../../.. vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/performance: devDependencies: @@ -1651,11 +1654,11 @@ importers: specifier: workspace:* version: link:../utils '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^18.3.18 + version: 18.3.18 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^18.3.5 + version: 18.3.5(@types/react@18.3.18) astro: specifier: workspace:* version: link:../../.. @@ -1678,11 +1681,11 @@ importers: specifier: workspace:* version: link:../utils '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^18.3.18 + version: 18.3.18 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^18.3.5 + version: 18.3.5(@types/react@18.3.18) astro: specifier: workspace:* version: link:../../.. @@ -1705,11 +1708,11 @@ importers: specifier: workspace:* version: link:../utils '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^18.3.18 + version: 18.3.18 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^18.3.5 + version: 18.3.5(@types/react@18.3.18) astro: specifier: workspace:* version: link:../../.. @@ -1753,11 +1756,11 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/test/fixtures/actions: dependencies: @@ -1774,8 +1777,8 @@ importers: specifier: workspace:* version: link:../../.. svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/alias-tsconfig: dependencies: @@ -1789,8 +1792,8 @@ importers: specifier: workspace:* version: link:../../.. svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/alias-tsconfig-baseurl-only: dependencies: @@ -1801,8 +1804,8 @@ importers: specifier: workspace:* version: link:../../.. svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/alias-tsconfig/deps/namespace-package: {} @@ -1887,8 +1890,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/astro-check-errors: dependencies: @@ -1923,14 +1926,14 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/test/fixtures/astro-class-list: dependencies: @@ -1959,8 +1962,8 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/astro-client-only/pkg: {} @@ -2051,8 +2054,8 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/astro-env: dependencies: @@ -2094,7 +2097,7 @@ importers: version: link:../../.. vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/test/fixtures/astro-expr: dependencies: @@ -2105,8 +2108,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/astro-external-files: dependencies: @@ -2123,8 +2126,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/astro-generator: dependencies: @@ -2342,8 +2345,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/astro-slots: dependencies: @@ -2372,8 +2375,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -2381,14 +2384,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/test/fixtures/before-hydration: dependencies: @@ -2399,8 +2402,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/build-assets: dependencies: @@ -2411,8 +2414,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/build-readonly-file: dependencies: @@ -2429,8 +2432,8 @@ importers: packages/astro/test/fixtures/client-address-node: dependencies: '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) astro: specifier: workspace:* version: link:../../.. @@ -2459,8 +2462,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -2468,14 +2471,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/component-library-shared: dependencies: preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -2527,7 +2530,7 @@ importers: version: 18.3.1(react@18.3.1) vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/test/fixtures/content: dependencies: @@ -2652,8 +2655,17 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 + + packages/astro/test/fixtures/content-layer-remark-plugins: + dependencies: + '@astrojs/mdx': + specifier: workspace:* + version: link:../../../../integrations/mdx + astro: + specifier: workspace:* + version: link:../../.. packages/astro/test/fixtures/content-layer-rendering: dependencies: @@ -2789,8 +2801,8 @@ importers: specifier: workspace:* version: link:../../.. svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/css-import-as-inline: dependencies: @@ -2876,6 +2888,12 @@ importers: specifier: workspace:* version: link:../../.. + packages/astro/test/fixtures/custom-404-locals: + dependencies: + astro: + specifier: workspace:* + version: link:../../.. + packages/astro/test/fixtures/custom-404-loop-case-1: dependencies: astro: @@ -2939,8 +2957,8 @@ importers: packages/astro/test/fixtures/custom-assets-name: dependencies: '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) astro: specifier: workspace:* version: link:../../.. @@ -3002,8 +3020,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/error-bad-js: dependencies: @@ -3044,23 +3062,23 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/test/fixtures/fontsource-package: dependencies: '@fontsource/monofett': - specifier: 5.1.0 - version: 5.1.0 + specifier: 5.1.1 + version: 5.1.1 '@fontsource/montserrat': - specifier: 5.1.0 - version: 5.1.0 + specifier: 5.1.1 + version: 5.1.1 astro: specifier: workspace:* version: link:../../.. @@ -3134,8 +3152,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/i18n-routing: dependencies: @@ -3239,8 +3257,8 @@ importers: packages/astro/test/fixtures/jsx: dependencies: preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -3248,14 +3266,14 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) devDependencies: '@astrojs/mdx': specifier: workspace:* @@ -3288,8 +3306,8 @@ importers: specifier: workspace:* version: link:../../.. solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 packages/astro/test/fixtures/lazy-layout: dependencies: @@ -3442,18 +3460,18 @@ importers: specifier: ^8.4.49 version: 8.4.49 solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) devDependencies: postcss-preset-env: - specifier: ^10.1.1 - version: 10.1.1(postcss@8.4.49) + specifier: ^10.1.3 + version: 10.1.3(postcss@8.4.49) packages/astro/test/fixtures/preact-compat-component: dependencies: @@ -3467,8 +3485,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/preact-compat-component/packages/react-lib: dependencies: @@ -3482,14 +3500,14 @@ importers: specifier: workspace:* version: link:../../../../integrations/preact '@preact/signals': - specifier: 1.3.0 - version: 1.3.0(preact@10.25.1) + specifier: 2.0.1 + version: 2.0.1(preact@10.25.4) astro: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/public-base-404: dependencies: @@ -3515,8 +3533,8 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 packages/astro/test/fixtures/react-jsx-export: dependencies: @@ -3549,8 +3567,8 @@ importers: specifier: 'workspace:' version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/remote-css: dependencies: @@ -3639,8 +3657,8 @@ importers: specifier: workspace:* version: link:../../../.. svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/server-islands/ssr: dependencies: @@ -3651,11 +3669,14 @@ importers: specifier: workspace:* version: link:../../../.. svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/sessions: dependencies: + '@netlify/blobs': + specifier: ^8.1.0 + version: 8.1.0 astro: specifier: workspace:* version: link:../../.. @@ -3678,8 +3699,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/slots-react: dependencies: @@ -3711,8 +3732,8 @@ importers: specifier: workspace:* version: link:../../.. solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 packages/astro/test/fixtures/slots-svelte: dependencies: @@ -3726,8 +3747,8 @@ importers: specifier: workspace:* version: link:../../.. svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/slots-vue: dependencies: @@ -3742,7 +3763,7 @@ importers: version: link:../../.. vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/test/fixtures/solid-component: dependencies: @@ -3750,8 +3771,8 @@ importers: specifier: workspace:* version: link:../../../../integrations/solid '@solidjs/router': - specifier: ^0.15.1 - version: 0.15.1(solid-js@1.9.3) + specifier: ^0.15.2 + version: 0.15.2(solid-js@1.9.4) '@test/solid-jsx-component': specifier: file:./deps/solid-jsx-component version: link:deps/solid-jsx-component @@ -3759,14 +3780,14 @@ importers: specifier: workspace:* version: link:../../.. solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 packages/astro/test/fixtures/solid-component/deps/solid-jsx-component: dependencies: solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 packages/astro/test/fixtures/sourcemap: dependencies: @@ -3810,8 +3831,8 @@ importers: packages/astro/test/fixtures/ssr-api-route: dependencies: '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) astro: specifier: workspace:* version: link:../../.. @@ -3837,8 +3858,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/ssr-error: dependencies: @@ -3900,11 +3921,11 @@ importers: specifier: link:./deps/test-adapter version: link:deps/test-adapter '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^18.3.18 + version: 18.3.18 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^18.3.5 + version: 18.3.5(@types/react@18.3.18) astro: specifier: workspace:* version: link:../../.. @@ -3956,8 +3977,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/ssr-split-manifest: dependencies: @@ -3977,8 +3998,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/astro/test/fixtures/static-build-code-component: dependencies: @@ -4004,8 +4025,8 @@ importers: specifier: workspace:* version: link:../../.. preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 react: specifier: ^18.3.1 version: 18.3.1 @@ -4022,8 +4043,8 @@ importers: packages/astro/test/fixtures/static-build-ssr: dependencies: '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) '@test/static-build-pkg': specifier: workspace:* version: link:../static-build/pkg @@ -4057,8 +4078,8 @@ importers: specifier: workspace:* version: link:../../.. svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/astro/test/fixtures/tailwindcss: dependencies: @@ -4078,8 +4099,8 @@ importers: specifier: ^8.4.49 version: 8.4.49 tailwindcss: - specifier: ^3.4.14 - version: 3.4.14 + specifier: ^3.4.17 + version: 3.4.17 packages/astro/test/fixtures/tailwindcss-ts: dependencies: @@ -4093,8 +4114,8 @@ importers: specifier: ^8.4.49 version: 8.4.49 tailwindcss: - specifier: ^3.4.15 - version: 3.4.16 + specifier: ^3.4.17 + version: 3.4.17 packages/astro/test/fixtures/third-party-astro: dependencies: @@ -4150,8 +4171,8 @@ importers: specifier: workspace:* version: link:../../.. vitest: - specifier: ^2.1.6 - version: 2.1.6(@types/node@18.19.50)(jiti@2.4.0)(jsdom@23.2.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^3.0.0-beta.4 + version: 3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(jsdom@23.2.0)(sass@1.83.1)(yaml@2.5.1) packages/astro/test/fixtures/vue-component: dependencies: @@ -4163,7 +4184,7 @@ importers: version: link:../../.. vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/test/fixtures/vue-jsx: dependencies: @@ -4175,7 +4196,7 @@ importers: version: link:../../.. vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/test/fixtures/vue-with-multi-renderer: dependencies: @@ -4189,11 +4210,11 @@ importers: specifier: workspace:* version: link:../../.. svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/astro/test/fixtures/with-endpoint-routes: dependencies: @@ -4228,8 +4249,8 @@ importers: specifier: ^0.4.1 version: 0.4.1 '@bluwy/giget-core': - specifier: ^0.1.1 - version: 0.1.1 + specifier: ^0.1.2 + version: 0.1.2 devDependencies: arg: specifier: ^5.0.2 @@ -4259,7 +4280,7 @@ importers: version: 1.0.2 drizzle-orm: specifier: ^0.31.2 - version: 0.31.4(@libsql/client@0.14.0)(@types/react@18.3.12)(react@18.3.1) + version: 0.31.4(@libsql/client@0.14.0)(@types/react@18.3.18)(react@19.0.0) github-slugger: specifier: ^2.0.0 version: 2.0.0 @@ -4279,11 +4300,11 @@ importers: specifier: ^21.1.1 version: 21.1.1 yocto-spinner: - specifier: ^0.1.0 - version: 0.1.0 + specifier: ^0.1.2 + version: 0.1.2 zod: - specifier: ^3.23.8 - version: 3.23.8 + specifier: ^3.24.1 + version: 3.24.1 devDependencies: '@types/deep-diff': specifier: ^1.0.5 @@ -4304,11 +4325,11 @@ importers: specifier: 1.0.0 version: 1.0.0 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.3 + version: 5.7.3 vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) packages/db/test/fixtures/basics: dependencies: @@ -4413,28 +4434,28 @@ importers: dependencies: '@astrojs/check': specifier: ^0.9.4 - version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.2) + version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.3) '@astrojs/db': specifier: workspace:* version: link:../../.. '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) '@astrojs/react': specifier: workspace:* version: link:../../../../integrations/react '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^18.3.18 + version: 18.3.18 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^18.3.5 + version: 18.3.5(@types/react@18.3.18) astro: specifier: workspace:* version: link:../../../../astro open-props: - specifier: ^1.7.7 - version: 1.7.7 + specifier: ^1.7.10 + version: 1.7.10 react: specifier: ^18.3.1 version: 18.3.1 @@ -4443,19 +4464,19 @@ importers: version: 18.3.1(react@18.3.1) simple-stack-form: specifier: ^0.1.12 - version: 0.1.12(astro@packages+astro)(zod@3.23.8) + version: 0.1.12(astro@packages+astro)(zod@3.24.1) typescript: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.7.3 + version: 5.7.3 zod: - specifier: ^3.23.8 - version: 3.23.8 + specifier: ^3.24.1 + version: 3.24.1 packages/integrations/alpinejs: devDependencies: '@playwright/test': - specifier: 1.49.0 - version: 1.49.0 + specifier: 1.49.1 + version: 1.49.1 astro: specifier: workspace:* version: link:../../astro @@ -4463,8 +4484,8 @@ importers: specifier: workspace:* version: link:../../../scripts vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) packages/integrations/alpinejs/test/fixtures/basics: dependencies: @@ -4475,8 +4496,8 @@ importers: specifier: ^3.13.11 version: 3.13.11 alpinejs: - specifier: ^3.14.3 - version: 3.14.3 + specifier: ^3.14.8 + version: 3.14.8 astro: specifier: workspace:* version: link:../../../../../astro @@ -4490,8 +4511,8 @@ importers: specifier: ^3.13.11 version: 3.13.11 alpinejs: - specifier: ^3.14.3 - version: 3.14.3 + specifier: ^3.14.8 + version: 3.14.8 astro: specifier: workspace:* version: link:../../../../../astro @@ -4505,8 +4526,8 @@ importers: specifier: ^3.13.11 version: 3.13.11 alpinejs: - specifier: ^3.14.3 - version: 3.14.3 + specifier: ^3.14.8 + version: 3.14.8 astro: specifier: workspace:* version: link:../../../../../astro @@ -4526,16 +4547,16 @@ importers: version: link:../../astro-prism '@markdoc/markdoc': specifier: ^0.4.0 - version: 0.4.0(@types/react@18.3.12)(react@18.3.1) + version: 0.4.0(@types/react@18.3.18)(react@19.0.0) esbuild: - specifier: ^0.21.5 - version: 0.21.5 + specifier: ^0.24.2 + version: 0.24.2 github-slugger: specifier: ^2.0.0 version: 2.0.0 htmlparser2: - specifier: ^9.1.0 - version: 9.1.0 + specifier: ^10.0.0 + version: 10.0.0 devDependencies: '@types/markdown-it': specifier: ^14.1.2 @@ -4550,11 +4571,11 @@ importers: specifier: ^5.1.1 version: 5.1.1 linkedom: - specifier: ^0.18.5 - version: 0.18.5 + specifier: ^0.18.6 + version: 0.18.6 vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) packages/integrations/markdoc/test/fixtures/content-collections: dependencies: @@ -4667,8 +4688,8 @@ importers: specifier: workspace:* version: link:../../../../../astro preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/integrations/markdoc/test/fixtures/render-with-config: dependencies: @@ -4718,14 +4739,14 @@ importers: specifier: ^8.14.0 version: 8.14.0 es-module-lexer: - specifier: ^1.5.4 - version: 1.5.4 + specifier: ^1.6.0 + version: 1.6.0 estree-util-visit: specifier: ^2.0.0 version: 2.0.0 hast-util-to-html: - specifier: ^9.0.3 - version: 9.0.3 + specifier: ^9.0.4 + version: 9.0.4 kleur: specifier: ^4.1.5 version: 4.1.5 @@ -4767,14 +4788,14 @@ importers: specifier: 1.0.0 version: 1.0.0 linkedom: - specifier: ^0.18.5 - version: 0.18.5 + specifier: ^0.18.6 + version: 0.18.6 mdast-util-mdx: specifier: ^3.0.0 version: 3.0.0 mdast-util-mdx-jsx: - specifier: ^3.1.3 - version: 3.1.3 + specifier: ^3.2.0 + version: 3.2.0 mdast-util-to-string: specifier: ^4.0.0 version: 4.0.0 @@ -4783,7 +4804,7 @@ importers: version: 6.0.0 rehype-pretty-code: specifier: ^0.14.0 - version: 0.14.0(shiki@1.24.0) + version: 0.14.0(shiki@1.26.2) remark-math: specifier: ^6.0.0 version: 6.0.0 @@ -4792,19 +4813,19 @@ importers: version: 11.1.1 remark-shiki-twoslash: specifier: ^3.1.3 - version: 3.1.3(typescript@5.7.2) + version: 3.1.3(typescript@5.7.3) remark-toc: specifier: ^9.0.0 version: 9.0.0 shiki: - specifier: ^1.23.1 - version: 1.24.0 + specifier: ^1.26.2 + version: 1.26.2 unified: specifier: ^11.0.5 version: 11.0.5 vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) packages/integrations/mdx/test/fixtures/css-head-mdx: dependencies: @@ -4872,8 +4893,8 @@ importers: specifier: workspace:* version: link:../../../../../astro preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/integrations/mdx/test/fixtures/mdx-namespace: dependencies: @@ -4968,9 +4989,9 @@ importers: packages/integrations/partytown: dependencies: - '@builder.io/partytown': - specifier: ^0.10.2 - version: 0.10.2 + '@qwik.dev/partytown': + specifier: ^0.11.0 + version: 0.11.0 mrmime: specifier: ^2.0.0 version: 2.0.0 @@ -4992,19 +5013,19 @@ importers: version: 7.25.9(@babel/core@7.26.0) '@preact/preset-vite': specifier: 2.8.2 - version: 2.8.2(@babel/core@7.26.0)(preact@10.25.1)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) + version: 2.8.2(@babel/core@7.26.0)(preact@10.25.4)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) '@preact/signals': - specifier: ^1.3.0 - version: 1.3.0(preact@10.25.1) + specifier: ^2.0.1 + version: 2.0.1(preact@10.25.4) babel-plugin-transform-hook-names: specifier: ^1.0.2 version: 1.0.2(@babel/core@7.26.0) preact-render-to-string: - specifier: ^6.5.11 - version: 6.5.11(preact@10.25.1) + specifier: ^6.5.13 + version: 6.5.13(preact@10.25.4) vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) devDependencies: astro: specifier: workspace:* @@ -5013,27 +5034,27 @@ importers: specifier: workspace:* version: link:../../../scripts preact: - specifier: ^10.25.0 - version: 10.25.1 + specifier: ^10.25.4 + version: 10.25.4 packages/integrations/react: dependencies: '@vitejs/plugin-react': specifier: ^4.3.4 - version: 4.3.4(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) + version: 4.3.4(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) ultrahtml: specifier: ^1.5.3 version: 1.5.3 vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) devDependencies: '@types/react': - specifier: ^18.3.12 - version: 18.3.12 + specifier: ^18.3.18 + version: 18.3.18 '@types/react-dom': - specifier: ^18.3.1 - version: 18.3.1 + specifier: ^18.3.5 + version: 18.3.5(@types/react@18.3.18) astro: specifier: workspace:* version: link:../../astro @@ -5069,7 +5090,7 @@ importers: version: 18.3.1(react@18.3.1) vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/integrations/sitemap: dependencies: @@ -5080,8 +5101,8 @@ importers: specifier: ^2.0.0 version: 2.0.0 zod: - specifier: ^3.23.8 - version: 3.23.8 + specifier: ^3.24.1 + version: 3.24.1 devDependencies: '@astrojs/node': specifier: ^9.0.0 @@ -5135,11 +5156,11 @@ importers: packages/integrations/solid: dependencies: vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) vite-plugin-solid: specifier: ^2.11.0 - version: 2.11.0(solid-js@1.9.3)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) + version: 2.11.0(solid-js@1.9.4)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) devDependencies: astro: specifier: workspace:* @@ -5148,20 +5169,20 @@ importers: specifier: workspace:* version: link:../../../scripts solid-js: - specifier: ^1.9.3 - version: 1.9.3 + specifier: ^1.9.4 + version: 1.9.4 packages/integrations/svelte: dependencies: '@sveltejs/vite-plugin-svelte': - specifier: ^5.0.1 - version: 5.0.1(svelte@5.6.2)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) + specifier: ^5.0.3 + version: 5.0.3(svelte@5.17.3)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) svelte2tsx: - specifier: ^0.7.22 - version: 0.7.22(svelte@5.6.2)(typescript@5.7.2) + specifier: ^0.7.34 + version: 0.7.34(svelte@5.17.3)(typescript@5.7.3) vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) devDependencies: astro: specifier: workspace:* @@ -5170,8 +5191,8 @@ importers: specifier: workspace:* version: link:../../../scripts svelte: - specifier: ^5.2.9 - version: 5.6.2 + specifier: ^5.17.3 + version: 5.17.3 packages/integrations/tailwind: dependencies: @@ -5192,11 +5213,11 @@ importers: specifier: workspace:* version: link:../../../scripts tailwindcss: - specifier: ^3.4.14 - version: 3.4.14 + specifier: ^3.4.17 + version: 3.4.17 vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) packages/integrations/tailwind/test/fixtures/basic: dependencies: @@ -5213,19 +5234,19 @@ importers: dependencies: '@vitejs/plugin-vue': specifier: ^5.2.1 - version: 5.2.1(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.2)) + version: 5.2.1(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.3)) '@vitejs/plugin-vue-jsx': specifier: ^4.1.1 - version: 4.1.1(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.2)) + version: 4.1.1(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.3)) '@vue/compiler-sfc': - specifier: ^3.5.12 - version: 3.5.12 + specifier: ^3.5.13 + version: 3.5.13 vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) vite-plugin-vue-devtools: - specifier: ^7.6.7 - version: 7.6.7(rollup@4.28.0)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.2)) + specifier: ^7.7.0 + version: 7.7.0(rollup@4.30.1)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.3)) devDependencies: astro: specifier: workspace:* @@ -5237,11 +5258,11 @@ importers: specifier: 1.0.0 version: 1.0.0 linkedom: - specifier: ^0.18.5 - version: 0.18.5 + specifier: ^0.18.6 + version: 0.18.6 vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/integrations/vue/test/fixtures/app-entrypoint: dependencies: @@ -5253,10 +5274,10 @@ importers: version: link:../../../../../astro vite-svg-loader: specifier: 5.1.0 - version: 5.1.0(vue@3.5.13(typescript@5.7.2)) + version: 5.1.0(vue@3.5.13(typescript@5.7.3)) vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/integrations/vue/test/fixtures/app-entrypoint-async: dependencies: @@ -5268,10 +5289,10 @@ importers: version: link:../../../../../astro vite-svg-loader: specifier: 5.1.0 - version: 5.1.0(vue@3.5.13(typescript@5.7.2)) + version: 5.1.0(vue@3.5.13(typescript@5.7.3)) vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/integrations/vue/test/fixtures/app-entrypoint-css: dependencies: @@ -5292,10 +5313,10 @@ importers: version: link:../../../../../astro vite-svg-loader: specifier: 5.1.0 - version: 5.1.0(vue@3.5.13(typescript@5.7.2)) + version: 5.1.0(vue@3.5.13(typescript@5.7.3)) vue: specifier: ^3.5.13 - version: 3.5.13(typescript@5.7.2) + version: 3.5.13(typescript@5.7.3) packages/integrations/vue/test/fixtures/app-entrypoint-relative: dependencies: @@ -5340,8 +5361,8 @@ importers: specifier: workspace:* version: link:../../../scripts linkedom: - specifier: ^0.18.5 - version: 0.18.5 + specifier: ^0.18.6 + version: 0.18.6 packages/integrations/web-vitals/test/fixtures/basics: dependencies: @@ -5349,8 +5370,8 @@ importers: specifier: workspace:* version: link:../../../../../db '@astrojs/node': - specifier: ^8.3.4 - version: 8.3.4(astro@packages+astro) + specifier: ^9.0.0 + version: 9.0.0(astro@packages+astro) '@astrojs/web-vitals': specifier: workspace:* version: link:../../.. @@ -5406,8 +5427,8 @@ importers: specifier: ^3.0.2 version: 3.0.2 shiki: - specifier: ^1.23.1 - version: 1.24.0 + specifier: ^1.26.2 + version: 1.26.2 unified: specifier: ^11.0.5 version: 11.0.5 @@ -5443,8 +5464,8 @@ importers: specifier: workspace:* version: link:../../../scripts esbuild: - specifier: ^0.21.5 - version: 0.21.5 + specifier: ^0.24.2 + version: 0.24.2 mdast-util-mdx-expression: specifier: ^2.0.1 version: 2.0.1 @@ -5458,8 +5479,8 @@ importers: specifier: ^4.1.5 version: 4.1.5 yocto-spinner: - specifier: ^0.1.0 - version: 0.1.0 + specifier: ^0.1.2 + version: 0.1.2 devDependencies: astro: specifier: workspace:* @@ -5468,11 +5489,11 @@ importers: specifier: workspace:* version: link:../../scripts typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.3 + version: 5.7.3 vite: - specifier: ^6.0.1 - version: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + specifier: ^6.0.7 + version: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) packages/telemetry: dependencies: @@ -5480,8 +5501,8 @@ importers: specifier: ^4.1.0 version: 4.1.0 debug: - specifier: ^4.3.7 - version: 4.3.7 + specifier: ^4.4.0 + version: 4.4.0 dlv: specifier: ^1.1.3 version: 1.1.3 @@ -5551,26 +5572,26 @@ importers: scripts: dependencies: esbuild: - specifier: ^0.21.5 - version: 0.21.5 + specifier: ^0.24.2 + version: 0.24.2 esbuild-plugin-copy: specifier: ^2.1.1 - version: 2.1.1(esbuild@0.21.5) + version: 2.1.1(esbuild@0.24.2) fast-glob: - specifier: ^3.3.2 - version: 3.3.2 + specifier: ^3.3.3 + version: 3.3.3 kleur: specifier: ^4.1.5 version: 4.1.5 p-limit: - specifier: ^6.1.0 - version: 6.1.0 + specifier: ^6.2.0 + version: 6.2.0 tinyexec: - specifier: ^0.3.1 - version: 0.3.1 + specifier: ^0.3.2 + version: 0.3.2 tsconfck: specifier: ^3.1.4 - version: 3.1.4(typescript@5.7.2) + version: 3.1.4(typescript@5.7.3) packages: @@ -5647,11 +5668,6 @@ packages: prettier-plugin-astro: optional: true - '@astrojs/node@8.3.4': - resolution: {integrity: sha512-xzQs39goN7xh9np9rypGmbgZj3AmmjNxEMj9ZWz5aBERlqqFF3n8A/w/uaJeZ/bkHS60l1BXVS0tgsQt9MFqBA==} - peerDependencies: - astro: ^4.2.0 - '@astrojs/node@9.0.0': resolution: {integrity: sha512-3h/5kFZvpuo+chYAjj75YhtRUxfquxEJrpZRRC7TdiMGp2WhLp2us4VXm2mjezJp/zHKotW2L3qgp0P2ujQ0xw==} peerDependencies: @@ -5684,22 +5700,12 @@ packages: resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} engines: {node: '>=6.9.0'} - '@babel/helper-create-class-features-plugin@7.25.4': - resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-create-class-features-plugin@7.25.9': resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-member-expression-to-functions@7.24.8': - resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==} - engines: {node: '>=6.9.0'} - '@babel/helper-member-expression-to-functions@7.25.9': resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} engines: {node: '>=6.9.0'} @@ -5718,10 +5724,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-optimise-call-expression@7.24.7': - resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} - engines: {node: '>=6.9.0'} - '@babel/helper-optimise-call-expression@7.25.9': resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} engines: {node: '>=6.9.0'} @@ -5730,22 +5732,12 @@ packages: resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} engines: {node: '>=6.9.0'} - '@babel/helper-replace-supers@7.25.0': - resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-replace-supers@7.25.9': resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': - resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} - engines: {node: '>=6.9.0'} - '@babel/helper-skip-transparent-expression-wrappers@7.25.9': resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} engines: {node: '>=6.9.0'} @@ -5800,12 +5792,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-typescript@7.25.4': - resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-typescript@7.25.9': resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==} engines: {node: '>=6.9.0'} @@ -5836,12 +5822,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.25.2': - resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.26.3': resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==} engines: {node: '>=6.9.0'} @@ -5917,17 +5897,12 @@ packages: cpu: [x64] os: [win32] - '@bluwy/giget-core@0.1.1': - resolution: {integrity: sha512-0Y6ILl9wJMkALcHGBMtkNDhXVjeFLqSEutwQThYj7jEqKpZ35j+p7QpKEhci+GyY77paMFGETXy1OBU39adWqg==} + '@bluwy/giget-core@0.1.2': + resolution: {integrity: sha512-v9f+ueUOKkZCDKiCm0yxKtYgYNLD9zlKarNux0NSXOvNm94QEYL3RlMpGKgD2hq44pbF2qWqEmHnCvmk56kPJw==} engines: {node: '>=18'} - '@builder.io/partytown@0.10.2': - resolution: {integrity: sha512-A9U+4PREWcS+CCYzKGIPovtGB/PBgnH/8oQyCE6Nr9drDJk6cMPpLQIEajpGPmG9tYF7N3FkRvhXm/AS9+0iKg==} - engines: {node: '>=18.0.0'} - hasBin: true - - '@changesets/apply-release-plan@7.0.6': - resolution: {integrity: sha512-TKhVLtiwtQOgMAC0fCJfmv93faiViKSDqr8oMEqrnNs99gtSC1sZh/aEMS9a+dseU1ESZRCK+ofLgGY7o0fw/Q==} + '@changesets/apply-release-plan@7.0.7': + resolution: {integrity: sha512-qnPOcmmmnD0MfMg9DjU1/onORFyRpDXkMMl2IJg9mECY6RnxL3wN0TCCc92b2sXt1jt8DgjAUUsZYGUGTdYIXA==} '@changesets/assemble-release-plan@6.0.5': resolution: {integrity: sha512-IgvBWLNKZd6k4t72MBTBK3nkygi0j3t3zdC1zrfusYo0KpdsvnDjrMM9vPnTCLCMlfNs55jRL4gIMybxa64FCQ==} @@ -5938,12 +5913,12 @@ packages: '@changesets/changelog-github@0.5.0': resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==} - '@changesets/cli@2.27.10': - resolution: {integrity: sha512-PfeXjvs9OfQJV8QSFFHjwHX3QnUL9elPEQ47SgkiwzLgtKGyuikWjrdM+lO9MXzOE22FO9jEGkcs4b+B6D6X0Q==} + '@changesets/cli@2.27.11': + resolution: {integrity: sha512-1QislpE+nvJgSZZo9+Lj3Lno5pKBgN46dAV8IVxKJy9wX8AOrs9nn5pYVZuDpoxWJJCALmbfOsHkyxujgetQSg==} hasBin: true - '@changesets/config@3.0.4': - resolution: {integrity: sha512-+DiIwtEBpvvv1z30f8bbOsUQGuccnZl9KRKMM/LxUHuDu5oEjmN+bJQ1RIBKNJjfYMQn8RZzoPiX0UgPaLQyXw==} + '@changesets/config@3.0.5': + resolution: {integrity: sha512-QyXLSSd10GquX7hY0Mt4yQFMEeqnO5z/XLpbIr4PAkNNoQNKwDyiSrx4yd749WddusH1v3OSiA0NRAYmH/APpQ==} '@changesets/errors@0.2.0': resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} @@ -5954,8 +5929,8 @@ packages: '@changesets/get-github-info@0.6.0': resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} - '@changesets/get-release-plan@4.0.5': - resolution: {integrity: sha512-E6wW7JoSMcctdVakut0UB76FrrN3KIeJSXvB+DHMFo99CnC3ZVnNYDCVNClMlqAhYGmLmAj77QfApaI3ca4Fkw==} + '@changesets/get-release-plan@4.0.6': + resolution: {integrity: sha512-FHRwBkY7Eili04Y5YMOZb0ezQzKikTka4wL753vfUA5COSebt7KThqiuCN9BewE4/qFGgF/5t3AuzXx1/UAY4w==} '@changesets/get-version-range-type@0.4.0': resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} @@ -5995,11 +5970,11 @@ packages: bundledDependencies: - is-unicode-supported - '@codspeed/core@3.1.1': - resolution: {integrity: sha512-ONhERVDAtkm0nc+FYPivDozoMOlNUP2BWRBFDJYATGA18Iap5Kd2mZ1/Lwz54RB5+g+3YDOpsvotHa4hd3Q+7Q==} + '@codspeed/core@4.0.0': + resolution: {integrity: sha512-B3zwdwLG8rcV0ORfYKX1wDP6ZCWf9C6ySidSf61q2vm9v5Lj2cWwRvj7vX+w/UyFHWKjp/zSyWTEed/r3Fv4Tg==} - '@codspeed/vitest-plugin@3.1.1': - resolution: {integrity: sha512-/PJUgxIfuRqpBSbaD8bgWXtbXxCqgnW89dzr3220fMkx/LA6z6oUb4tJGjeVsOWAzAgu0VBdSA+8hC+7D9BIuQ==} + '@codspeed/vitest-plugin@4.0.0': + resolution: {integrity: sha512-L7oCOuVL2xI1/z+HLt56+7Xs/MGzbaf5aaOys6vOMDAs1PmxbmyAz6g1Y0x1TrP1+dvR9LUZQCKM/CsXHCrNxg==} peerDependencies: vite: ^4.2.0 || ^5.0.0 vitest: '>=1.2.2' @@ -6019,15 +5994,15 @@ packages: resolution: {integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==} engines: {node: '>=18'} - '@csstools/css-calc@2.1.0': - resolution: {integrity: sha512-X69PmFOrjTZfN5ijxtI8hZ9kRADFSLrmmQ6hgDJ272Il049WGKpDY64KhrFm/7rbWve0z81QepawzjkKlqkNGw==} + '@csstools/css-calc@2.1.1': + resolution: {integrity: sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==} engines: {node: '>=18'} peerDependencies: '@csstools/css-parser-algorithms': ^3.0.4 '@csstools/css-tokenizer': ^3.0.3 - '@csstools/css-color-parser@3.0.6': - resolution: {integrity: sha512-S/IjXqTHdpI4EtzGoNCHfqraXF37x12ZZHA1Lk7zoT5pm2lMjFuqhX/89L7dqX4CcMacKK+6ZCs5TmEGb/+wKw==} + '@csstools/css-color-parser@3.0.7': + resolution: {integrity: sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==} engines: {node: '>=18'} peerDependencies: '@csstools/css-parser-algorithms': ^3.0.4 @@ -6056,14 +6031,14 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-color-function@4.0.6': - resolution: {integrity: sha512-EcvXfC60cTIumzpsxWuvVjb7rsJEHPvqn3jeMEBUaE3JSc4FRuP7mEQ+1eicxWmIrs3FtzMH9gR3sgA5TH+ebQ==} + '@csstools/postcss-color-function@4.0.7': + resolution: {integrity: sha512-aDHYmhNIHR6iLw4ElWhf+tRqqaXwKnMl0YsQ/X105Zc4dQwe6yJpMrTN6BwOoESrkDjOYMOfORviSSLeDTJkdQ==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-color-mix-function@3.0.6': - resolution: {integrity: sha512-jVKdJn4+JkASYGhyPO+Wa5WXSx1+oUgaXb3JsjJn/BlrtFh5zjocCY7pwWi0nuP24V1fY7glQsxEYcYNy0dMFg==} + '@csstools/postcss-color-mix-function@3.0.7': + resolution: {integrity: sha512-e68Nev4CxZYCLcrfWhHH4u/N1YocOfTmw67/kVX5Rb7rnguqqLyxPjhHWjSBX8o4bmyuukmNf3wrUSU3//kT7g==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -6074,8 +6049,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-exponential-functions@2.0.5': - resolution: {integrity: sha512-mi8R6dVfA2nDoKM3wcEi64I8vOYEgQVtVKCfmLHXupeLpACfGAided5ddMt5f+CnEodNu4DifuVwb0I6fQDGGQ==} + '@csstools/postcss-exponential-functions@2.0.6': + resolution: {integrity: sha512-IgJA5DQsQLu/upA3HcdvC6xEMR051ufebBTIXZ5E9/9iiaA7juXWz1ceYj814lnDYP/7eWjZnw0grRJlX4eI6g==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -6086,20 +6061,20 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-gamut-mapping@2.0.6': - resolution: {integrity: sha512-0ke7fmXfc8H+kysZz246yjirAH6JFhyX9GTlyRnM0exHO80XcA9zeJpy5pOp5zo/AZiC/q5Pf+Hw7Pd6/uAoYA==} + '@csstools/postcss-gamut-mapping@2.0.7': + resolution: {integrity: sha512-gzFEZPoOkY0HqGdyeBXR3JP218Owr683u7KOZazTK7tQZBE8s2yhg06W1tshOqk7R7SWvw9gkw2TQogKpIW8Xw==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-gradients-interpolation-method@5.0.6': - resolution: {integrity: sha512-Itrbx6SLUzsZ6Mz3VuOlxhbfuyLTogG5DwEF1V8dAi24iMuvQPIHd7Ti+pNDp7j6WixndJGZaoNR0f9VSzwuTg==} + '@csstools/postcss-gradients-interpolation-method@5.0.7': + resolution: {integrity: sha512-WgEyBeg6glUeTdS2XT7qeTFBthTJuXlS9GFro/DVomj7W7WMTamAwpoP4oQCq/0Ki2gvfRYFi/uZtmRE14/DFA==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-hwb-function@4.0.6': - resolution: {integrity: sha512-927Pqy3a1uBP7U8sTfaNdZVB0mNXzIrJO/GZ8us9219q9n06gOqCdfZ0E6d1P66Fm0fYHvxfDbfcUuwAn5UwhQ==} + '@csstools/postcss-hwb-function@4.0.7': + resolution: {integrity: sha512-LKYqjO+wGwDCfNIEllessCBWfR4MS/sS1WXO+j00KKyOjm7jDW2L6jzUmqASEiv/kkJO39GcoIOvTTfB3yeBUA==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -6158,8 +6133,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-media-minmax@2.0.5': - resolution: {integrity: sha512-sdh5i5GToZOIAiwhdntRWv77QDtsxP2r2gXW/WbLSCoLr00KTq/yiF1qlQ5XX2+lmiFa8rATKMcbwl3oXDMNew==} + '@csstools/postcss-media-minmax@2.0.6': + resolution: {integrity: sha512-J1+4Fr2W3pLZsfxkFazK+9kr96LhEYqoeBszLmFjb6AjYs+g9oDAw3J5oQignLKk3rC9XHW+ebPTZ9FaW5u5pg==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -6182,8 +6157,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-oklab-function@4.0.6': - resolution: {integrity: sha512-Hptoa0uX+XsNacFBCIQKTUBrFKDiplHan42X73EklG6XmQLG7/aIvxoNhvZ7PvOWMt67Pw3bIlUY2nD6p5vL8A==} + '@csstools/postcss-oklab-function@4.0.7': + resolution: {integrity: sha512-I6WFQIbEKG2IO3vhaMGZDkucbCaUSXMxvHNzDdnfsTCF5tc0UlV3Oe2AhamatQoKFjBi75dSEMrgWq3+RegsOQ==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -6194,14 +6169,14 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-random-function@1.0.1': - resolution: {integrity: sha512-Ab/tF8/RXktQlFwVhiC70UNfpFQRhtE5fQQoP2pO+KCPGLsLdWFiOuHgSRtBOqEshCVAzR4H6o38nhvRZq8deA==} + '@csstools/postcss-random-function@1.0.2': + resolution: {integrity: sha512-vBCT6JvgdEkvRc91NFoNrLjgGtkLWt47GKT6E2UDn3nd8ZkMBiziQ1Md1OiKoSsgzxsSnGKG3RVdhlbdZEkHjA==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-relative-color-syntax@3.0.6': - resolution: {integrity: sha512-yxP618Xb+ji1I624jILaYM62uEmZcmbdmFoZHoaThw896sq0vU39kqTTF+ZNic9XyPtPMvq0vyvbgmHaszq8xg==} + '@csstools/postcss-relative-color-syntax@3.0.7': + resolution: {integrity: sha512-apbT31vsJVd18MabfPOnE977xgct5B1I+Jpf+Munw3n6kKb1MMuUmGGH+PT9Hm/fFs6fe61Q/EWnkrb4bNoNQw==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -6212,14 +6187,14 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-sign-functions@1.1.0': - resolution: {integrity: sha512-SLcc20Nujx/kqbSwDmj6oaXgpy3UjFhBy1sfcqPgDkHfOIfUtUVH7OXO+j7BU4v/At5s61N5ZX6shvgPwluhsA==} + '@csstools/postcss-sign-functions@1.1.1': + resolution: {integrity: sha512-MslYkZCeMQDxetNkfmmQYgKCy4c+w9pPDfgOBCJOo/RI1RveEUdZQYtOfrC6cIZB7sD7/PHr2VGOcMXlZawrnA==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-stepped-value-functions@4.0.5': - resolution: {integrity: sha512-G6SJ6hZJkhxo6UZojVlLo14MohH4J5J7z8CRBrxxUYy9JuZiIqUo5TBYyDGcE0PLdzpg63a7mHSJz3VD+gMwqw==} + '@csstools/postcss-stepped-value-functions@4.0.6': + resolution: {integrity: sha512-/dwlO9w8vfKgiADxpxUbZOWlL5zKoRIsCymYoh1IPuBsXODKanKnfuZRr32DEqT0//3Av1VjfNZU9yhxtEfIeA==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -6230,8 +6205,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-trigonometric-functions@4.0.5': - resolution: {integrity: sha512-/YQThYkt5MLvAmVu7zxjhceCYlKrYddK6LEmK5I4ojlS6BmO9u2yO4+xjXzu2+NPYmHSTtP4NFSamBCMmJ1NJA==} + '@csstools/postcss-trigonometric-functions@4.0.6': + resolution: {integrity: sha512-c4Y1D2Why/PeccaSouXnTt6WcNHJkoJRidV2VW9s5gJ97cNxnLgQ4Qj8qOqkIR9VmTQKJyNcbF4hy79ZQnWD7A==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -6284,284 +6259,152 @@ packages: '@emnapi/runtime@1.1.1': resolution: {integrity: sha512-3bfqkzuR1KLx57nZfjr2NLnFOobvyS0aTszaEGCGqmYMVDRaGvgIZbjGSV/MHSSmLgQ/b9JFHQ5xm5WRZYd+XQ==} - '@esbuild/aix-ppc64@0.21.5': - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] - - '@esbuild/aix-ppc64@0.24.0': - resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==} + '@esbuild/aix-ppc64@0.24.2': + resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.21.5': - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - - '@esbuild/android-arm64@0.24.0': - resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==} + '@esbuild/android-arm64@0.24.2': + resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} engines: {node: '>=18'} cpu: [arm64] os: [android] - '@esbuild/android-arm@0.21.5': - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - - '@esbuild/android-arm@0.24.0': - resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==} + '@esbuild/android-arm@0.24.2': + resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} engines: {node: '>=18'} cpu: [arm] os: [android] - '@esbuild/android-x64@0.21.5': - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - - '@esbuild/android-x64@0.24.0': - resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==} + '@esbuild/android-x64@0.24.2': + resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} engines: {node: '>=18'} cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.21.5': - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - - '@esbuild/darwin-arm64@0.24.0': - resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==} + '@esbuild/darwin-arm64@0.24.2': + resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.21.5': - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - - '@esbuild/darwin-x64@0.24.0': - resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==} + '@esbuild/darwin-x64@0.24.2': + resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} engines: {node: '>=18'} cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.21.5': - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - - '@esbuild/freebsd-arm64@0.24.0': - resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==} + '@esbuild/freebsd-arm64@0.24.2': + resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.21.5': - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - - '@esbuild/freebsd-x64@0.24.0': - resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==} + '@esbuild/freebsd-x64@0.24.2': + resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.21.5': - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - - '@esbuild/linux-arm64@0.24.0': - resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==} + '@esbuild/linux-arm64@0.24.2': + resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} engines: {node: '>=18'} cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.21.5': - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - - '@esbuild/linux-arm@0.24.0': - resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==} + '@esbuild/linux-arm@0.24.2': + resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} engines: {node: '>=18'} cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.21.5': - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - - '@esbuild/linux-ia32@0.24.0': - resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==} + '@esbuild/linux-ia32@0.24.2': + resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} engines: {node: '>=18'} cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.21.5': - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-loong64@0.24.0': - resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==} + '@esbuild/linux-loong64@0.24.2': + resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} engines: {node: '>=18'} cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.21.5': - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - - '@esbuild/linux-mips64el@0.24.0': - resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==} + '@esbuild/linux-mips64el@0.24.2': + resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.21.5': - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - - '@esbuild/linux-ppc64@0.24.0': - resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==} + '@esbuild/linux-ppc64@0.24.2': + resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.21.5': - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - - '@esbuild/linux-riscv64@0.24.0': - resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==} + '@esbuild/linux-riscv64@0.24.2': + resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.21.5': - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - - '@esbuild/linux-s390x@0.24.0': - resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==} + '@esbuild/linux-s390x@0.24.2': + resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} engines: {node: '>=18'} cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.21.5': - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - - '@esbuild/linux-x64@0.24.0': - resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==} + '@esbuild/linux-x64@0.24.2': + resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} engines: {node: '>=18'} cpu: [x64] os: [linux] - '@esbuild/netbsd-x64@0.21.5': - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} - engines: {node: '>=12'} - cpu: [x64] + '@esbuild/netbsd-arm64@0.24.2': + resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==} + engines: {node: '>=18'} + cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-x64@0.24.0': - resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==} + '@esbuild/netbsd-x64@0.24.2': + resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.24.0': - resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==} + '@esbuild/openbsd-arm64@0.24.2': + resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-x64@0.21.5': - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - - '@esbuild/openbsd-x64@0.24.0': - resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==} + '@esbuild/openbsd-x64@0.24.2': + resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.21.5': - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - - '@esbuild/sunos-x64@0.24.0': - resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==} + '@esbuild/sunos-x64@0.24.2': + resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} engines: {node: '>=18'} cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.21.5': - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - - '@esbuild/win32-arm64@0.24.0': - resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==} + '@esbuild/win32-arm64@0.24.2': + resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} engines: {node: '>=18'} cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.21.5': - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - - '@esbuild/win32-ia32@0.24.0': - resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==} + '@esbuild/win32-ia32@0.24.2': + resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} engines: {node: '>=18'} cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.21.5': - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - - '@esbuild/win32-x64@0.24.0': - resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==} + '@esbuild/win32-x64@0.24.2': + resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -6580,31 +6423,31 @@ packages: resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.9.1': - resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==} + '@eslint/core@0.10.0': + resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/eslintrc@3.2.0': resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.16.0': - resolution: {integrity: sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==} + '@eslint/js@9.18.0': + resolution: {integrity: sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.5': resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.2.4': - resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==} + '@eslint/plugin-kit@0.2.5': + resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@fontsource/monofett@5.1.0': - resolution: {integrity: sha512-9q+bvgtXR3OZa3MFjeRsxHZsBkXtAsz3a3f06ehuFz2BTafJuWRLKl5RKbe3tBnRJB0sPKjTnmQsgBLDVz4SUw==} + '@fontsource/monofett@5.1.1': + resolution: {integrity: sha512-W4MZDfKwpNuEJJewGzTMn1Z1prwF7dpw6YOfIx7RwSdeiEfMevNdUp1457+NR2bUQdloQs8F7RqLnFrxL7+lbg==} - '@fontsource/montserrat@5.1.0': - resolution: {integrity: sha512-HB4+rWP9Y8g6T9RGRVJk2SvAJtx2eBAXuivvPOqQdD806/9WESUfucfH9LqFj3bGgdhNCfh0Rv0NGuwEmBLRiw==} + '@fontsource/montserrat@5.1.1': + resolution: {integrity: sha512-myTQCo0XWf5AXc3Pm5GFFTstueYTacE+gpL3G8Vf5ELpr/rBfW+zr7dKLPYXlq2r21HHwfyw6yueKWccWUtKBA==} '@humanfs/core@0.19.1': resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} @@ -6853,6 +6696,10 @@ packages: '@neon-rs/load@0.0.4': resolution: {integrity: sha512-kTPhdZyTQxB+2wpiRcFWrDcejc4JI6tkPuS7UZCG4l6Zvc5kU/gGQ/ozvHTh1XR5tS+UlfAfGuPajjzQjCiHCw==} + '@netlify/blobs@8.1.0': + resolution: {integrity: sha512-9hIbusvAZjSGBJ42OyFC2AxsEph1LuKQahMWFcPGEIsOqIYHhMRkYA7wSUMhH7naydjNmllpcp3pJLOK4RhFaQ==} + engines: {node: ^14.16.0 || >=16.0.0} + '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -6922,12 +6769,6 @@ packages: cpu: [x64] os: [linux] - '@parcel/watcher-wasm@2.5.0': - resolution: {integrity: sha512-Z4ouuR8Pfggk1EYYbTaIoxc+Yv4o7cGQnH0Xy8+pQ+HbiW+ZnwhcD2LPf/prfq1nIWpAxjOkQ8uSMFWMtBLiVQ==} - engines: {node: '>= 10.0.0'} - bundledDependencies: - - napi-wasm - '@parcel/watcher-win32-arm64@2.4.1': resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==} engines: {node: '>= 10.0.0'} @@ -6954,8 +6795,8 @@ packages: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} - '@playwright/test@1.49.0': - resolution: {integrity: sha512-DMulbwQURa8rNIQrf94+jPJQ4FmOVdpE5ZppRNvWVjvhC+6sOeo28r8MgIpQRYouXRtt/FCCXU7zn20jnHR4Qw==} + '@playwright/test@1.49.1': + resolution: {integrity: sha512-Ky+BVzPz8pL6PQxHqNRW1k3mIyv933LML7HktS8uik0bUXNCdPhoS/kLihiO1tMf/egaJb4IutXd7UywvXEW+g==} engines: {node: '>=18'} hasBin: true @@ -6971,8 +6812,8 @@ packages: '@preact/signals-core@1.8.0': resolution: {integrity: sha512-OBvUsRZqNmjzCZXWLxkZfhcgT+Fk8DDcT/8vD6a1xhDemodyy87UJRJfASMuSD8FaAIeGgGm85ydXhm7lr4fyA==} - '@preact/signals@1.3.0': - resolution: {integrity: sha512-EOMeg42SlLS72dhoq6Vjq08havnLseWmPQ8A0YsgIAqMgWgx7V1a39+Pxo6i7SY5NwJtH4849JogFq3M67AzWg==} + '@preact/signals@2.0.1': + resolution: {integrity: sha512-f9p/utMgttPb9bJ+UgRBkTDZ9uQiZfX1/gV3pXGWz+yGNQj8MrnG55Xo8MAG4IHcb5UXQO6tvt9ZlsM4A2j+Rw==} peerDependencies: preact: 10.x @@ -6993,12 +6834,21 @@ packages: preact: ^10.4.0 vite: '>=2.0.0' + '@publint/pack@0.1.1': + resolution: {integrity: sha512-TvCl79Y8v18ZhFGd5mjO1kYPovSBq3+4LVCi5Nfl1JI8fS8i8kXbgQFGwBJRXczim8GlW8c2LMBKTtExYXOy/A==} + engines: {node: '>=18'} + + '@qwik.dev/partytown@0.11.0': + resolution: {integrity: sha512-MHime7cxj7KGrapGZ1VqLkXXq5BLNqvjNZndRJVvMkUWn92F2bsezlWW1lKDoFaKCKu2xv9LRUZL99RYOs+ccA==} + engines: {node: '>=18.0.0'} + hasBin: true + '@rollup/pluginutils@4.2.1': resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} engines: {node: '>= 8.0.0'} - '@rollup/pluginutils@5.1.3': - resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} + '@rollup/pluginutils@5.1.4': + resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -7006,113 +6856,124 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.28.0': - resolution: {integrity: sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==} + '@rollup/rollup-android-arm-eabi@4.30.1': + resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.28.0': - resolution: {integrity: sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==} + '@rollup/rollup-android-arm64@4.30.1': + resolution: {integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.28.0': - resolution: {integrity: sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==} + '@rollup/rollup-darwin-arm64@4.30.1': + resolution: {integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.28.0': - resolution: {integrity: sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==} + '@rollup/rollup-darwin-x64@4.30.1': + resolution: {integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.28.0': - resolution: {integrity: sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==} + '@rollup/rollup-freebsd-arm64@4.30.1': + resolution: {integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.28.0': - resolution: {integrity: sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==} + '@rollup/rollup-freebsd-x64@4.30.1': + resolution: {integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.28.0': - resolution: {integrity: sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==} + '@rollup/rollup-linux-arm-gnueabihf@4.30.1': + resolution: {integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.28.0': - resolution: {integrity: sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==} + '@rollup/rollup-linux-arm-musleabihf@4.30.1': + resolution: {integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.28.0': - resolution: {integrity: sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==} + '@rollup/rollup-linux-arm64-gnu@4.30.1': + resolution: {integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.28.0': - resolution: {integrity: sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==} + '@rollup/rollup-linux-arm64-musl@4.30.1': + resolution: {integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.28.0': - resolution: {integrity: sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==} + '@rollup/rollup-linux-loongarch64-gnu@4.30.1': + resolution: {integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': + resolution: {integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.28.0': - resolution: {integrity: sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==} + '@rollup/rollup-linux-riscv64-gnu@4.30.1': + resolution: {integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.28.0': - resolution: {integrity: sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==} + '@rollup/rollup-linux-s390x-gnu@4.30.1': + resolution: {integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.28.0': - resolution: {integrity: sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==} + '@rollup/rollup-linux-x64-gnu@4.30.1': + resolution: {integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.28.0': - resolution: {integrity: sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==} + '@rollup/rollup-linux-x64-musl@4.30.1': + resolution: {integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.28.0': - resolution: {integrity: sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==} + '@rollup/rollup-win32-arm64-msvc@4.30.1': + resolution: {integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.28.0': - resolution: {integrity: sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==} + '@rollup/rollup-win32-ia32-msvc@4.30.1': + resolution: {integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.28.0': - resolution: {integrity: sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==} + '@rollup/rollup-win32-x64-msvc@4.30.1': + resolution: {integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==} cpu: [x64] os: [win32] '@sec-ant/readable-stream@0.4.1': resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} - '@shikijs/core@1.24.0': - resolution: {integrity: sha512-6pvdH0KoahMzr6689yh0QJ3rCgF4j1XsXRHNEeEN6M4xJTfQ6QPWrmHzIddotg+xPJUPEPzYzYCKzpYyhTI6Gw==} + '@shikijs/core@1.26.2': + resolution: {integrity: sha512-ORyu3MrY7dCC7FDLDsFSkBM9b/AT9/Y8rH+UQ07Rtek48pp0ZhQOMPTKolqszP4bBCas6FqTZQYt18BBamVl/g==} - '@shikijs/engine-javascript@1.24.0': - resolution: {integrity: sha512-ZA6sCeSsF3Mnlxxr+4wGEJ9Tto4RHmfIS7ox8KIAbH0MTVUkw3roHPHZN+LlJMOHJJOVupe6tvuAzRpN8qK1vA==} + '@shikijs/engine-javascript@1.26.2': + resolution: {integrity: sha512-ngkIu9swLVo9Zt5QBtz5Sk08vmPcwuj01r7pPK/Zjmo2U2WyKMK4WMUMmkdQiUacdcLth0zt8u1onp4zhkFXKQ==} - '@shikijs/engine-oniguruma@1.24.0': - resolution: {integrity: sha512-Eua0qNOL73Y82lGA4GF5P+G2+VXX9XnuUxkiUuwcxQPH4wom+tE39kZpBFXfUuwNYxHSkrSxpB1p4kyRW0moSg==} + '@shikijs/engine-oniguruma@1.26.2': + resolution: {integrity: sha512-mlN7Qrs+w60nKrd7at7XkXSwz6728Pe34taDmHrG6LRHjzCqQ+ysg+/AT6/D2LMk0s2lsr71DjpI73430QP4/w==} - '@shikijs/types@1.24.0': - resolution: {integrity: sha512-aptbEuq1Pk88DMlCe+FzXNnBZ17LCiLIGWAeCWhoFDzia5Q5Krx3DgnULLiouSdd6+LUM39XwXGppqYE0Ghtug==} + '@shikijs/langs@1.26.2': + resolution: {integrity: sha512-o5cdPycB2Kw3IgncHxWopWPiTkjAj7dG01fLkkUyj3glb5ftxL/Opecq9F54opMlrgXy7ZIqDERvFLlUzsCOuA==} - '@shikijs/vscode-textmate@9.3.0': - resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} + '@shikijs/themes@1.26.2': + resolution: {integrity: sha512-y4Pn6PM5mODz/e3yF6jAUG7WLKJzqL2tJ5qMJCUkMUB1VRgtQVvoa1cHh7NScryGXyrYGJ8nPnRDhdv2rw0xpA==} + + '@shikijs/types@1.26.2': + resolution: {integrity: sha512-PO2jucx2FIdlLBPYbIUlMtWSLs5ulcRcuV93cR3T65lkK5SJP4MGBRt9kmWGXiQc0f7+FHj/0BEawditZcI/fQ==} + + '@shikijs/vscode-textmate@10.0.1': + resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==} '@sindresorhus/merge-streams@2.3.0': resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} @@ -7122,8 +6983,8 @@ packages: resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} engines: {node: '>=18'} - '@solidjs/router@0.15.1': - resolution: {integrity: sha512-lb5BRBqQqii/1dQCglx2K68xLkgu7QcrcajWKuuEx6FHTsK/hp5IgVhjy6RzPMLj+SFyrrRi/ldirCFNxtzh0Q==} + '@solidjs/router@0.15.2': + resolution: {integrity: sha512-UWtliRvOnjfYMONQcTGwtf6BEud5QlF0oHC5L+kcSGYn0jARH5KzC3+3LLZ0al7oQo/5Rc50ssMswPuAuxFvAA==} peerDependencies: solid-js: ^1.8.6 @@ -7135,8 +6996,8 @@ packages: svelte: ^5.0.0 vite: ^6.0.0 - '@sveltejs/vite-plugin-svelte@5.0.1': - resolution: {integrity: sha512-D5l5+STmywGoLST07T9mrqqFFU+xgv5fqyTWM+VbxTvQ6jujNn4h3lQNCvlwVYs4Erov8i0K5Rwr3LQtmBYmBw==} + '@sveltejs/vite-plugin-svelte@5.0.3': + resolution: {integrity: sha512-MCFS6CrQDu1yGwspm4qtli0e63vaPCehf6V7pIMP15AsWgMKrqDGCPFF/0kn4SP0ii4aySu4Pa62+fIRGFMjgw==} engines: {node: ^18.0.0 || ^20.0.0 || >=22} peerDependencies: svelte: ^5.0.0 @@ -7149,9 +7010,6 @@ packages: '@types/acorn@4.0.6': resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} - '@types/alpinejs@3.13.10': - resolution: {integrity: sha512-ah53tF6mWuuwerpDE7EHwbZErNDJQlsLISPqJhYj2RZ9nuTYbRknSkqebUd3igkhLIZKkPa7IiXjSn9qsU9O2w==} - '@types/alpinejs@3.13.11': resolution: {integrity: sha512-3KhGkDixCPiLdL3Z/ok1GxHwLxEWqQOKJccgaQL01wc0EVM2tCTaqlC3NIedmxAXkVzt/V6VTM8qPgnOHKJ1MA==} @@ -7173,8 +7031,8 @@ packages: '@types/braces@3.0.4': resolution: {integrity: sha512-0WR3b8eaISjEW7RpZnclONaLFDf7buaowRHdqLp4vLj54AsSAYWfh3DRbfiYJY9XDxMgx1B4sE1Afw2PGpuHOA==} - '@types/canvas-confetti@1.6.4': - resolution: {integrity: sha512-fNyZ/Fdw/Y92X0vv7B+BD6ysHL4xVU5dJcgzgxLdGbn8O3PezZNIJpml44lKM0nsGur+o/6+NZbZeNTt00U1uA==} + '@types/canvas-confetti@1.9.0': + resolution: {integrity: sha512-aBGj/dULrimR1XDZLtG9JwxX1b4HPRF6CX9Yfwh3NvstZEm1ZL7RBnel4keCPSqs1ANRu1u2Aoz9R+VmtjYuTg==} '@types/common-ancestor-path@1.0.2': resolution: {integrity: sha512-8llyULydTb7nM9yfiW78n6id3cet+qnATPV3R44yIywxgBaa8QXFSM9QTMf4OH64QOB45BlgZ3/oL4mmFLztQw==} @@ -7269,11 +7127,13 @@ packages: '@types/prop-types@15.7.12': resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - '@types/react-dom@18.3.1': - resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==} + '@types/react-dom@18.3.5': + resolution: {integrity: sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==} + peerDependencies: + '@types/react': ^18.0.0 - '@types/react@18.3.12': - resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==} + '@types/react@18.3.18': + resolution: {integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==} '@types/sax@1.2.7': resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} @@ -7308,66 +7168,51 @@ packages: '@types/yargs-parser@21.0.3': resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - '@typescript-eslint/eslint-plugin@8.17.0': - resolution: {integrity: sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==} + '@typescript-eslint/eslint-plugin@8.19.1': + resolution: {integrity: sha512-tJzcVyvvb9h/PB96g30MpxACd9IrunT7GF9wfA9/0TJ1LxGOJx1TdPzSbBBnNED7K9Ka8ybJsnEpiXPktolTLg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/parser@8.17.0': - resolution: {integrity: sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==} + '@typescript-eslint/parser@8.19.1': + resolution: {integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/scope-manager@8.17.0': - resolution: {integrity: sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==} + '@typescript-eslint/scope-manager@8.19.1': + resolution: {integrity: sha512-60L9KIuN/xgmsINzonOcMDSB8p82h95hoBfSBtXuO4jlR1R9L1xSkmVZKgCPVfavDlXihh4ARNjXhh1gGnLC7Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.17.0': - resolution: {integrity: sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==} + '@typescript-eslint/type-utils@8.19.1': + resolution: {integrity: sha512-Rp7k9lhDKBMRJB/nM9Ksp1zs4796wVNyihG9/TU9R6KCJDNkQbc2EOKjrBtLYh3396ZdpXLtr/MkaSEmNMtykw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/types@8.17.0': - resolution: {integrity: sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==} + '@typescript-eslint/types@8.19.1': + resolution: {integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.17.0': - resolution: {integrity: sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==} + '@typescript-eslint/typescript-estree@8.19.1': + resolution: {integrity: sha512-jk/TZwSMJlxlNnqhy0Eod1PNEvCkpY6MXOXE/WLlblZ6ibb32i2We4uByoKPv1d0OD2xebDv4hbs3fm11SMw8Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/utils@8.17.0': - resolution: {integrity: sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==} + '@typescript-eslint/utils@8.19.1': + resolution: {integrity: sha512-IxG5gLO0Ne+KaUc8iW1A+XuKLd63o4wlbI1Zp692n1xojCl/THvgIKXJXBZixTh5dd5+yTJ/VXH7GJaaw21qXA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/visitor-keys@8.17.0': - resolution: {integrity: sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==} + '@typescript-eslint/visitor-keys@8.19.1': + resolution: {integrity: sha512-fzmjU8CHK853V/avYZAvuVut3ZTfwN5YtMaoi+X9Y9MA9keaWNHC3zEQ9zvyX/7Hj+5JkNyK1l7TOR2hevHB6Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@typescript/twoslash@3.1.0': @@ -7402,14 +7247,11 @@ packages: vite: ^5.0.0 || ^6.0.0 vue: ^3.2.25 - '@vitest/expect@2.1.6': - resolution: {integrity: sha512-9M1UR9CAmrhJOMoSwVnPh2rELPKhYo0m/CSgqw9PyStpxtkwhmdM6XYlXGKeYyERY1N6EIuzkQ7e3Lm1WKCoUg==} + '@vitest/expect@3.0.0-beta.4': + resolution: {integrity: sha512-wBBhMoM1z5M8exSDA8IkCjy4a83T10qwLmFHYjGiLQ3rV8OlexjGNOm28rRokcG+oYgR2+zcH3GU6sl/IKf/3g==} - '@vitest/expect@2.1.8': - resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==} - - '@vitest/mocker@2.1.6': - resolution: {integrity: sha512-MHZp2Z+Q/A3am5oD4WSH04f9B0T7UvwEb+v5W0kCYMhtXGYbdyl2NUk1wdSMqGthmhpiThPDp/hEoVwu16+u1A==} + '@vitest/mocker@3.0.0-beta.4': + resolution: {integrity: sha512-VjQu8F5N57SvSvD7xOfl6r2R78/qOtj7ySHaG9OQLTc6O6jb+AYBGsDE+N6spFf25BuIwZIcUFlk+wvXMNEHEQ==} peerDependencies: msw: ^2.4.9 vite: ^5.0.0 || ^6.0.0 @@ -7419,46 +7261,20 @@ packages: vite: optional: true - '@vitest/mocker@2.1.8': - resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==} - peerDependencies: - msw: ^2.4.9 - vite: ^5.0.0 - peerDependenciesMeta: - msw: - optional: true - vite: - optional: true + '@vitest/pretty-format@3.0.0-beta.4': + resolution: {integrity: sha512-uwgWpsHabr96/YnrzNY+NQUgnza8rFq6wYW/yR1FrgRfQtVTS1loOPQSydRkUDk307bUzMVyyh7aVRwtLgHkDg==} - '@vitest/pretty-format@2.1.6': - resolution: {integrity: sha512-exZyLcEnHgDMKc54TtHca4McV4sKT+NKAe9ix/yhd/qkYb/TP8HTyXRFDijV19qKqTZM0hPL4753zU/U8L/gAA==} + '@vitest/runner@3.0.0-beta.4': + resolution: {integrity: sha512-+tTASu585TT23AeO+bOBSQ/2nin66nPqOznDCB1HQJ8+Mb3gtOw9faJwQEZ9uPRNhi/mLNau4k9Zig1p/AnntQ==} - '@vitest/pretty-format@2.1.8': - resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==} + '@vitest/snapshot@3.0.0-beta.4': + resolution: {integrity: sha512-z8WLahOEDpRkPf6OvOYhjK6Mhl3Z4U4m536kAxUeFD5If0o1e2rdvSzD6oNPfs25rKs+UT7dla+4MSFU1JVjPA==} - '@vitest/runner@2.1.6': - resolution: {integrity: sha512-SjkRGSFyrA82m5nz7To4CkRSEVWn/rwQISHoia/DB8c6IHIhaE/UNAo+7UfeaeJRE979XceGl00LNkIz09RFsA==} + '@vitest/spy@3.0.0-beta.4': + resolution: {integrity: sha512-3Re3ofS3cYq0rCgyiwk51gOzAZyQQ15caJHkuqjcF7dzK7zMGKZpjwQFDaMZq0eAq+AZg+Qo39qrDI8S1dIYSg==} - '@vitest/runner@2.1.8': - resolution: {integrity: sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==} - - '@vitest/snapshot@2.1.6': - resolution: {integrity: sha512-5JTWHw8iS9l3v4/VSuthCndw1lN/hpPB+mlgn1BUhFbobeIUj1J1V/Bj2t2ovGEmkXLTckFjQddsxS5T6LuVWw==} - - '@vitest/snapshot@2.1.8': - resolution: {integrity: sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==} - - '@vitest/spy@2.1.6': - resolution: {integrity: sha512-oTFObV8bd4SDdRka5O+mSh5w9irgx5IetrD5i+OsUUsk/shsBoHifwCzy45SAORzAhtNiprUVaK3hSCCzZh1jQ==} - - '@vitest/spy@2.1.8': - resolution: {integrity: sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==} - - '@vitest/utils@2.1.6': - resolution: {integrity: sha512-ixNkFy3k4vokOUTU2blIUvOgKq/N2PW8vKIjZZYsGJCMX69MRa9J2sKqX5hY/k5O5Gty3YJChepkqZ3KM9LyIQ==} - - '@vitest/utils@2.1.8': - resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==} + '@vitest/utils@3.0.0-beta.4': + resolution: {integrity: sha512-ea90t+ajEQd5+jA60nuE5SemTlogk49T2Ttiq2ct2ZJpsSj4a7QEQBPsvWaqhKtE3+eVIhT4Qp/Mml2qqIMGEg==} '@volar/kit@2.4.6': resolution: {integrity: sha512-OaMtpmLns6IYD1nOSd0NdG/F5KzJ7Jr4B7TLeb4byPzu+ExuuRVeO56Dn1C7Frnw6bGudUQd90cpQAmxdB+RlQ==} @@ -7502,67 +7318,41 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@vue/compiler-core@3.5.12': - resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} - '@vue/compiler-core@3.5.13': resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} - '@vue/compiler-dom@3.5.12': - resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==} - '@vue/compiler-dom@3.5.13': resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==} - '@vue/compiler-sfc@3.5.12': - resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==} - '@vue/compiler-sfc@3.5.13': resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==} - '@vue/compiler-ssr@3.5.12': - resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==} - '@vue/compiler-ssr@3.5.13': resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==} - '@vue/devtools-core@7.6.7': - resolution: {integrity: sha512-6fW8Q0H1NHDXdEcuV6dylT5U2Yxg3SdMnVCey99Y6S4R2PNgFL2vC+VU9U9rHIiaoEUkeza42S7FfHxV4VI3Jg==} + '@vue/devtools-core@7.7.0': + resolution: {integrity: sha512-tSO3pghV5RZGSonZ87S2fOGru3X93epmar5IjZOWjHxH6XSwnK5UbR2aW5puZV+LgLoVYrcNou3krSo5k1F31g==} peerDependencies: vue: ^3.0.0 - '@vue/devtools-kit@7.6.7': - resolution: {integrity: sha512-V8/jrXY/swHgnblABG9U4QCbE60c6RuPasmv2d9FvVqc5d94t1vDiESuvRmdNJBdWz4/D3q6ffgyAfRVjwHYEw==} + '@vue/devtools-kit@7.7.0': + resolution: {integrity: sha512-5cvZ+6SA88zKC8XiuxUfqpdTwVjJbvYnQZY5NReh7qlSGPvVDjjzyEtW+gdzLXNSd8tStgOjAdMCpvDQamUXtA==} - '@vue/devtools-shared@7.6.7': - resolution: {integrity: sha512-QggO6SviAsolrePAXZ/sA1dSicSPt4TueZibCvydfhNDieL1lAuyMTgQDGst7TEvMGb4vgYv2I+1sDkO4jWNnw==} + '@vue/devtools-shared@7.7.0': + resolution: {integrity: sha512-jtlQY26R5thQxW9YQTpXbI0HoK0Wf9Rd4ekidOkRvSy7ChfK0kIU6vvcBtjj87/EcpeOSK49fZAicaFNJcoTcQ==} '@vue/reactivity@3.1.5': resolution: {integrity: sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==} - '@vue/reactivity@3.5.12': - resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==} - '@vue/reactivity@3.5.13': resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==} - '@vue/runtime-core@3.5.12': - resolution: {integrity: sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==} - '@vue/runtime-core@3.5.13': resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==} - '@vue/runtime-dom@3.5.12': - resolution: {integrity: sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==} - '@vue/runtime-dom@3.5.13': resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==} - '@vue/server-renderer@3.5.12': - resolution: {integrity: sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==} - peerDependencies: - vue: 3.5.12 - '@vue/server-renderer@3.5.13': resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==} peerDependencies: @@ -7571,9 +7361,6 @@ packages: '@vue/shared@3.1.5': resolution: {integrity: sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==} - '@vue/shared@3.5.12': - resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==} - '@vue/shared@3.5.13': resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} @@ -7609,8 +7396,8 @@ packages: ajv@8.17.1: resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} - alpinejs@3.14.3: - resolution: {integrity: sha512-cL8JBEDAm4UeVjTN5QnFl8QgMGUwxFn1GvQvu3RtfAHUrAPRahGihrsWpKnEK9L0QMqsAPk/R8MylMWKHaK33A==} + alpinejs@3.14.8: + resolution: {integrity: sha512-wT2fuP2DXpGk/jKaglwy7S/IJpm1FD+b7U6zUrhwErjoq5h27S4dxkJEXVvhbdwyPv9U+3OkUuNLkZT4h2Kfrg==} ansi-align@3.0.1: resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} @@ -7873,9 +7660,6 @@ packages: resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==} engines: {node: '>=8'} - citty@0.1.6: - resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} - cli-boxes@3.0.0: resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} engines: {node: '>=10'} @@ -7888,10 +7672,6 @@ packages: resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} engines: {node: 10.* || >= 12.*} - clipboardy@4.0.0: - resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==} - engines: {node: '>=18'} - cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} @@ -7954,9 +7734,6 @@ packages: concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - confbox@0.1.8: - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} - consola@3.2.3: resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} engines: {node: ^14.18.0 || >=16.10.0} @@ -7982,10 +7759,6 @@ packages: cross-argv@2.0.0: resolution: {integrity: sha512-YIaY9TR5Nxeb8SMdtrU8asWVM4jqJDNDYlKV21LxtYcfNJhp1kEsgSa6qXwXgzN0WQWGODps0+TlGp2xQSHwOg==} - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} - cross-spawn@7.0.6: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} @@ -7999,8 +7772,8 @@ packages: peerDependencies: postcss: ^8.4 - css-has-pseudo@7.0.1: - resolution: {integrity: sha512-EOcoyJt+OsuKfCADgLT7gADZI5jMzIe/AeI6MeAYKiFBDmNmM7kk46DtSfMj5AohUJisqVzopBpnQTlvbyaBWg==} + css-has-pseudo@7.0.2: + resolution: {integrity: sha512-nzol/h+E0bId46Kn2dQH5VElaknX2Sr0hFuB/1EomdC7j+OISt2ZzK7EHX9DZDY53WbIVAR7FYKSO2XnSf07MQ==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -8032,8 +7805,8 @@ packages: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} - cssdb@8.2.2: - resolution: {integrity: sha512-Z3kpWyvN68aKyeMxOUGmffQeHjvrzDxbre2B2ikr/WqQ4ZMkhHu2nOD6uwSeq3TpuOYU7ckvmJRAUIt6orkYUg==} + cssdb@8.2.3: + resolution: {integrity: sha512-9BDG5XmJrJQQnJ51VFxXCAtpZ5ebDlAREmO8sxMOVU0aSxN/gocbctjIG5LMh3WBUq+xTlb/jw2LoljBEqraTA==} cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} @@ -8065,16 +7838,8 @@ packages: dataloader@1.4.0: resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} - debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@4.3.7: - resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + debug@4.4.0: + resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -8198,8 +7963,12 @@ packages: resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} engines: {node: '>= 4'} - domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + domutils@3.2.1: + resolution: {integrity: sha512-xWXmuRnN9OMP6ptPd2+H0cCbcYBULa5YDTbMm/2lvkWvNA3O4wcW+GvzooqBuNM8yy6pl3VIAeJTUUWUbfI5Fw==} + + dotenv@16.4.7: + resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} + engines: {node: '>=12'} dotenv@8.6.0: resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} @@ -8322,10 +8091,6 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} - encodeurl@2.0.0: resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} engines: {node: '>= 0.8'} @@ -8341,14 +8106,18 @@ packages: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} + entities@6.0.0: + resolution: {integrity: sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==} + engines: {node: '>=0.12'} + eol@0.10.0: resolution: {integrity: sha512-+w3ktYrOphcIqC1XKmhQYvM+o2uxgQFiimL7B6JPZJlWVxf7Lno9e/JWLPIgbHo7DoZ+b7jsf/NzrUcNe6ZTZQ==} error-stack-parser-es@0.1.5: resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==} - es-module-lexer@1.5.4: - resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} + es-module-lexer@1.6.0: + resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} esast-util-from-estree@2.0.0: resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==} @@ -8361,13 +8130,8 @@ packages: peerDependencies: esbuild: '>= 0.14.0' - esbuild@0.21.5: - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} - engines: {node: '>=12'} - hasBin: true - - esbuild@0.24.0: - resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==} + esbuild@0.24.2: + resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} engines: {node: '>=18'} hasBin: true @@ -8404,8 +8168,8 @@ packages: resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.16.0: - resolution: {integrity: sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==} + eslint@9.18.0: + resolution: {integrity: sha512-+waTfRWQlSbpt3KWE+CjrPPYnbq9kfZIYUqapc0uBXyjTp8aYXZDsUH16m39Ryq3NjAVP4tjuF7KaukeqoCoaA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -8414,9 +8178,6 @@ packages: jiti: optional: true - esm-env@1.1.4: - resolution: {integrity: sha512-oO82nKPHKkzIj/hbtuDYy/JHqBHFlMIW36SDiPCVsj87ntDLcWN+sJ1erdVryd4NxODacFTsdrIE3b7IamqbOg==} - esm-env@1.2.1: resolution: {integrity: sha512-U9JedYYjCnadUlXk7e1Kr+aENQhtUaoaV9+gZm1T8LC/YBAPJx3NSPIAurFOC0U5vrdSevnUJS2/wUVxGwPhng==} @@ -8437,11 +8198,8 @@ packages: resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} engines: {node: '>=0.10'} - esrap@1.2.2: - resolution: {integrity: sha512-F2pSJklxx1BlQIQgooczXCPHmcWpn6EsP5oo73LQfonG9fIlIENQ8vMmfGXeojP9MrkzUNAfyU5vdFlR9shHAw==} - - esrap@1.2.3: - resolution: {integrity: sha512-ZlQmCCK+n7SGoqo7DnfKaP1sJZa49P01/dXzmjCASSo04p72w8EksT2NMK8CEX8DhKsfJXANioIw8VyHNsBfvQ==} + esrap@1.4.2: + resolution: {integrity: sha512-FhVlJzvTw7ZLxYZ7RyHwQCFE64dkkpzGNNnphaGCLwjqGk1SQcqzbgdx9FowPCktx6NOSHkzvcZ3vsvdH54YXA==} esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} @@ -8511,8 +8269,8 @@ packages: fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} engines: {node: '>=8.6.0'} fast-json-stable-stringify@2.1.0: @@ -8524,8 +8282,8 @@ packages: fast-uri@3.0.1: resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==} - fast-xml-parser@4.5.0: - resolution: {integrity: sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==} + fast-xml-parser@4.5.1: + resolution: {integrity: sha512-y655CeyUQ+jj7KBbYMc4FG01V8ZQqjN+gDYGJ50RtfsUB8iG9AmwmwoAgeKLJdmueKKMrH1RJ7yXHTSoczdv5w==} hasBin: true fastq@1.17.1: @@ -8633,9 +8391,6 @@ packages: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} engines: {node: '>= 8'} - fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fsevents@2.3.2: resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -8661,9 +8416,6 @@ packages: resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} engines: {node: '>=18'} - get-port-please@3.1.2: - resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==} - get-stream@8.0.1: resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} engines: {node: '>=16'} @@ -8687,11 +8439,6 @@ packages: resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} hasBin: true - glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - deprecated: Glob versions prior to v9 are no longer supported - globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} @@ -8758,8 +8505,8 @@ packages: hast-util-to-estree@3.1.0: resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} - hast-util-to-html@9.0.3: - resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==} + hast-util-to-html@9.0.4: + resolution: {integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==} hast-util-to-jsx-runtime@2.3.0: resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} @@ -8810,6 +8557,9 @@ packages: html-void-elements@3.0.0: resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} + htmlparser2@10.0.0: + resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==} + htmlparser2@8.0.2: resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} @@ -8830,10 +8580,6 @@ packages: resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} engines: {node: '>= 14'} - http-shutdown@1.2.2: - resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - https-proxy-agent@7.0.4: resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} engines: {node: '>= 14'} @@ -8863,17 +8609,10 @@ packages: ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - ignore-walk@5.0.1: - resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - ignore@5.3.2: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} - immutable@4.3.7: - resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} - immutable@5.0.3: resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==} @@ -8888,10 +8627,6 @@ packages: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} - inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. - inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} @@ -8964,9 +8699,6 @@ packages: is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - is-reference@3.0.2: - resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} - is-reference@3.0.3: resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} @@ -8998,10 +8730,6 @@ packages: resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} engines: {node: '>=16'} - is64bit@2.0.0: - resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==} - engines: {node: '>=18'} - isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} @@ -9012,10 +8740,6 @@ packages: resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} hasBin: true - jiti@2.4.0: - resolution: {integrity: sha512-H5UpaUI+aHOqZXlYOaFP/8AzKsg+guWu+Pr3Y8i7+Y3zr1aXAvCvTAQ1RxSc6oVD8R8c7brgNtTVP91E7upH/g==} - hasBin: true - js-base64@3.7.7: resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==} @@ -9106,14 +8830,6 @@ packages: resolution: {integrity: sha512-sorTJV6PNt94Wap27Sai5gtVLIea4Otb2LUiAUyr3p6BPOScGMKGt5F1b5X/XgkNtcsDKeX5qfeBDj+PdShclQ==} os: [darwin, linux, win32] - lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} - - lilconfig@3.1.2: - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} - engines: {node: '>=14'} - lilconfig@3.1.3: resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} engines: {node: '>=14'} @@ -9124,12 +8840,8 @@ packages: linkedom@0.14.26: resolution: {integrity: sha512-mK6TrydfFA7phrnp+1j57ycBwFI5bGSW6YXlw9acHoqF+mP/y+FooEYYyniOt5Ot57FSKB3iwmnuQ1UUyNLm5A==} - linkedom@0.18.5: - resolution: {integrity: sha512-JGLaGGtqtu+eOhYrC1wkWYTBcpVWL4AsnwAtMtgO1Q0gI0PuPJKI0zBBE+a/1BrhOE3Uw8JI/ycByAv5cLrAuQ==} - - listhen@1.9.0: - resolution: {integrity: sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==} - hasBin: true + linkedom@0.18.6: + resolution: {integrity: sha512-6G8euAJ84s7MTXTli5JIOO5tzEpyoUBw2/zcqAunSurbCtC83YcgrK+VTcO8HZ/rdR3eaaZM573FP9rNo1uXIA==} lit-element@4.1.0: resolution: {integrity: sha512-gSejRUQJuMQjV2Z59KAS/D4iElUhwKpIyJvZ9w+DIagIQjfJnhR20h2Q5ddpzXGS+fF0tMZ/xEYGMnKmaI/iww==} @@ -9207,11 +8919,8 @@ packages: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true - magic-string@0.30.12: - resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} - - magic-string@0.30.14: - resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==} + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} magic-string@0.30.5: resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} @@ -9281,8 +8990,8 @@ packages: mdast-util-mdx-expression@2.0.1: resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} - mdast-util-mdx-jsx@3.1.3: - resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==} + mdast-util-mdx-jsx@3.2.0: + resolution: {integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==} mdast-util-mdx@3.0.0: resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} @@ -9477,10 +9186,6 @@ packages: minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - minimatch@9.0.5: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} @@ -9515,9 +9220,6 @@ packages: engines: {node: '>=10'} hasBin: true - mlly@1.7.3: - resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==} - mri@1.2.0: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} engines: {node: '>=4'} @@ -9526,9 +9228,6 @@ packages: resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} engines: {node: '>=10'} - ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} @@ -9592,10 +9291,6 @@ packages: resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} - node-gyp-build@4.8.2: resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==} hasBin: true @@ -9603,8 +9298,8 @@ packages: node-html-parser@6.1.13: resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==} - node-mocks-http@1.16.1: - resolution: {integrity: sha512-Q2m5bmIE1KFeeKI6OsSn+c4XDara5NWnUJgzqnIkhiCNukYX+fqu0ADSeKOlpWtbCwgRnJ69F+7RUiQltzTKXA==} + node-mocks-http@1.16.2: + resolution: {integrity: sha512-2Sh6YItRp1oqewZNlck3LaFp5vbyW2u51HX2p1VLxQ9U/bG90XV8JY9O7Nk+HDd6OOn/oV3nA5Tx5k4Rki0qlg==} engines: {node: '>=14'} peerDependencies: '@types/express': ^4.17.21 || ^5.0.0 @@ -9626,19 +9321,6 @@ packages: resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} engines: {node: '>=0.10.0'} - npm-bundled@2.0.1: - resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-normalize-package-bin@2.0.0: - resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-packlist@5.1.3: - resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - npm-run-path@5.3.0: resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -9672,9 +9354,6 @@ packages: resolution: {integrity: sha512-y1HRYy8s/RlcBvDUwKXSmkODMdx4KSuIvloCnQYJ2LdBBC1asY4HtfhXwe3UWknLakATZDnbzht2Ijw3M1EqFg==} engines: {node: '>=9.4.0 || ^8.9.4'} - once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - onetime@5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} @@ -9683,15 +9362,15 @@ packages: resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} engines: {node: '>=12'} - oniguruma-to-es@0.7.0: - resolution: {integrity: sha512-HRaRh09cE0gRS3+wi2zxekB+I5L8C/gN60S+vb11eADHUaB/q4u8wGGOX3GvwvitG8ixaeycZfeoyruKQzUgNg==} + oniguruma-to-es@1.0.0: + resolution: {integrity: sha512-kihvp0O4lFwf5tZMkfanwQLIZ9ORe9OeOFgZonH0BQeThgwfJiaZFeOfvvJVnJIM9TiVmx0RDD35hUJDR0++rQ==} only-allow@1.2.1: resolution: {integrity: sha512-M7CJbmv7UCopc0neRKdzfoGWaVZC+xC1925GitKH9EAqYFzX9//25Q7oX4+jw0tiCCj+t5l6VZh8UPH23NZkMA==} hasBin: true - open-props@1.7.7: - resolution: {integrity: sha512-yn4B4D2dG7HGiZQSSdS03+jnsKlVIfdcWk6XyvSeTHcu2oqRbIEnJ9BVT7Qfq5N9p6z7tEIHTuRZoxckAemfqA==} + open-props@1.7.10: + resolution: {integrity: sha512-zZPJlr39YbHPou7mQ9GUKz1jiYjWzyZf/0pkPZq4MrtwgZ6FSCnf7hLkvFRGq+RZZ327vGSW3HPc7QMH4FUAZg==} open@10.1.0: resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==} @@ -9724,8 +9403,8 @@ packages: resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - p-limit@6.1.0: - resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==} + p-limit@6.2.0: + resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} engines: {node: '>=18'} p-locate@4.1.0: @@ -9759,8 +9438,8 @@ packages: package-json-from-dist@1.0.0: resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} - package-manager-detector@0.2.0: - resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==} + package-manager-detector@0.2.8: + resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==} pako@1.0.11: resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} @@ -9838,6 +9517,9 @@ packages: pathe@1.1.2: resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + pathe@2.0.1: + resolution: {integrity: sha512-6jpjMpOth5S9ITVu5clZ7NOgHNsv5vRQdheL9ztp2vZmM6fRbLvyua1tiBIL4lk8SAe3ARzeXEly6siXCjDHDw==} + pathval@2.0.0: resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} engines: {node: '>= 14.16'} @@ -9845,9 +9527,6 @@ packages: perfect-debounce@1.0.0: resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} - picocolors@1.1.0: - resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} - picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} @@ -9875,16 +9554,13 @@ packages: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} - pkg-types@1.2.1: - resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==} - - playwright-core@1.49.0: - resolution: {integrity: sha512-R+3KKTQF3npy5GTiKH/T+kdhoJfJojjHESR1YEWhYuEKRVfVaxH3+4+GvXE5xyCngCxhxnykk0Vlah9v8fs3jA==} + playwright-core@1.49.1: + resolution: {integrity: sha512-BzmpVcs4kE2CH15rWfzpjzVGhWERJfmnXmniSyKeRZUs9Ws65m+RGIi7mjJK/euCegfn3i7jvqWeWyHe9y3Vgg==} engines: {node: '>=18'} hasBin: true - playwright@1.49.0: - resolution: {integrity: sha512-eKpmys0UFDnfNb3vfsf8Vx2LEOtflgRebl0Im2eQQnYMA4Aqd+Zw8bEOB+7ZKvN76901mRnqdsiOGKxzVTbi7A==} + playwright@1.49.1: + resolution: {integrity: sha512-VYL8zLoNTBxVOrJBbDuRgDWa3i+mfQgDTrL8Ah9QXZ7ax4Dsj0MSq5bYgytRnDVVe+njoKnfsYkH3HzqVj5UZA==} engines: {node: '>=18'} hasBin: true @@ -9903,8 +9579,8 @@ packages: peerDependencies: postcss: ^8.4.6 - postcss-color-functional-notation@7.0.6: - resolution: {integrity: sha512-wLXvm8RmLs14Z2nVpB4CWlnvaWPRcOZFltJSlcbYwSJ1EDZKsKDhPKIMecCnuU054KSmlmubkqczmm6qBPCBhA==} + postcss-color-functional-notation@7.0.7: + resolution: {integrity: sha512-EZvAHsvyASX63vXnyXOIynkxhaHRSsdb7z6yiXKIovGXAolW4cMZ3qoh7k3VdTsLBS6VGdksGfIo3r6+waLoOw==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -9992,8 +9668,8 @@ packages: peerDependencies: postcss: ^8.4.21 - postcss-lab-function@7.0.6: - resolution: {integrity: sha512-HPwvsoK7C949vBZ+eMyvH2cQeMr3UREoHvbtra76/UhDuiViZH6pir+z71UaJQohd7VDSVUdR6TkWYKExEc9aQ==} + postcss-lab-function@7.0.7: + resolution: {integrity: sha512-+ONj2bpOQfsCKZE2T9VGMyVVdGcGUpr7u3SVfvkJlvhTRmDCfY25k4Jc8fubB9DclAPR4+w8uVtDZmdRgdAHig==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -10016,12 +9692,6 @@ packages: peerDependencies: postcss: ^8.4 - postcss-nested@6.0.1: - resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.2.14 - postcss-nested@6.2.0: resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} engines: {node: '>=12.0'} @@ -10057,8 +9727,8 @@ packages: peerDependencies: postcss: ^8.4 - postcss-preset-env@10.1.1: - resolution: {integrity: sha512-wqqsnBFD6VIwcHHRbhjTOcOi4qRVlB26RwSr0ordPj7OubRRxdWebv/aLjKLRR8zkZrbxZyuus03nOIgC5elMQ==} + postcss-preset-env@10.1.3: + resolution: {integrity: sha512-9qzVhcMFU/MnwYHyYpJz4JhGku/4+xEiPTmhn0hj3IxnUYlEF9vbh7OC1KoLAnenS6Fgg43TKNp9xcuMeAi4Zw==} engines: {node: '>=18'} peerDependencies: postcss: ^8.4 @@ -10095,16 +9765,13 @@ packages: resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} engines: {node: ^10 || ^12 || >=14} - preact-render-to-string@6.5.11: - resolution: {integrity: sha512-ubnauqoGczeGISiOh6RjX0/cdaF8v/oDXIjO85XALCQjwQP+SB4RDXXtvZ6yTYSjG+PC1QRP2AhPgCEsM2EvUw==} + preact-render-to-string@6.5.13: + resolution: {integrity: sha512-iGPd+hKPMFKsfpR2vL4kJ6ZPcFIoWZEcBf0Dpm3zOpdVvj77aY8RlLiQji5OMrngEyaxGogeakTb54uS2FvA6w==} peerDependencies: preact: '>=10' - preact@10.24.3: - resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==} - - preact@10.25.1: - resolution: {integrity: sha512-frxeZV2vhQSohQwJ7FvlqC40ze89+8friponWUFeVEkaCfhC6Eu4V0iND5C9CXz8JLndV07QRDeXzH1+Anz5Og==} + preact@10.25.4: + resolution: {integrity: sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA==} preferred-pm@4.0.0: resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==} @@ -10169,9 +9836,9 @@ packages: psl@1.9.0: resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} - publint@0.2.12: - resolution: {integrity: sha512-YNeUtCVeM4j9nDiTT2OPczmlyzOkIXNtdDZnSuajAxS/nZ6j3t7Vs9SUB4euQNddiltIwu7Tdd3s+hr08fAsMw==} - engines: {node: '>=16'} + publint@0.3.2: + resolution: {integrity: sha512-fPs7QUbUvwixxPYUUTn0Kqp0rbH5rbiAOZwQOXMkIj+4Nopby1AngodSQmzTkJWTJ5R4uVV8oYmgVIjj+tgv1w==} + engines: {node: '>=18'} hasBin: true punycode@2.3.1: @@ -10196,10 +9863,10 @@ packages: peerDependencies: react: ^18.3.1 - react-dom@19.0.0-rc-fb9a90fa48-20240614: - resolution: {integrity: sha512-PoEsPe32F7KPLYOBvZfjylEI1B67N44PwY3lyvpmBkhlluLnLz0jH8q2Wg9YidAi6z0k3iUnNRm5x10wurzt9Q==} + react-dom@19.0.0: + resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} peerDependencies: - react: 19.0.0-rc-fb9a90fa48-20240614 + react: ^19.0.0 react-refresh@0.14.2: resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} @@ -10209,8 +9876,8 @@ packages: resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} - react@19.0.0-rc-fb9a90fa48-20240614: - resolution: {integrity: sha512-nvE3Gy+IOIfH/DXhkyxFVQSrITarFcQz4+shzC/McxQXEUSonpw2oDy/Wi9hdDtV3hlP12VYuDL95iiBREedNQ==} + react@19.0.0: + resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} engines: {node: '>=0.10.0'} read-cache@1.0.0: @@ -10253,14 +9920,14 @@ packages: regenerator-runtime@0.14.1: resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - regex-recursion@4.3.0: - resolution: {integrity: sha512-5LcLnizwjcQ2ALfOj95MjcatxyqF5RPySx9yT+PaXu3Gox2vyAtLDjHB8NTJLtMGkvyau6nI3CfpwFCjPUIs/A==} + regex-recursion@5.1.1: + resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==} regex-utilities@2.3.0: resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} - regex@5.0.2: - resolution: {integrity: sha512-/pczGbKIQgfTMRV0XjABvc5RzLqQmwqxLHdQao2RTXPk+pmTXB2P0IaUHYdYyk412YLwUIkaeMd5T+RzVgTqnQ==} + regex@5.1.1: + resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==} regexp-ast-analysis@0.7.1: resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} @@ -10391,8 +10058,8 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rollup@4.28.0: - resolution: {integrity: sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==} + rollup@4.30.1: + resolution: {integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -10422,13 +10089,8 @@ packages: sass-formatter@0.7.9: resolution: {integrity: sha512-CWZ8XiSim+fJVG0cFLStwDvft1VI7uvXdCNJYXhDvowiv+DsbD1nXLiQ4zrE5UBvj5DWZJ93cwN0NX5PMsr1Pw==} - sass@1.80.6: - resolution: {integrity: sha512-ccZgdHNiBF1NHBsWvacvT5rju3y1d/Eu+8Ex6c21nHp2lZGLBEtuwc415QfiI1PJa1TpCo3iXwwSRjRpn2Ckjg==} - engines: {node: '>=14.0.0'} - hasBin: true - - sass@1.82.0: - resolution: {integrity: sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q==} + sass@1.83.1: + resolution: {integrity: sha512-EVJbDaEs4Rr3F0glJzFSOvtg2/oy2V/YrGFPqPY24UqcLDWcI9ZY5sN+qyO3c/QCZwzgfirvhXvINiJCE/OLcA==} engines: {node: '>=14.0.0'} hasBin: true @@ -10442,8 +10104,8 @@ packages: scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - scheduler@0.25.0-rc-fb9a90fa48-20240614: - resolution: {integrity: sha512-HHqQ/SqbeiDfXXVKgNxTpbQTD4n7IUb4hZATvHjp03jr3TF7igehCyHdOjeYTrzIseLO93cTTfSb5f4qWcirMQ==} + scheduler@0.25.0: + resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} scslre@0.3.0: resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} @@ -10458,10 +10120,6 @@ packages: engines: {node: '>=10'} hasBin: true - send@0.19.0: - resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} - engines: {node: '>= 0.8.0'} - send@1.1.0: resolution: {integrity: sha512-v67WcEouB5GxbTWL/4NeToqcZiAWEq90N888fczVArY8A79J0L4FD7vj5hm3eUMua5EpoQ59wa/oovY6TLvRUA==} engines: {node: '>= 18'} @@ -10502,8 +10160,8 @@ packages: shiki@0.10.1: resolution: {integrity: sha512-VsY7QJVzU51j5o1+DguUd+6vmCmZ5v/6gYu4vyYAhzjuNQU6P/vmSy4uQaOhvje031qQMiW0d2BwgMH52vqMng==} - shiki@1.24.0: - resolution: {integrity: sha512-qIneep7QRwxRd5oiHb8jaRzH15V/S8F3saCXOdjwRLgozZJr5x2yeBhQtqkO3FSzQDwYEFAYuifg4oHjpDghrg==} + shiki@1.26.2: + resolution: {integrity: sha512-iP7u2NA9A6JwRRCkIUREEX2cMhlYV5EBmbbSlfSRvPThwca8HBRbVkWuNWW+kw9+i6BSUZqqG6YeUs5dC2SjZw==} siginfo@2.0.0: resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} @@ -10553,8 +10211,8 @@ packages: resolution: {integrity: sha512-TzobUYoEft/xBtb2voRPryAUIvYguG0V7Tt3de79I1WfXgCwelqVsGuZSnu3GFGRZhXR90AeEYIM+icuB/S06Q==} hasBin: true - solid-js@1.9.3: - resolution: {integrity: sha512-5ba3taPoZGt9GY3YlsCB24kCg0Lv/rie/HTD4kG6h4daZZz7+yK02xn8Vx8dLYBc9i6Ps5JwAbEiqjmKaLB3Ag==} + solid-js@1.9.4: + resolution: {integrity: sha512-ipQl8FJ31bFUoBNScDQTG3BjN6+9Rg+Q+f10bUbnO6EOTTf5NGerJeHc7wyu5I4RMHEl/WwZwUmy/PTRgxxZ8g==} solid-refresh@0.6.3: resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==} @@ -10597,9 +10255,6 @@ packages: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} - std-env@3.7.0: - resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} - std-env@3.8.0: resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} @@ -10685,18 +10340,14 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - svelte2tsx@0.7.22: - resolution: {integrity: sha512-hf55ujq17ufVpDQlJzaQfRr9EjlLIwGmFlpKq4uYrQAQFw/99q1OcVYyBT6568iJySgBUY9PdccURrORmfetmQ==} + svelte2tsx@0.7.34: + resolution: {integrity: sha512-WTMhpNhFf8/h3SMtR5dkdSy2qfveomkhYei/QW9gSPccb0/b82tjHvLop6vT303ZkGswU/da1s6XvrLgthQPCw==} peerDependencies: svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 typescript: ^4.9.4 || ^5.0.0 - svelte@5.1.16: - resolution: {integrity: sha512-QcY+om9r8+uTcSfeFuv8++ExdfwVCKeT+Y7GPSZ6rQPczvy62BMtvMoi0rScabgv+upGE5jxKjd7M4u23+AjGA==} - engines: {node: '>=18'} - - svelte@5.6.2: - resolution: {integrity: sha512-fyq4gCUW9OoR9X8I1BzmMVIOxzTlyCLI5gArRRTUuJj+jIUSHtud7c+MguQNGLv7Z/rGWxJyG9ZRFd/cFp/klA==} + svelte@5.17.3: + resolution: {integrity: sha512-eLgtpR2JiTgeuNQRCDcLx35Z7Lu9Qe09GPOz+gvtR9nmIZu5xgFd6oFiLGQlxLD0/u7xVyF5AUkjDVyFHe6Bvw==} engines: {node: '>=18'} svg-tags@1.0.0: @@ -10710,17 +10361,8 @@ packages: symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - system-architecture@0.1.0: - resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==} - engines: {node: '>=18'} - - tailwindcss@3.4.14: - resolution: {integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==} - engines: {node: '>=14.0.0'} - hasBin: true - - tailwindcss@3.4.16: - resolution: {integrity: sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==} + tailwindcss@3.4.17: + resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==} engines: {node: '>=14.0.0'} hasBin: true @@ -10750,11 +10392,11 @@ packages: tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyexec@0.3.1: - resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} - tinypool@1.0.1: - resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==} + tinypool@1.0.2: + resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} engines: {node: ^18.0.0 || >=20.0.0} tinyrainbow@1.2.0: @@ -10801,11 +10443,11 @@ packages: trough@2.2.0: resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} - ts-api-utils@1.3.0: - resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} - engines: {node: '>=16'} + ts-api-utils@2.0.0: + resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==} + engines: {node: '>=18.12'} peerDependencies: - typescript: '>=4.2.0' + typescript: '>=4.8.4' ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} @@ -10888,23 +10530,15 @@ packages: typescript-auto-import-cache@0.3.3: resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==} - typescript-eslint@8.17.0: - resolution: {integrity: sha512-409VXvFd/f1br1DCbuKNFqQpXICoTB+V51afcwG1pn1a3Cp92MqAUges3YjwEdQ0cMUoCIodjVDAYzyD8h3SYA==} + typescript-eslint@8.19.1: + resolution: {integrity: sha512-LKPUQpdEMVOeKluHi8md7rwLcoXHhwvWp3x+sJkMuq3gGm9yaYJtPo8sRZSblMFJ5pcOGCAak/scKf1mvZDlQw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <5.8.0' - typescript@5.6.3: - resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} - engines: {node: '>=14.17'} - hasBin: true - - typescript@5.7.2: - resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} + typescript@5.7.3: + resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} engines: {node: '>=14.17'} hasBin: true @@ -10927,6 +10561,10 @@ packages: resolution: {integrity: sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw==} engines: {node: '>=18.17'} + undici@7.2.1: + resolution: {integrity: sha512-U2k0XHLJfaciARRxDcqTk2AZQsGXerHzdvfCZcy1hNhSf5KCAF4jIQQxL+apQviOekhRFPqED6Of5/+LcUSLzQ==} + engines: {node: '>=20.18.1'} + unenv@1.10.0: resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==} @@ -11004,22 +10642,27 @@ packages: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} - unstorage@1.13.1: - resolution: {integrity: sha512-ELexQHUrG05QVIM/iUeQNdl9FXDZhqLJ4yP59fnmn2jGUh0TEulwOgov1ubOb3Gt2ZGK/VMchJwPDNVEGWQpRg==} + unstorage@1.14.4: + resolution: {integrity: sha512-1SYeamwuYeQJtJ/USE1x4l17LkmQBzg7deBJ+U9qOBoHo15d1cDxG4jM31zKRgF7pG0kirZy4wVMX6WL6Zoscg==} peerDependencies: - '@azure/app-configuration': ^1.7.0 - '@azure/cosmos': ^4.1.1 - '@azure/data-tables': ^13.2.2 + '@azure/app-configuration': ^1.8.0 + '@azure/cosmos': ^4.2.0 + '@azure/data-tables': ^13.3.0 '@azure/identity': ^4.5.0 '@azure/keyvault-secrets': ^4.9.0 - '@azure/storage-blob': ^12.25.0 - '@capacitor/preferences': ^6.0.2 + '@azure/storage-blob': ^12.26.0 + '@capacitor/preferences': ^6.0.3 + '@deno/kv': '>=0.8.4' '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 '@planetscale/database': ^1.19.0 '@upstash/redis': ^1.34.3 + '@vercel/blob': '>=0.27.0' '@vercel/kv': ^1.0.1 + aws4fetch: ^1.0.20 + db0: '>=0.2.1' idb-keyval: ^6.2.1 - ioredis: ^5.4.1 + ioredis: ^5.4.2 + uploadthing: ^7.4.1 peerDependenciesMeta: '@azure/app-configuration': optional: true @@ -11035,22 +10678,28 @@ packages: optional: true '@capacitor/preferences': optional: true + '@deno/kv': + optional: true '@netlify/blobs': optional: true '@planetscale/database': optional: true '@upstash/redis': optional: true + '@vercel/blob': + optional: true '@vercel/kv': optional: true + aws4fetch: + optional: true + db0: + optional: true idb-keyval: optional: true ioredis: optional: true - - untun@0.1.3: - resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==} - hasBin: true + uploadthing: + optional: true update-browserslist-db@1.1.0: resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} @@ -11058,9 +10707,6 @@ packages: peerDependencies: browserslist: '>= 4.21.0' - uqr@0.1.2: - resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} - uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -11094,22 +10740,17 @@ packages: peerDependencies: vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 - vite-node@2.1.6: - resolution: {integrity: sha512-DBfJY0n9JUwnyLxPSSUmEePT21j8JZp/sR9n+/gBwQU6DcQOioPdb8/pibWfXForbirSagZCilseYIwaL3f95A==} + vite-node@3.0.0-beta.4: + resolution: {integrity: sha512-dzWen17ftEjmJWCsY7iMZ3lz4npzDsMYKEqkCnIiyABHiQCp9usrFnyzqNJJDIVZYZsG+UXgizOwjrV2cl2QYw==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true - vite-node@2.1.8: - resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - - vite-plugin-inspect@0.8.8: - resolution: {integrity: sha512-aZlBuXsWUPJFmMK92GIv6lH7LrwG2POu4KJ+aEdcqnu92OAf+rhBnfMDQvxIJPEB7hE2t5EyY/PMgf5aDLT8EA==} + vite-plugin-inspect@0.8.9: + resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==} engines: {node: '>=14'} peerDependencies: '@nuxt/kit': '*' - vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 + vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1 peerDependenciesMeta: '@nuxt/kit': optional: true @@ -11124,8 +10765,8 @@ packages: '@testing-library/jest-dom': optional: true - vite-plugin-vue-devtools@7.6.7: - resolution: {integrity: sha512-H1ZyjtpWjP5mHA5R15sQeYgAARuh2Myg3TDFXWZK6QOQRy8s3XjTIt319DogVjU/x3rC3L/jJQjIasRU04mWXA==} + vite-plugin-vue-devtools@7.7.0: + resolution: {integrity: sha512-1dWiREwIl4JELwXGHXih80hIgjcViMcZGr3j0edo6NQ9kNzAOxMIUgFqc/TO1ary4ZroJUxoB0YDI6jnDf13iQ==} engines: {node: '>=v14.21.3'} peerDependencies: vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 @@ -11140,39 +10781,8 @@ packages: peerDependencies: vue: '>=3.2.13' - vite@5.4.11: - resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@types/node': ^18.0.0 || >=20.0.0 - less: '*' - lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - - vite@6.0.1: - resolution: {integrity: sha512-Ldn6gorLGr4mCdFnmeAOLweJxZ34HjKnDm4HGo6P66IEqTxQb36VEdFJQENKxWjupNfoIjvRUnswjn1hpYEpjQ==} + vite@6.0.7: + resolution: {integrity: sha512-RDt8r/7qx9940f8FcOIAH9PTViRrghKaK2K1jY3RaAURrEUbm9Du1mJ72G+jlhtG3WwodnfzY8ORQZbBavZEAQ==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: @@ -11211,48 +10821,23 @@ packages: yaml: optional: true - vitefu@1.0.4: - resolution: {integrity: sha512-y6zEE3PQf6uu/Mt6DTJ9ih+kyJLr4XcSgHR2zUkM8SWDhuixEJxfJ6CZGMHh1Ec3vPLoEA0IHU5oWzVqw8ulow==} + vitefu@1.0.5: + resolution: {integrity: sha512-h4Vflt9gxODPFNGPwp4zAMZRpZR7eslzwH2c5hn5kNZ5rhnKyRJ50U+yGCdc2IRaBs8O4haIgLNGrV5CrpMsCA==} peerDependencies: vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 peerDependenciesMeta: vite: optional: true - vitest@2.1.6: - resolution: {integrity: sha512-isUCkvPL30J4c5O5hgONeFRsDmlw6kzFEdLQHLezmDdKQHy8Ke/B/dgdTMEgU0vm+iZ0TjW8GuK83DiahBoKWQ==} + vitest@3.0.0-beta.4: + resolution: {integrity: sha512-lGRvQzzv4AOifGc7lhQ+s+1Bm0CtzLOZBwRIQiU6u9a968YTjxK5IGQLGJieI5OFh6V/Z+apsvCrm7CB29DkPw==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - '@vitest/browser': 2.1.6 - '@vitest/ui': 2.1.6 - happy-dom: '*' - jsdom: '*' - peerDependenciesMeta: - '@edge-runtime/vm': - optional: true - '@types/node': - optional: true - '@vitest/browser': - optional: true - '@vitest/ui': - optional: true - happy-dom: - optional: true - jsdom: - optional: true - - vitest@2.1.8: - resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@edge-runtime/vm': '*' - '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 2.1.8 - '@vitest/ui': 2.1.8 + '@vitest/browser': 3.0.0-beta.4 + '@vitest/ui': 3.0.0-beta.4 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -11384,14 +10969,6 @@ packages: vscode-uri@3.0.8: resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} - vue@3.5.12: - resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - vue@3.5.13: resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==} peerDependencies: @@ -11477,9 +11054,6 @@ packages: resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} engines: {node: '>=18'} - wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - ws@8.16.0: resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} engines: {node: '>=10.0.0'} @@ -11553,8 +11127,8 @@ packages: resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} engines: {node: '>=12.20'} - yocto-spinner@0.1.0: - resolution: {integrity: sha512-sBra0N4uhNn5UibnOz/HJxB1a0tzZ5zXbqnDe+tfRR3BGy+BmOrzrnQCZRJI7C++JiSZaPygPeNon4QCUmMQ4g==} + yocto-spinner@0.1.2: + resolution: {integrity: sha512-VfmLIh/ZSZOJnVRQZc/dvpPP90lWL4G0bmxQMP0+U/2vKBA8GSpcBuWv17y7F+CZItRuO97HN1wdbb4p10uhOg==} engines: {node: '>=18.19'} yoctocolors@2.1.1: @@ -11564,10 +11138,10 @@ packages: zimmerframe@1.1.2: resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==} - zod-to-json-schema@3.23.5: - resolution: {integrity: sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==} + zod-to-json-schema@3.24.1: + resolution: {integrity: sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==} peerDependencies: - zod: ^3.23.3 + zod: ^3.24.1 zod-to-ts@1.2.0: resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} @@ -11575,8 +11149,8 @@ packages: typescript: ^4.9.4 || ^5.0.2 zod: ^3 - zod@3.23.8: - resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + zod@3.24.1: + resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -11639,12 +11213,12 @@ snapshots: astro: link:packages/astro lite-youtube-embed: 0.3.3 - '@astrojs/check@0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.2)': + '@astrojs/check@0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.3)': dependencies: - '@astrojs/language-server': 2.15.0(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.2) + '@astrojs/language-server': 2.15.0(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.3) chokidar: 4.0.1 kleur: 4.1.5 - typescript: 5.7.2 + typescript: 5.7.3 yargs: 17.7.2 transitivePeerDependencies: - prettier @@ -11658,16 +11232,16 @@ snapshots: '@astrojs/compiler@2.10.3': {} - '@astrojs/language-server@2.15.0(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.2)': + '@astrojs/language-server@2.15.0(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.7.3)': dependencies: '@astrojs/compiler': 2.10.3 '@astrojs/yaml2ts': 0.2.1 '@jridgewell/sourcemap-codec': 1.5.0 - '@volar/kit': 2.4.6(typescript@5.7.2) + '@volar/kit': 2.4.6(typescript@5.7.3) '@volar/language-core': 2.4.6 '@volar/language-server': 2.4.6 '@volar/language-service': 2.4.6 - fast-glob: 3.3.2 + fast-glob: 3.3.3 muggle-string: 0.4.1 volar-service-css: 0.0.61(@volar/language-service@2.4.6) volar-service-emmet: 0.0.61(@volar/language-service@2.4.6) @@ -11684,14 +11258,6 @@ snapshots: transitivePeerDependencies: - typescript - '@astrojs/node@8.3.4(astro@packages+astro)': - dependencies: - astro: link:packages/astro - send: 0.19.0 - server-destroy: 1.0.1 - transitivePeerDependencies: - - supports-color - '@astrojs/node@9.0.0(astro@packages+astro)': dependencies: astro: link:packages/astro @@ -11708,7 +11274,7 @@ snapshots: dependencies: '@babel/helper-validator-identifier': 7.25.9 js-tokens: 4.0.0 - picocolors: 1.1.0 + picocolors: 1.1.1 '@babel/compat-data@7.26.0': {} @@ -11725,7 +11291,7 @@ snapshots: '@babel/traverse': 7.25.9 '@babel/types': 7.26.0 convert-source-map: 2.0.0 - debug: 4.3.7 + debug: 4.4.0 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -11752,19 +11318,6 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-member-expression-to-functions': 7.24.8 - '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.0) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/traverse': 7.25.9 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 @@ -11778,13 +11331,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-member-expression-to-functions@7.24.8': - dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 - transitivePeerDependencies: - - supports-color - '@babel/helper-member-expression-to-functions@7.25.9': dependencies: '@babel/traverse': 7.25.9 @@ -11812,25 +11358,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-optimise-call-expression@7.24.7': - dependencies: - '@babel/types': 7.26.0 - '@babel/helper-optimise-call-expression@7.25.9': dependencies: '@babel/types': 7.26.0 '@babel/helper-plugin-utils@7.25.9': {} - '@babel/helper-replace-supers@7.25.0(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-member-expression-to-functions': 7.24.8 - '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/traverse': 7.25.9 - transitivePeerDependencies: - - supports-color - '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 @@ -11840,13 +11373,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': - dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 - transitivePeerDependencies: - - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.25.9': dependencies: '@babel/traverse': 7.25.9 @@ -11872,7 +11398,7 @@ snapshots: '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.0) + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.26.0) transitivePeerDependencies: @@ -11898,11 +11424,6 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 @@ -11936,17 +11457,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.26.0) - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 @@ -11975,7 +11485,7 @@ snapshots: '@babel/parser': 7.26.1 '@babel/template': 7.25.9 '@babel/types': 7.26.0 - debug: 4.3.7 + debug: 4.4.0 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -12020,15 +11530,13 @@ snapshots: '@biomejs/cli-win32-x64@1.9.3': optional: true - '@bluwy/giget-core@0.1.1': + '@bluwy/giget-core@0.1.2': dependencies: tar: 6.2.1 - '@builder.io/partytown@0.10.2': {} - - '@changesets/apply-release-plan@7.0.6': + '@changesets/apply-release-plan@7.0.7': dependencies: - '@changesets/config': 3.0.4 + '@changesets/config': 3.0.5 '@changesets/get-version-range-type': 0.4.0 '@changesets/git': 3.0.2 '@changesets/should-skip-package': 0.1.1 @@ -12063,15 +11571,15 @@ snapshots: transitivePeerDependencies: - encoding - '@changesets/cli@2.27.10': + '@changesets/cli@2.27.11': dependencies: - '@changesets/apply-release-plan': 7.0.6 + '@changesets/apply-release-plan': 7.0.7 '@changesets/assemble-release-plan': 6.0.5 '@changesets/changelog-git': 0.2.0 - '@changesets/config': 3.0.4 + '@changesets/config': 3.0.5 '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.2 - '@changesets/get-release-plan': 4.0.5 + '@changesets/get-release-plan': 4.0.6 '@changesets/git': 3.0.2 '@changesets/logger': 0.1.1 '@changesets/pre': 2.0.1 @@ -12087,14 +11595,14 @@ snapshots: fs-extra: 7.0.1 mri: 1.2.0 p-limit: 2.3.0 - package-manager-detector: 0.2.0 + package-manager-detector: 0.2.8 picocolors: 1.1.1 resolve-from: 5.0.0 semver: 7.6.3 spawndamnit: 3.0.1 term-size: 2.2.1 - '@changesets/config@3.0.4': + '@changesets/config@3.0.5': dependencies: '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.2 @@ -12122,10 +11630,10 @@ snapshots: transitivePeerDependencies: - encoding - '@changesets/get-release-plan@4.0.5': + '@changesets/get-release-plan@4.0.6': dependencies: '@changesets/assemble-release-plan': 6.0.5 - '@changesets/config': 3.0.4 + '@changesets/config': 3.0.5 '@changesets/pre': 2.0.1 '@changesets/read': 0.6.2 '@changesets/types': 6.0.0 @@ -12185,16 +11693,16 @@ snapshots: '@clack/core@0.3.4': dependencies: - picocolors: 1.1.0 + picocolors: 1.1.1 sisteransi: 1.0.5 '@clack/prompts@0.7.0': dependencies: '@clack/core': 0.3.4 - picocolors: 1.1.0 + picocolors: 1.1.1 sisteransi: 1.0.5 - '@codspeed/core@3.1.1': + '@codspeed/core@4.0.0': dependencies: axios: 1.7.7 find-up: 6.3.0 @@ -12203,11 +11711,11 @@ snapshots: transitivePeerDependencies: - debug - '@codspeed/vitest-plugin@3.1.1(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))(vitest@2.1.8(@types/node@18.19.50)(jsdom@23.2.0)(sass@1.82.0))': + '@codspeed/vitest-plugin@4.0.0(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))(vitest@3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(jsdom@23.2.0)(sass@1.83.1)(yaml@2.5.1))': dependencies: - '@codspeed/core': 3.1.1 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) - vitest: 2.1.8(@types/node@18.19.50)(jsdom@23.2.0)(sass@1.82.0) + '@codspeed/core': 4.0.0 + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) + vitest: 3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(jsdom@23.2.0)(sass@1.83.1)(yaml@2.5.1) transitivePeerDependencies: - debug @@ -12221,15 +11729,15 @@ snapshots: '@csstools/color-helpers@5.0.1': {} - '@csstools/css-calc@2.1.0(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': + '@csstools/css-calc@2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': dependencies: '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 - '@csstools/css-color-parser@3.0.6(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': + '@csstools/css-color-parser@3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': dependencies: '@csstools/color-helpers': 5.0.1 - '@csstools/css-calc': 2.1.0(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 @@ -12250,18 +11758,18 @@ snapshots: postcss: 8.4.49 postcss-selector-parser: 7.0.0 - '@csstools/postcss-color-function@4.0.6(postcss@8.4.49)': + '@csstools/postcss-color-function@4.0.7(postcss@8.4.49)': dependencies: - '@csstools/css-color-parser': 3.0.6(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.49) '@csstools/utilities': 2.0.0(postcss@8.4.49) postcss: 8.4.49 - '@csstools/postcss-color-mix-function@3.0.6(postcss@8.4.49)': + '@csstools/postcss-color-mix-function@3.0.7(postcss@8.4.49)': dependencies: - '@csstools/css-color-parser': 3.0.6(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.49) @@ -12276,9 +11784,9 @@ snapshots: '@csstools/utilities': 2.0.0(postcss@8.4.49) postcss: 8.4.49 - '@csstools/postcss-exponential-functions@2.0.5(postcss@8.4.49)': + '@csstools/postcss-exponential-functions@2.0.6(postcss@8.4.49)': dependencies: - '@csstools/css-calc': 2.1.0(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 postcss: 8.4.49 @@ -12289,25 +11797,25 @@ snapshots: postcss: 8.4.49 postcss-value-parser: 4.2.0 - '@csstools/postcss-gamut-mapping@2.0.6(postcss@8.4.49)': + '@csstools/postcss-gamut-mapping@2.0.7(postcss@8.4.49)': dependencies: - '@csstools/css-color-parser': 3.0.6(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 postcss: 8.4.49 - '@csstools/postcss-gradients-interpolation-method@5.0.6(postcss@8.4.49)': + '@csstools/postcss-gradients-interpolation-method@5.0.7(postcss@8.4.49)': dependencies: - '@csstools/css-color-parser': 3.0.6(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.49) '@csstools/utilities': 2.0.0(postcss@8.4.49) postcss: 8.4.49 - '@csstools/postcss-hwb-function@4.0.6(postcss@8.4.49)': + '@csstools/postcss-hwb-function@4.0.7(postcss@8.4.49)': dependencies: - '@csstools/css-color-parser': 3.0.6(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.49) @@ -12362,9 +11870,9 @@ snapshots: '@csstools/utilities': 2.0.0(postcss@8.4.49) postcss: 8.4.49 - '@csstools/postcss-media-minmax@2.0.5(postcss@8.4.49)': + '@csstools/postcss-media-minmax@2.0.6(postcss@8.4.49)': dependencies: - '@csstools/css-calc': 2.1.0(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 '@csstools/media-query-list-parser': 4.0.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) @@ -12388,9 +11896,9 @@ snapshots: postcss: 8.4.49 postcss-value-parser: 4.2.0 - '@csstools/postcss-oklab-function@4.0.6(postcss@8.4.49)': + '@csstools/postcss-oklab-function@4.0.7(postcss@8.4.49)': dependencies: - '@csstools/css-color-parser': 3.0.6(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.49) @@ -12402,16 +11910,16 @@ snapshots: postcss: 8.4.49 postcss-value-parser: 4.2.0 - '@csstools/postcss-random-function@1.0.1(postcss@8.4.49)': + '@csstools/postcss-random-function@1.0.2(postcss@8.4.49)': dependencies: - '@csstools/css-calc': 2.1.0(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 postcss: 8.4.49 - '@csstools/postcss-relative-color-syntax@3.0.6(postcss@8.4.49)': + '@csstools/postcss-relative-color-syntax@3.0.7(postcss@8.4.49)': dependencies: - '@csstools/css-color-parser': 3.0.6(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.49) @@ -12423,16 +11931,16 @@ snapshots: postcss: 8.4.49 postcss-selector-parser: 7.0.0 - '@csstools/postcss-sign-functions@1.1.0(postcss@8.4.49)': + '@csstools/postcss-sign-functions@1.1.1(postcss@8.4.49)': dependencies: - '@csstools/css-calc': 2.1.0(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 postcss: 8.4.49 - '@csstools/postcss-stepped-value-functions@4.0.5(postcss@8.4.49)': + '@csstools/postcss-stepped-value-functions@4.0.6(postcss@8.4.49)': dependencies: - '@csstools/css-calc': 2.1.0(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 postcss: 8.4.49 @@ -12443,9 +11951,9 @@ snapshots: postcss: 8.4.49 postcss-value-parser: 4.2.0 - '@csstools/postcss-trigonometric-functions@4.0.5(postcss@8.4.49)': + '@csstools/postcss-trigonometric-functions@4.0.6(postcss@8.4.49)': dependencies: - '@csstools/css-calc': 2.1.0(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 postcss: 8.4.49 @@ -12494,150 +12002,84 @@ snapshots: tslib: 2.6.2 optional: true - '@esbuild/aix-ppc64@0.21.5': + '@esbuild/aix-ppc64@0.24.2': optional: true - '@esbuild/aix-ppc64@0.24.0': + '@esbuild/android-arm64@0.24.2': optional: true - '@esbuild/android-arm64@0.21.5': + '@esbuild/android-arm@0.24.2': optional: true - '@esbuild/android-arm64@0.24.0': + '@esbuild/android-x64@0.24.2': optional: true - '@esbuild/android-arm@0.21.5': + '@esbuild/darwin-arm64@0.24.2': optional: true - '@esbuild/android-arm@0.24.0': + '@esbuild/darwin-x64@0.24.2': optional: true - '@esbuild/android-x64@0.21.5': + '@esbuild/freebsd-arm64@0.24.2': optional: true - '@esbuild/android-x64@0.24.0': + '@esbuild/freebsd-x64@0.24.2': optional: true - '@esbuild/darwin-arm64@0.21.5': + '@esbuild/linux-arm64@0.24.2': optional: true - '@esbuild/darwin-arm64@0.24.0': + '@esbuild/linux-arm@0.24.2': optional: true - '@esbuild/darwin-x64@0.21.5': + '@esbuild/linux-ia32@0.24.2': optional: true - '@esbuild/darwin-x64@0.24.0': + '@esbuild/linux-loong64@0.24.2': optional: true - '@esbuild/freebsd-arm64@0.21.5': + '@esbuild/linux-mips64el@0.24.2': optional: true - '@esbuild/freebsd-arm64@0.24.0': + '@esbuild/linux-ppc64@0.24.2': optional: true - '@esbuild/freebsd-x64@0.21.5': + '@esbuild/linux-riscv64@0.24.2': optional: true - '@esbuild/freebsd-x64@0.24.0': + '@esbuild/linux-s390x@0.24.2': optional: true - '@esbuild/linux-arm64@0.21.5': + '@esbuild/linux-x64@0.24.2': optional: true - '@esbuild/linux-arm64@0.24.0': + '@esbuild/netbsd-arm64@0.24.2': optional: true - '@esbuild/linux-arm@0.21.5': + '@esbuild/netbsd-x64@0.24.2': optional: true - '@esbuild/linux-arm@0.24.0': + '@esbuild/openbsd-arm64@0.24.2': optional: true - '@esbuild/linux-ia32@0.21.5': + '@esbuild/openbsd-x64@0.24.2': optional: true - '@esbuild/linux-ia32@0.24.0': + '@esbuild/sunos-x64@0.24.2': optional: true - '@esbuild/linux-loong64@0.21.5': + '@esbuild/win32-arm64@0.24.2': optional: true - '@esbuild/linux-loong64@0.24.0': + '@esbuild/win32-ia32@0.24.2': optional: true - '@esbuild/linux-mips64el@0.21.5': + '@esbuild/win32-x64@0.24.2': optional: true - '@esbuild/linux-mips64el@0.24.0': - optional: true - - '@esbuild/linux-ppc64@0.21.5': - optional: true - - '@esbuild/linux-ppc64@0.24.0': - optional: true - - '@esbuild/linux-riscv64@0.21.5': - optional: true - - '@esbuild/linux-riscv64@0.24.0': - optional: true - - '@esbuild/linux-s390x@0.21.5': - optional: true - - '@esbuild/linux-s390x@0.24.0': - optional: true - - '@esbuild/linux-x64@0.21.5': - optional: true - - '@esbuild/linux-x64@0.24.0': - optional: true - - '@esbuild/netbsd-x64@0.21.5': - optional: true - - '@esbuild/netbsd-x64@0.24.0': - optional: true - - '@esbuild/openbsd-arm64@0.24.0': - optional: true - - '@esbuild/openbsd-x64@0.21.5': - optional: true - - '@esbuild/openbsd-x64@0.24.0': - optional: true - - '@esbuild/sunos-x64@0.21.5': - optional: true - - '@esbuild/sunos-x64@0.24.0': - optional: true - - '@esbuild/win32-arm64@0.21.5': - optional: true - - '@esbuild/win32-arm64@0.24.0': - optional: true - - '@esbuild/win32-ia32@0.21.5': - optional: true - - '@esbuild/win32-ia32@0.24.0': - optional: true - - '@esbuild/win32-x64@0.21.5': - optional: true - - '@esbuild/win32-x64@0.24.0': - optional: true - - '@eslint-community/eslint-utils@4.4.0(eslint@9.16.0(jiti@2.4.0))': + '@eslint-community/eslint-utils@4.4.0(eslint@9.18.0(jiti@1.21.6))': dependencies: - eslint: 9.16.0(jiti@2.4.0) + eslint: 9.18.0(jiti@1.21.6) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} @@ -12645,19 +12087,19 @@ snapshots: '@eslint/config-array@0.19.1': dependencies: '@eslint/object-schema': 2.1.5 - debug: 4.3.7 + debug: 4.4.0 minimatch: 3.1.2 transitivePeerDependencies: - supports-color - '@eslint/core@0.9.1': + '@eslint/core@0.10.0': dependencies: '@types/json-schema': 7.0.15 '@eslint/eslintrc@3.2.0': dependencies: ajv: 6.12.6 - debug: 4.3.7 + debug: 4.4.0 espree: 10.3.0 globals: 14.0.0 ignore: 5.3.2 @@ -12668,17 +12110,18 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.16.0': {} + '@eslint/js@9.18.0': {} '@eslint/object-schema@2.1.5': {} - '@eslint/plugin-kit@0.2.4': + '@eslint/plugin-kit@0.2.5': dependencies: + '@eslint/core': 0.10.0 levn: 0.4.1 - '@fontsource/monofett@5.1.0': {} + '@fontsource/monofett@5.1.1': {} - '@fontsource/montserrat@5.1.0': {} + '@fontsource/montserrat@5.1.1': {} '@humanfs/core@0.19.1': {} @@ -12874,11 +12317,11 @@ snapshots: globby: 11.1.0 read-yaml-file: 1.1.0 - '@markdoc/markdoc@0.4.0(@types/react@18.3.12)(react@18.3.1)': + '@markdoc/markdoc@0.4.0(@types/react@18.3.18)(react@19.0.0)': optionalDependencies: '@types/markdown-it': 12.2.3 - '@types/react': 18.3.12 - react: 18.3.1 + '@types/react': 18.3.18 + react: 19.0.0 '@mdx-js/mdx@3.1.0(acorn@8.14.0)': dependencies: @@ -12910,13 +12353,15 @@ snapshots: - acorn - supports-color - '@nanostores/preact@0.5.2(nanostores@0.11.3)(preact@10.24.3)': + '@nanostores/preact@0.5.2(nanostores@0.11.3)(preact@10.25.4)': dependencies: nanostores: 0.11.3 - preact: 10.24.3 + preact: 10.25.4 '@neon-rs/load@0.0.4': {} + '@netlify/blobs@8.1.0': {} + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -12958,11 +12403,6 @@ snapshots: '@parcel/watcher-linux-x64-musl@2.4.1': optional: true - '@parcel/watcher-wasm@2.5.0': - dependencies: - is-glob: 4.0.3 - micromatch: 4.0.8 - '@parcel/watcher-win32-arm64@2.4.1': optional: true @@ -12991,191 +12431,204 @@ snapshots: '@parcel/watcher-win32-arm64': 2.4.1 '@parcel/watcher-win32-ia32': 2.4.1 '@parcel/watcher-win32-x64': 2.4.1 + optional: true '@pkgjs/parseargs@0.11.0': optional: true - '@playwright/test@1.49.0': + '@playwright/test@1.49.1': dependencies: - playwright: 1.49.0 + playwright: 1.49.1 '@polka/url@1.0.0-next.25': {} - '@preact/preset-vite@2.8.2(@babel/core@7.26.0)(preact@10.25.1)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))': + '@preact/preset-vite@2.8.2(@babel/core@7.26.0)(preact@10.25.4)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))': dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0) - '@prefresh/vite': 2.4.5(preact@10.25.1)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) + '@prefresh/vite': 2.4.5(preact@10.25.4)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) '@rollup/pluginutils': 4.2.1 babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.26.0) - debug: 4.3.7 + debug: 4.4.0 kolorist: 1.8.0 magic-string: 0.30.5 node-html-parser: 6.1.13 resolve: 1.22.8 source-map: 0.7.4 stack-trace: 1.0.0-pre2 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) transitivePeerDependencies: - preact - supports-color '@preact/signals-core@1.8.0': {} - '@preact/signals@1.3.0(preact@10.24.3)': + '@preact/signals@2.0.1(preact@10.25.4)': dependencies: '@preact/signals-core': 1.8.0 - preact: 10.24.3 - - '@preact/signals@1.3.0(preact@10.25.1)': - dependencies: - '@preact/signals-core': 1.8.0 - preact: 10.25.1 + preact: 10.25.4 '@prefresh/babel-plugin@0.5.1': {} - '@prefresh/core@1.5.2(preact@10.25.1)': + '@prefresh/core@1.5.2(preact@10.25.4)': dependencies: - preact: 10.25.1 + preact: 10.25.4 '@prefresh/utils@1.2.0': {} - '@prefresh/vite@2.4.5(preact@10.25.1)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))': + '@prefresh/vite@2.4.5(preact@10.25.4)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))': dependencies: '@babel/core': 7.26.0 '@prefresh/babel-plugin': 0.5.1 - '@prefresh/core': 1.5.2(preact@10.25.1) + '@prefresh/core': 1.5.2(preact@10.25.4) '@prefresh/utils': 1.2.0 '@rollup/pluginutils': 4.2.1 - preact: 10.25.1 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + preact: 10.25.4 + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) transitivePeerDependencies: - supports-color + '@publint/pack@0.1.1': {} + + '@qwik.dev/partytown@0.11.0': + dependencies: + dotenv: 16.4.7 + '@rollup/pluginutils@4.2.1': dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 - '@rollup/pluginutils@5.1.3(rollup@4.28.0)': + '@rollup/pluginutils@5.1.4(rollup@4.30.1)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: - rollup: 4.28.0 + rollup: 4.30.1 - '@rollup/rollup-android-arm-eabi@4.28.0': + '@rollup/rollup-android-arm-eabi@4.30.1': optional: true - '@rollup/rollup-android-arm64@4.28.0': + '@rollup/rollup-android-arm64@4.30.1': optional: true - '@rollup/rollup-darwin-arm64@4.28.0': + '@rollup/rollup-darwin-arm64@4.30.1': optional: true - '@rollup/rollup-darwin-x64@4.28.0': + '@rollup/rollup-darwin-x64@4.30.1': optional: true - '@rollup/rollup-freebsd-arm64@4.28.0': + '@rollup/rollup-freebsd-arm64@4.30.1': optional: true - '@rollup/rollup-freebsd-x64@4.28.0': + '@rollup/rollup-freebsd-x64@4.30.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.28.0': + '@rollup/rollup-linux-arm-gnueabihf@4.30.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.28.0': + '@rollup/rollup-linux-arm-musleabihf@4.30.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.28.0': + '@rollup/rollup-linux-arm64-gnu@4.30.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.28.0': + '@rollup/rollup-linux-arm64-musl@4.30.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.28.0': + '@rollup/rollup-linux-loongarch64-gnu@4.30.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.28.0': + '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.28.0': + '@rollup/rollup-linux-riscv64-gnu@4.30.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.28.0': + '@rollup/rollup-linux-s390x-gnu@4.30.1': optional: true - '@rollup/rollup-linux-x64-musl@4.28.0': + '@rollup/rollup-linux-x64-gnu@4.30.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.28.0': + '@rollup/rollup-linux-x64-musl@4.30.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.28.0': + '@rollup/rollup-win32-arm64-msvc@4.30.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.28.0': + '@rollup/rollup-win32-ia32-msvc@4.30.1': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.30.1': optional: true '@sec-ant/readable-stream@0.4.1': {} - '@shikijs/core@1.24.0': + '@shikijs/core@1.26.2': dependencies: - '@shikijs/engine-javascript': 1.24.0 - '@shikijs/engine-oniguruma': 1.24.0 - '@shikijs/types': 1.24.0 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/engine-javascript': 1.26.2 + '@shikijs/engine-oniguruma': 1.26.2 + '@shikijs/types': 1.26.2 + '@shikijs/vscode-textmate': 10.0.1 '@types/hast': 3.0.4 - hast-util-to-html: 9.0.3 + hast-util-to-html: 9.0.4 - '@shikijs/engine-javascript@1.24.0': + '@shikijs/engine-javascript@1.26.2': dependencies: - '@shikijs/types': 1.24.0 - '@shikijs/vscode-textmate': 9.3.0 - oniguruma-to-es: 0.7.0 + '@shikijs/types': 1.26.2 + '@shikijs/vscode-textmate': 10.0.1 + oniguruma-to-es: 1.0.0 - '@shikijs/engine-oniguruma@1.24.0': + '@shikijs/engine-oniguruma@1.26.2': dependencies: - '@shikijs/types': 1.24.0 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/types': 1.26.2 + '@shikijs/vscode-textmate': 10.0.1 - '@shikijs/types@1.24.0': + '@shikijs/langs@1.26.2': dependencies: - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/types': 1.26.2 + + '@shikijs/themes@1.26.2': + dependencies: + '@shikijs/types': 1.26.2 + + '@shikijs/types@1.26.2': + dependencies: + '@shikijs/vscode-textmate': 10.0.1 '@types/hast': 3.0.4 - '@shikijs/vscode-textmate@9.3.0': {} + '@shikijs/vscode-textmate@10.0.1': {} '@sindresorhus/merge-streams@2.3.0': {} '@sindresorhus/merge-streams@4.0.0': {} - '@solidjs/router@0.15.1(solid-js@1.9.3)': + '@solidjs/router@0.15.2(solid-js@1.9.4)': dependencies: - solid-js: 1.9.3 + solid-js: 1.9.4 - '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.1(svelte@5.6.2)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)))(svelte@5.6.2)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))': + '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.17.3)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)))(svelte@5.17.3)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))': dependencies: - '@sveltejs/vite-plugin-svelte': 5.0.1(svelte@5.6.2)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) - debug: 4.3.7 - svelte: 5.6.2 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + '@sveltejs/vite-plugin-svelte': 5.0.3(svelte@5.17.3)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) + debug: 4.4.0 + svelte: 5.17.3 + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) transitivePeerDependencies: - supports-color - '@sveltejs/vite-plugin-svelte@5.0.1(svelte@5.6.2)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))': + '@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.17.3)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.1(svelte@5.6.2)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)))(svelte@5.6.2)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) - debug: 4.3.7 + '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.17.3)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)))(svelte@5.17.3)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) + debug: 4.4.0 deepmerge: 4.3.1 kleur: 4.1.5 - magic-string: 0.30.14 - svelte: 5.6.2 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) - vitefu: 1.0.4(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) + magic-string: 0.30.17 + svelte: 5.17.3 + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) + vitefu: 1.0.5(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) transitivePeerDependencies: - supports-color @@ -13185,8 +12638,6 @@ snapshots: dependencies: '@types/estree': 1.0.6 - '@types/alpinejs@3.13.10': {} - '@types/alpinejs@3.13.11': {} '@types/aria-query@5.0.4': {} @@ -13214,7 +12665,7 @@ snapshots: '@types/braces@3.0.4': {} - '@types/canvas-confetti@1.6.4': {} + '@types/canvas-confetti@1.9.0': {} '@types/common-ancestor-path@1.0.2': {} @@ -13302,11 +12753,11 @@ snapshots: '@types/prop-types@15.7.12': {} - '@types/react-dom@18.3.1': + '@types/react-dom@18.3.5(@types/react@18.3.18)': dependencies: - '@types/react': 18.3.12 + '@types/react': 18.3.18 - '@types/react@18.3.12': + '@types/react@18.3.18': dependencies: '@types/prop-types': 15.7.12 csstype: 3.1.3 @@ -13341,222 +12792,177 @@ snapshots: '@types/yargs-parser@21.0.3': {} - '@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2)': + '@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3))(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2) - '@typescript-eslint/scope-manager': 8.17.0 - '@typescript-eslint/type-utils': 8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2) - '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2) - '@typescript-eslint/visitor-keys': 8.17.0 - eslint: 9.16.0(jiti@2.4.0) + '@typescript-eslint/parser': 8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/type-utils': 8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3) + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.19.1 + eslint: 9.18.0(jiti@1.21.6) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 + ts-api-utils: 2.0.0(typescript@5.7.3) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2)': + '@typescript-eslint/parser@8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3)': dependencies: - '@typescript-eslint/scope-manager': 8.17.0 - '@typescript-eslint/types': 8.17.0 - '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2) - '@typescript-eslint/visitor-keys': 8.17.0 - debug: 4.3.7 - eslint: 9.16.0(jiti@2.4.0) - optionalDependencies: - typescript: 5.7.2 + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.19.1 + debug: 4.4.0 + eslint: 9.18.0(jiti@1.21.6) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.17.0': + '@typescript-eslint/scope-manager@8.19.1': dependencies: - '@typescript-eslint/types': 8.17.0 - '@typescript-eslint/visitor-keys': 8.17.0 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/visitor-keys': 8.19.1 - '@typescript-eslint/type-utils@8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2)': + '@typescript-eslint/type-utils@8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2) - '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2) - debug: 4.3.7 - eslint: 9.16.0(jiti@2.4.0) - ts-api-utils: 1.3.0(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 + '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.3) + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3) + debug: 4.4.0 + eslint: 9.18.0(jiti@1.21.6) + ts-api-utils: 2.0.0(typescript@5.7.3) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.17.0': {} + '@typescript-eslint/types@8.19.1': {} - '@typescript-eslint/typescript-estree@8.17.0(typescript@5.7.2)': + '@typescript-eslint/typescript-estree@8.19.1(typescript@5.7.3)': dependencies: - '@typescript-eslint/types': 8.17.0 - '@typescript-eslint/visitor-keys': 8.17.0 - debug: 4.3.7 - fast-glob: 3.3.2 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/visitor-keys': 8.19.1 + debug: 4.4.0 + fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.7.2) - optionalDependencies: - typescript: 5.7.2 + ts-api-utils: 2.0.0(typescript@5.7.3) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2)': + '@typescript-eslint/utils@8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@2.4.0)) - '@typescript-eslint/scope-manager': 8.17.0 - '@typescript-eslint/types': 8.17.0 - '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2) - eslint: 9.16.0(jiti@2.4.0) - optionalDependencies: - typescript: 5.7.2 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.18.0(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.3) + eslint: 9.18.0(jiti@1.21.6) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.17.0': + '@typescript-eslint/visitor-keys@8.19.1': dependencies: - '@typescript-eslint/types': 8.17.0 + '@typescript-eslint/types': 8.19.1 eslint-visitor-keys: 4.2.0 '@typescript/twoslash@3.1.0': dependencies: '@typescript/vfs': 1.3.5 - debug: 4.3.7 + debug: 4.4.0 lz-string: 1.5.0 transitivePeerDependencies: - supports-color '@typescript/vfs@1.3.4': dependencies: - debug: 4.3.7 + debug: 4.4.0 transitivePeerDependencies: - supports-color '@typescript/vfs@1.3.5': dependencies: - debug: 4.3.7 + debug: 4.4.0 transitivePeerDependencies: - supports-color '@ungap/structured-clone@1.2.0': {} - '@vitejs/plugin-react@4.3.4(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))': + '@vitejs/plugin-react@4.3.4(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))': dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@4.1.1(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.2))': + '@vitejs/plugin-vue-jsx@4.1.1(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.3))': dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0) '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0) - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) - vue: 3.5.13(typescript@5.7.2) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) + vue: 3.5.13(typescript@5.7.3) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.2.1(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.2))': + '@vitejs/plugin-vue@5.2.1(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.3))': dependencies: - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) - vue: 3.5.13(typescript@5.7.2) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) + vue: 3.5.13(typescript@5.7.3) - '@vitest/expect@2.1.6': + '@vitest/expect@3.0.0-beta.4': dependencies: - '@vitest/spy': 2.1.6 - '@vitest/utils': 2.1.6 + '@vitest/spy': 3.0.0-beta.4 + '@vitest/utils': 3.0.0-beta.4 chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/expect@2.1.8': + '@vitest/mocker@3.0.0-beta.4(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))': dependencies: - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 - chai: 5.1.2 - tinyrainbow: 1.2.0 - - '@vitest/mocker@2.1.6(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))': - dependencies: - '@vitest/spy': 2.1.6 + '@vitest/spy': 3.0.0-beta.4 estree-walker: 3.0.3 - magic-string: 0.30.14 + magic-string: 0.30.17 optionalDependencies: - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) - '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@18.19.50)(sass@1.82.0))': - dependencies: - '@vitest/spy': 2.1.8 - estree-walker: 3.0.3 - magic-string: 0.30.14 - optionalDependencies: - vite: 5.4.11(@types/node@18.19.50)(sass@1.82.0) - - '@vitest/pretty-format@2.1.6': + '@vitest/pretty-format@3.0.0-beta.4': dependencies: tinyrainbow: 1.2.0 - '@vitest/pretty-format@2.1.8': + '@vitest/runner@3.0.0-beta.4': dependencies: - tinyrainbow: 1.2.0 + '@vitest/utils': 3.0.0-beta.4 + pathe: 2.0.1 - '@vitest/runner@2.1.6': + '@vitest/snapshot@3.0.0-beta.4': dependencies: - '@vitest/utils': 2.1.6 - pathe: 1.1.2 + '@vitest/pretty-format': 3.0.0-beta.4 + magic-string: 0.30.17 + pathe: 2.0.1 - '@vitest/runner@2.1.8': - dependencies: - '@vitest/utils': 2.1.8 - pathe: 1.1.2 - - '@vitest/snapshot@2.1.6': - dependencies: - '@vitest/pretty-format': 2.1.6 - magic-string: 0.30.14 - pathe: 1.1.2 - - '@vitest/snapshot@2.1.8': - dependencies: - '@vitest/pretty-format': 2.1.8 - magic-string: 0.30.14 - pathe: 1.1.2 - - '@vitest/spy@2.1.6': + '@vitest/spy@3.0.0-beta.4': dependencies: tinyspy: 3.0.2 - '@vitest/spy@2.1.8': + '@vitest/utils@3.0.0-beta.4': dependencies: - tinyspy: 3.0.2 - - '@vitest/utils@2.1.6': - dependencies: - '@vitest/pretty-format': 2.1.6 + '@vitest/pretty-format': 3.0.0-beta.4 loupe: 3.1.2 tinyrainbow: 1.2.0 - '@vitest/utils@2.1.8': - dependencies: - '@vitest/pretty-format': 2.1.8 - loupe: 3.1.2 - tinyrainbow: 1.2.0 - - '@volar/kit@2.4.6(typescript@5.7.2)': + '@volar/kit@2.4.6(typescript@5.7.3)': dependencies: '@volar/language-service': 2.4.6 '@volar/typescript': 2.4.6 typesafe-path: 0.2.2 - typescript: 5.7.2 + typescript: 5.7.3 vscode-languageserver-textdocument: 1.0.12 vscode-uri: 3.0.8 @@ -13631,14 +13037,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@vue/compiler-core@3.5.12': - dependencies: - '@babel/parser': 7.26.1 - '@vue/shared': 3.5.12 - entities: 4.5.0 - estree-walker: 2.0.2 - source-map-js: 1.2.1 - '@vue/compiler-core@3.5.13': dependencies: '@babel/parser': 7.26.1 @@ -13647,28 +13045,11 @@ snapshots: estree-walker: 2.0.2 source-map-js: 1.2.1 - '@vue/compiler-dom@3.5.12': - dependencies: - '@vue/compiler-core': 3.5.12 - '@vue/shared': 3.5.12 - '@vue/compiler-dom@3.5.13': dependencies: '@vue/compiler-core': 3.5.13 '@vue/shared': 3.5.13 - '@vue/compiler-sfc@3.5.12': - dependencies: - '@babel/parser': 7.26.1 - '@vue/compiler-core': 3.5.12 - '@vue/compiler-dom': 3.5.12 - '@vue/compiler-ssr': 3.5.12 - '@vue/shared': 3.5.12 - estree-walker: 2.0.2 - magic-string: 0.30.14 - postcss: 8.4.49 - source-map-js: 1.2.1 - '@vue/compiler-sfc@3.5.13': dependencies: '@babel/parser': 7.26.1 @@ -13677,35 +13058,30 @@ snapshots: '@vue/compiler-ssr': 3.5.13 '@vue/shared': 3.5.13 estree-walker: 2.0.2 - magic-string: 0.30.14 + magic-string: 0.30.17 postcss: 8.4.49 source-map-js: 1.2.1 - '@vue/compiler-ssr@3.5.12': - dependencies: - '@vue/compiler-dom': 3.5.12 - '@vue/shared': 3.5.12 - '@vue/compiler-ssr@3.5.13': dependencies: '@vue/compiler-dom': 3.5.13 '@vue/shared': 3.5.13 - '@vue/devtools-core@7.6.7(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.2))': + '@vue/devtools-core@7.7.0(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.3))': dependencies: - '@vue/devtools-kit': 7.6.7 - '@vue/devtools-shared': 7.6.7 + '@vue/devtools-kit': 7.7.0 + '@vue/devtools-shared': 7.7.0 mitt: 3.0.1 nanoid: 5.0.9 pathe: 1.1.2 - vite-hot-client: 0.2.4(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) - vue: 3.5.13(typescript@5.7.2) + vite-hot-client: 0.2.4(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) + vue: 3.5.13(typescript@5.7.3) transitivePeerDependencies: - vite - '@vue/devtools-kit@7.6.7': + '@vue/devtools-kit@7.7.0': dependencies: - '@vue/devtools-shared': 7.6.7 + '@vue/devtools-shared': 7.7.0 birpc: 0.2.19 hookable: 5.5.3 mitt: 3.0.1 @@ -13713,7 +13089,7 @@ snapshots: speakingurl: 14.0.1 superjson: 2.2.1 - '@vue/devtools-shared@7.6.7': + '@vue/devtools-shared@7.7.0': dependencies: rfdc: 1.4.1 @@ -13721,31 +13097,15 @@ snapshots: dependencies: '@vue/shared': 3.1.5 - '@vue/reactivity@3.5.12': - dependencies: - '@vue/shared': 3.5.12 - '@vue/reactivity@3.5.13': dependencies: '@vue/shared': 3.5.13 - '@vue/runtime-core@3.5.12': - dependencies: - '@vue/reactivity': 3.5.12 - '@vue/shared': 3.5.12 - '@vue/runtime-core@3.5.13': dependencies: '@vue/reactivity': 3.5.13 '@vue/shared': 3.5.13 - '@vue/runtime-dom@3.5.12': - dependencies: - '@vue/reactivity': 3.5.12 - '@vue/runtime-core': 3.5.12 - '@vue/shared': 3.5.12 - csstype: 3.1.3 - '@vue/runtime-dom@3.5.13': dependencies: '@vue/reactivity': 3.5.13 @@ -13753,22 +13113,14 @@ snapshots: '@vue/shared': 3.5.13 csstype: 3.1.3 - '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.7.2))': - dependencies: - '@vue/compiler-ssr': 3.5.12 - '@vue/shared': 3.5.12 - vue: 3.5.12(typescript@5.7.2) - - '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.2))': + '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.3))': dependencies: '@vue/compiler-ssr': 3.5.13 '@vue/shared': 3.5.13 - vue: 3.5.13(typescript@5.7.2) + vue: 3.5.13(typescript@5.7.3) '@vue/shared@3.1.5': {} - '@vue/shared@3.5.12': {} - '@vue/shared@3.5.13': {} '@webcomponents/template-shadowroot@0.2.1': {} @@ -13790,7 +13142,7 @@ snapshots: agent-base@7.1.1: dependencies: - debug: 4.3.7 + debug: 4.4.0 transitivePeerDependencies: - supports-color @@ -13808,7 +13160,7 @@ snapshots: json-schema-traverse: 1.0.0 require-from-string: 2.0.2 - alpinejs@3.14.3: + alpinejs@3.14.8: dependencies: '@vue/reactivity': 3.1.5 @@ -13917,7 +13269,7 @@ snapshots: caniuse-lite: 1.0.30001667 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.1.0 + picocolors: 1.1.1 postcss: 8.4.49 postcss-value-parser: 4.2.0 @@ -14063,14 +13415,14 @@ snapshots: css-what: 6.1.0 domelementtype: 2.3.0 domhandler: 5.0.3 - domutils: 3.1.0 + domutils: 3.2.1 cheerio@1.0.0: dependencies: cheerio-select: 2.1.0 dom-serializer: 2.0.0 domhandler: 5.0.3 - domutils: 3.1.0 + domutils: 3.2.1 encoding-sniffer: 0.2.0 htmlparser2: 9.1.0 parse5: 7.2.1 @@ -14101,10 +13453,6 @@ snapshots: ci-info@4.1.0: {} - citty@0.1.6: - dependencies: - consola: 3.2.3 - cli-boxes@3.0.0: {} cli-cursor@4.0.0: @@ -14117,12 +13465,6 @@ snapshots: optionalDependencies: '@colors/colors': 1.5.0 - clipboardy@4.0.0: - dependencies: - execa: 8.0.1 - is-wsl: 3.1.0 - is64bit: 2.0.0 - cliui@8.0.1: dependencies: string-width: 4.2.3 @@ -14171,8 +13513,6 @@ snapshots: concat-map@0.0.1: {} - confbox@0.1.8: {} - consola@3.2.3: {} content-disposition@0.5.4: @@ -14191,12 +13531,6 @@ snapshots: cross-argv@2.0.0: {} - cross-spawn@7.0.3: - dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 - cross-spawn@7.0.6: dependencies: path-key: 3.1.1 @@ -14212,7 +13546,7 @@ snapshots: postcss: 8.4.49 postcss-selector-parser: 7.0.0 - css-has-pseudo@7.0.1(postcss@8.4.49): + css-has-pseudo@7.0.2(postcss@8.4.49): dependencies: '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.0.0) postcss: 8.4.49 @@ -14228,7 +13562,7 @@ snapshots: boolbase: 1.0.0 css-what: 6.1.0 domhandler: 5.0.3 - domutils: 3.1.0 + domutils: 3.2.1 nth-check: 2.1.1 css-selector-parser@1.4.1: {} @@ -14247,7 +13581,7 @@ snapshots: css-what@6.1.0: {} - cssdb@8.2.2: {} + cssdb@8.2.3: {} cssesc@3.0.0: {} @@ -14272,11 +13606,7 @@ snapshots: dataloader@1.4.0: {} - debug@2.6.9: - dependencies: - ms: 2.0.0 - - debug@4.3.7: + debug@4.4.0: dependencies: ms: 2.1.3 @@ -14321,7 +13651,8 @@ snapshots: detect-indent@6.1.0: {} - detect-libc@1.0.3: {} + detect-libc@1.0.3: + optional: true detect-libc@2.0.2: {} @@ -14361,19 +13692,21 @@ snapshots: dependencies: domelementtype: 2.3.0 - domutils@3.1.0: + domutils@3.2.1: dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 domhandler: 5.0.3 + dotenv@16.4.7: {} + dotenv@8.6.0: {} - drizzle-orm@0.31.4(@libsql/client@0.14.0)(@types/react@18.3.12)(react@18.3.1): + drizzle-orm@0.31.4(@libsql/client@0.14.0)(@types/react@18.3.18)(react@19.0.0): optionalDependencies: '@libsql/client': 0.14.0 - '@types/react': 18.3.12 - react: 18.3.1 + '@types/react': 18.3.18 + react: 19.0.0 dset@3.1.4: {} @@ -14396,8 +13729,6 @@ snapshots: emoji-regex@9.2.2: {} - encodeurl@1.0.2: {} - encodeurl@2.0.0: {} encoding-sniffer@0.2.0: @@ -14412,11 +13743,13 @@ snapshots: entities@4.5.0: {} + entities@6.0.0: {} + eol@0.10.0: {} error-stack-parser-es@0.1.5: {} - es-module-lexer@1.5.4: {} + es-module-lexer@1.6.0: {} esast-util-from-estree@2.0.0: dependencies: @@ -14432,66 +13765,41 @@ snapshots: esast-util-from-estree: 2.0.0 vfile-message: 4.0.2 - esbuild-plugin-copy@2.1.1(esbuild@0.21.5): + esbuild-plugin-copy@2.1.1(esbuild@0.24.2): dependencies: chalk: 4.1.2 chokidar: 3.6.0 - esbuild: 0.21.5 + esbuild: 0.24.2 fs-extra: 10.1.0 globby: 11.1.0 - esbuild@0.21.5: + esbuild@0.24.2: optionalDependencies: - '@esbuild/aix-ppc64': 0.21.5 - '@esbuild/android-arm': 0.21.5 - '@esbuild/android-arm64': 0.21.5 - '@esbuild/android-x64': 0.21.5 - '@esbuild/darwin-arm64': 0.21.5 - '@esbuild/darwin-x64': 0.21.5 - '@esbuild/freebsd-arm64': 0.21.5 - '@esbuild/freebsd-x64': 0.21.5 - '@esbuild/linux-arm': 0.21.5 - '@esbuild/linux-arm64': 0.21.5 - '@esbuild/linux-ia32': 0.21.5 - '@esbuild/linux-loong64': 0.21.5 - '@esbuild/linux-mips64el': 0.21.5 - '@esbuild/linux-ppc64': 0.21.5 - '@esbuild/linux-riscv64': 0.21.5 - '@esbuild/linux-s390x': 0.21.5 - '@esbuild/linux-x64': 0.21.5 - '@esbuild/netbsd-x64': 0.21.5 - '@esbuild/openbsd-x64': 0.21.5 - '@esbuild/sunos-x64': 0.21.5 - '@esbuild/win32-arm64': 0.21.5 - '@esbuild/win32-ia32': 0.21.5 - '@esbuild/win32-x64': 0.21.5 - - esbuild@0.24.0: - optionalDependencies: - '@esbuild/aix-ppc64': 0.24.0 - '@esbuild/android-arm': 0.24.0 - '@esbuild/android-arm64': 0.24.0 - '@esbuild/android-x64': 0.24.0 - '@esbuild/darwin-arm64': 0.24.0 - '@esbuild/darwin-x64': 0.24.0 - '@esbuild/freebsd-arm64': 0.24.0 - '@esbuild/freebsd-x64': 0.24.0 - '@esbuild/linux-arm': 0.24.0 - '@esbuild/linux-arm64': 0.24.0 - '@esbuild/linux-ia32': 0.24.0 - '@esbuild/linux-loong64': 0.24.0 - '@esbuild/linux-mips64el': 0.24.0 - '@esbuild/linux-ppc64': 0.24.0 - '@esbuild/linux-riscv64': 0.24.0 - '@esbuild/linux-s390x': 0.24.0 - '@esbuild/linux-x64': 0.24.0 - '@esbuild/netbsd-x64': 0.24.0 - '@esbuild/openbsd-arm64': 0.24.0 - '@esbuild/openbsd-x64': 0.24.0 - '@esbuild/sunos-x64': 0.24.0 - '@esbuild/win32-arm64': 0.24.0 - '@esbuild/win32-ia32': 0.24.0 - '@esbuild/win32-x64': 0.24.0 + '@esbuild/aix-ppc64': 0.24.2 + '@esbuild/android-arm': 0.24.2 + '@esbuild/android-arm64': 0.24.2 + '@esbuild/android-x64': 0.24.2 + '@esbuild/darwin-arm64': 0.24.2 + '@esbuild/darwin-x64': 0.24.2 + '@esbuild/freebsd-arm64': 0.24.2 + '@esbuild/freebsd-x64': 0.24.2 + '@esbuild/linux-arm': 0.24.2 + '@esbuild/linux-arm64': 0.24.2 + '@esbuild/linux-ia32': 0.24.2 + '@esbuild/linux-loong64': 0.24.2 + '@esbuild/linux-mips64el': 0.24.2 + '@esbuild/linux-ppc64': 0.24.2 + '@esbuild/linux-riscv64': 0.24.2 + '@esbuild/linux-s390x': 0.24.2 + '@esbuild/linux-x64': 0.24.2 + '@esbuild/netbsd-arm64': 0.24.2 + '@esbuild/netbsd-x64': 0.24.2 + '@esbuild/openbsd-arm64': 0.24.2 + '@esbuild/openbsd-x64': 0.24.2 + '@esbuild/sunos-x64': 0.24.2 + '@esbuild/win32-arm64': 0.24.2 + '@esbuild/win32-ia32': 0.24.2 + '@esbuild/win32-x64': 0.24.2 escalade@3.2.0: {} @@ -14501,12 +13809,12 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-plugin-regexp@2.7.0(eslint@9.16.0(jiti@2.4.0)): + eslint-plugin-regexp@2.7.0(eslint@9.18.0(jiti@1.21.6)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.18.0(jiti@1.21.6)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 - eslint: 9.16.0(jiti@2.4.0) + eslint: 9.18.0(jiti@1.21.6) jsdoc-type-pratt-parser: 4.1.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 @@ -14521,15 +13829,15 @@ snapshots: eslint-visitor-keys@4.2.0: {} - eslint@9.16.0(jiti@2.4.0): + eslint@9.18.0(jiti@1.21.6): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.18.0(jiti@1.21.6)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.19.1 - '@eslint/core': 0.9.1 + '@eslint/core': 0.10.0 '@eslint/eslintrc': 3.2.0 - '@eslint/js': 9.16.0 - '@eslint/plugin-kit': 0.2.4 + '@eslint/js': 9.18.0 + '@eslint/plugin-kit': 0.2.5 '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.1 @@ -14538,7 +13846,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.3.7 + debug: 4.4.0 escape-string-regexp: 4.0.0 eslint-scope: 8.2.0 eslint-visitor-keys: 4.2.0 @@ -14558,12 +13866,10 @@ snapshots: natural-compare: 1.4.0 optionator: 0.9.4 optionalDependencies: - jiti: 2.4.0 + jiti: 1.21.6 transitivePeerDependencies: - supports-color - esm-env@1.1.4: {} - esm-env@1.2.1: {} esm@3.2.25: {} @@ -14580,15 +13886,9 @@ snapshots: dependencies: estraverse: 5.3.0 - esrap@1.2.2: + esrap@1.4.2: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - '@types/estree': 1.0.6 - - esrap@1.2.3: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - '@types/estree': 1.0.6 esrecurse@4.3.0: dependencies: @@ -14639,7 +13939,7 @@ snapshots: execa@8.0.1: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 get-stream: 8.0.1 human-signals: 5.0.0 is-stream: 3.0.0 @@ -14678,7 +13978,7 @@ snapshots: fast-deep-equal@3.1.3: {} - fast-glob@3.3.2: + fast-glob@3.3.3: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -14692,7 +13992,7 @@ snapshots: fast-uri@3.0.1: {} - fast-xml-parser@4.5.0: + fast-xml-parser@4.5.1: dependencies: strnum: 1.0.5 @@ -14754,7 +14054,7 @@ snapshots: foreground-child@3.3.0: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.6 signal-exit: 4.1.0 form-data@4.0.0: @@ -14801,8 +14101,6 @@ snapshots: dependencies: minipass: 3.3.6 - fs.realpath@1.0.0: {} - fsevents@2.3.2: optional: true @@ -14817,8 +14115,6 @@ snapshots: get-east-asian-width@1.2.0: {} - get-port-please@3.1.2: {} - get-stream@8.0.1: {} get-stream@9.0.1: @@ -14845,14 +14141,6 @@ snapshots: package-json-from-dist: 1.0.0 path-scurry: 1.11.1 - glob@8.1.0: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 5.1.6 - once: 1.4.0 - globals@11.12.0: {} globals@14.0.0: {} @@ -14861,7 +14149,7 @@ snapshots: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.2 + fast-glob: 3.3.3 ignore: 5.3.2 merge2: 1.4.1 slash: 3.0.0 @@ -14869,7 +14157,7 @@ snapshots: globby@14.0.2: dependencies: '@sindresorhus/merge-streams': 2.3.0 - fast-glob: 3.3.2 + fast-glob: 3.3.3 ignore: 5.3.2 path-type: 5.0.0 slash: 5.1.0 @@ -14987,7 +14275,7 @@ snapshots: estree-util-is-identifier-name: 3.0.0 hast-util-whitespace: 3.0.0 mdast-util-mdx-expression: 2.0.1 - mdast-util-mdx-jsx: 3.1.3 + mdast-util-mdx-jsx: 3.2.0 mdast-util-mdxjs-esm: 2.0.1 property-information: 6.5.0 space-separated-tokens: 2.0.2 @@ -14997,7 +14285,7 @@ snapshots: transitivePeerDependencies: - supports-color - hast-util-to-html@9.0.3: + hast-util-to-html@9.0.4: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.3 @@ -15021,7 +14309,7 @@ snapshots: estree-util-is-identifier-name: 3.0.0 hast-util-whitespace: 3.0.0 mdast-util-mdx-expression: 2.0.1 - mdast-util-mdx-jsx: 3.1.3 + mdast-util-mdx-jsx: 3.2.0 mdast-util-mdxjs-esm: 2.0.1 property-information: 6.5.0 space-separated-tokens: 2.0.2 @@ -15088,18 +14376,25 @@ snapshots: html-void-elements@3.0.0: {} + htmlparser2@10.0.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.2.1 + entities: 6.0.0 + htmlparser2@8.0.2: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 - domutils: 3.1.0 + domutils: 3.2.1 entities: 4.5.0 htmlparser2@9.1.0: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 - domutils: 3.1.0 + domutils: 3.2.1 entities: 4.5.0 http-cache-semantics@4.1.1: {} @@ -15117,16 +14412,14 @@ snapshots: http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.1 - debug: 4.3.7 + debug: 4.4.0 transitivePeerDependencies: - supports-color - http-shutdown@1.2.2: {} - https-proxy-agent@7.0.4: dependencies: agent-base: 7.1.1 - debug: 4.3.7 + debug: 4.4.0 transitivePeerDependencies: - supports-color @@ -15152,14 +14445,8 @@ snapshots: ieee754@1.2.1: {} - ignore-walk@5.0.1: - dependencies: - minimatch: 5.1.6 - ignore@5.3.2: {} - immutable@4.3.7: {} - immutable@5.0.3: {} import-fresh@3.3.0: @@ -15171,11 +14458,6 @@ snapshots: imurmurhash@0.1.4: {} - inflight@1.0.6: - dependencies: - once: 1.4.0 - wrappy: 1.0.2 - inherits@2.0.4: {} inline-style-parser@0.1.1: {} @@ -15227,10 +14509,6 @@ snapshots: is-potential-custom-element-name@1.0.1: {} - is-reference@3.0.2: - dependencies: - '@types/estree': 1.0.6 - is-reference@3.0.3: dependencies: '@types/estree': 1.0.6 @@ -15253,10 +14531,6 @@ snapshots: dependencies: is-inside-container: 1.0.0 - is64bit@2.0.0: - dependencies: - system-architecture: 0.1.0 - isexe@2.0.0: {} jackspeak@3.4.3: @@ -15267,8 +14541,6 @@ snapshots: jiti@1.21.6: {} - jiti@2.4.0: {} - js-base64@3.7.7: {} js-tokens@4.0.0: {} @@ -15372,10 +14644,6 @@ snapshots: '@libsql/linux-x64-musl': 0.4.5 '@libsql/win32-x64-msvc': 0.4.5 - lilconfig@2.1.0: {} - - lilconfig@3.1.2: {} - lilconfig@3.1.3: {} lines-and-columns@1.2.4: {} @@ -15388,7 +14656,7 @@ snapshots: htmlparser2: 8.0.2 uhyphen: 0.2.0 - linkedom@0.18.5: + linkedom@0.18.6: dependencies: css-select: 5.1.0 cssom: 0.5.0 @@ -15396,27 +14664,6 @@ snapshots: htmlparser2: 9.1.0 uhyphen: 0.2.0 - listhen@1.9.0: - dependencies: - '@parcel/watcher': 2.4.1 - '@parcel/watcher-wasm': 2.5.0 - citty: 0.1.6 - clipboardy: 4.0.0 - consola: 3.2.3 - crossws: 0.3.1 - defu: 6.1.4 - get-port-please: 3.1.2 - h3: 1.13.0 - http-shutdown: 1.2.2 - jiti: 2.4.0 - mlly: 1.7.3 - node-forge: 1.3.1 - pathe: 1.1.2 - std-env: 3.7.0 - ufo: 1.5.4 - untun: 0.1.3 - uqr: 0.1.2 - lit-element@4.1.0: dependencies: '@lit-labs/ssr-dom-shim': 1.2.1 @@ -15496,11 +14743,7 @@ snapshots: lz-string@1.5.0: {} - magic-string@0.30.12: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - - magic-string@0.30.14: + magic-string@0.30.17: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -15648,7 +14891,7 @@ snapshots: transitivePeerDependencies: - supports-color - mdast-util-mdx-jsx@3.1.3: + mdast-util-mdx-jsx@3.2.0: dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 @@ -15669,7 +14912,7 @@ snapshots: dependencies: mdast-util-from-markdown: 2.0.1 mdast-util-mdx-expression: 2.0.1 - mdast-util-mdx-jsx: 3.1.3 + mdast-util-mdx-jsx: 3.2.0 mdast-util-mdxjs-esm: 2.0.1 mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: @@ -16005,7 +15248,7 @@ snapshots: micromark@4.0.0: dependencies: '@types/debug': 4.1.12 - debug: 4.3.7 + debug: 4.4.0 decode-named-character-reference: 1.0.2 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 @@ -16047,10 +15290,6 @@ snapshots: dependencies: brace-expansion: 1.1.11 - minimatch@5.1.6: - dependencies: - brace-expansion: 2.0.1 - minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 @@ -16076,19 +15315,10 @@ snapshots: mkdirp@1.0.4: {} - mlly@1.7.3: - dependencies: - acorn: 8.14.0 - pathe: 1.1.2 - pkg-types: 1.2.1 - ufo: 1.5.4 - mri@1.2.0: {} mrmime@2.0.0: {} - ms@2.0.0: {} - ms@2.1.3: {} muggle-string@0.4.1: {} @@ -16120,7 +15350,8 @@ snapshots: lower-case: 2.0.2 tslib: 2.6.2 - node-addon-api@7.1.1: {} + node-addon-api@7.1.1: + optional: true node-domexception@1.0.0: {} @@ -16136,8 +15367,6 @@ snapshots: fetch-blob: 3.2.0 formdata-polyfill: 4.0.10 - node-forge@1.3.1: {} - node-gyp-build@4.8.2: {} node-html-parser@6.1.13: @@ -16145,7 +15374,7 @@ snapshots: css-select: 5.1.0 he: 1.2.0 - node-mocks-http@1.16.1(@types/node@18.19.50): + node-mocks-http@1.16.2(@types/node@18.19.50): dependencies: accepts: 1.3.8 content-disposition: 0.5.4 @@ -16166,19 +15395,6 @@ snapshots: normalize-range@0.1.2: {} - npm-bundled@2.0.1: - dependencies: - npm-normalize-package-bin: 2.0.0 - - npm-normalize-package-bin@2.0.0: {} - - npm-packlist@5.1.3: - dependencies: - glob: 8.1.0 - ignore-walk: 5.0.1 - npm-bundled: 2.0.1 - npm-normalize-package-bin: 2.0.0 - npm-run-path@5.3.0: dependencies: path-key: 4.0.0 @@ -16210,10 +15426,6 @@ snapshots: on-net-listen@1.1.2: {} - once@1.4.0: - dependencies: - wrappy: 1.0.2 - onetime@5.1.2: dependencies: mimic-fn: 2.1.0 @@ -16222,17 +15434,17 @@ snapshots: dependencies: mimic-fn: 4.0.0 - oniguruma-to-es@0.7.0: + oniguruma-to-es@1.0.0: dependencies: emoji-regex-xs: 1.0.0 - regex: 5.0.2 - regex-recursion: 4.3.0 + regex: 5.1.1 + regex-recursion: 5.1.1 only-allow@1.2.1: dependencies: which-pm-runs: 1.1.0 - open-props@1.7.7: {} + open-props@1.7.10: {} open@10.1.0: dependencies: @@ -16270,7 +15482,7 @@ snapshots: dependencies: yocto-queue: 1.1.1 - p-limit@6.1.0: + p-limit@6.2.0: dependencies: yocto-queue: 1.1.1 @@ -16299,7 +15511,7 @@ snapshots: package-json-from-dist@1.0.0: {} - package-manager-detector@0.2.0: {} + package-manager-detector@0.2.8: {} pako@1.0.11: {} @@ -16376,12 +15588,12 @@ snapshots: pathe@1.1.2: {} + pathe@2.0.1: {} + pathval@2.0.0: {} perfect-debounce@1.0.0: {} - picocolors@1.1.0: {} - picocolors@1.1.1: {} picomatch@2.3.1: {} @@ -16398,17 +15610,11 @@ snapshots: dependencies: find-up: 4.1.0 - pkg-types@1.2.1: - dependencies: - confbox: 0.1.8 - mlly: 1.7.3 - pathe: 1.1.2 + playwright-core@1.49.1: {} - playwright-core@1.49.0: {} - - playwright@1.49.0: + playwright@1.49.1: dependencies: - playwright-core: 1.49.0 + playwright-core: 1.49.1 optionalDependencies: fsevents: 2.3.2 @@ -16424,9 +15630,9 @@ snapshots: postcss: 8.4.49 postcss-value-parser: 4.2.0 - postcss-color-functional-notation@7.0.6(postcss@8.4.49): + postcss-color-functional-notation@7.0.7(postcss@8.4.49): dependencies: - '@csstools/css-color-parser': 3.0.6(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.49) @@ -16518,9 +15724,9 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.4.49 - postcss-lab-function@7.0.6(postcss@8.4.49): + postcss-lab-function@7.0.7(postcss@8.4.49): dependencies: - '@csstools/css-color-parser': 3.0.6(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) + '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) '@csstools/css-tokenizer': 3.0.3 '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.49) @@ -16529,7 +15735,7 @@ snapshots: postcss-load-config@4.0.2(postcss@8.4.49): dependencies: - lilconfig: 3.1.2 + lilconfig: 3.1.3 yaml: 2.5.1 optionalDependencies: postcss: 8.4.49 @@ -16539,11 +15745,6 @@ snapshots: postcss: 8.4.49 postcss-value-parser: 4.2.0 - postcss-nested@6.0.1(postcss@8.4.49): - dependencies: - postcss: 8.4.49 - postcss-selector-parser: 6.1.2 - postcss-nested@6.2.0(postcss@8.4.49): dependencies: postcss: 8.4.49 @@ -16574,17 +15775,17 @@ snapshots: postcss: 8.4.49 postcss-value-parser: 4.2.0 - postcss-preset-env@10.1.1(postcss@8.4.49): + postcss-preset-env@10.1.3(postcss@8.4.49): dependencies: '@csstools/postcss-cascade-layers': 5.0.1(postcss@8.4.49) - '@csstools/postcss-color-function': 4.0.6(postcss@8.4.49) - '@csstools/postcss-color-mix-function': 3.0.6(postcss@8.4.49) + '@csstools/postcss-color-function': 4.0.7(postcss@8.4.49) + '@csstools/postcss-color-mix-function': 3.0.7(postcss@8.4.49) '@csstools/postcss-content-alt-text': 2.0.4(postcss@8.4.49) - '@csstools/postcss-exponential-functions': 2.0.5(postcss@8.4.49) + '@csstools/postcss-exponential-functions': 2.0.6(postcss@8.4.49) '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.4.49) - '@csstools/postcss-gamut-mapping': 2.0.6(postcss@8.4.49) - '@csstools/postcss-gradients-interpolation-method': 5.0.6(postcss@8.4.49) - '@csstools/postcss-hwb-function': 4.0.6(postcss@8.4.49) + '@csstools/postcss-gamut-mapping': 2.0.7(postcss@8.4.49) + '@csstools/postcss-gradients-interpolation-method': 5.0.7(postcss@8.4.49) + '@csstools/postcss-hwb-function': 4.0.7(postcss@8.4.49) '@csstools/postcss-ic-unit': 4.0.0(postcss@8.4.49) '@csstools/postcss-initial': 2.0.0(postcss@8.4.49) '@csstools/postcss-is-pseudo-class': 5.0.1(postcss@8.4.49) @@ -16594,30 +15795,30 @@ snapshots: '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.4.49) '@csstools/postcss-logical-resize': 3.0.0(postcss@8.4.49) '@csstools/postcss-logical-viewport-units': 3.0.3(postcss@8.4.49) - '@csstools/postcss-media-minmax': 2.0.5(postcss@8.4.49) + '@csstools/postcss-media-minmax': 2.0.6(postcss@8.4.49) '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.4(postcss@8.4.49) '@csstools/postcss-nested-calc': 4.0.0(postcss@8.4.49) '@csstools/postcss-normalize-display-values': 4.0.0(postcss@8.4.49) - '@csstools/postcss-oklab-function': 4.0.6(postcss@8.4.49) + '@csstools/postcss-oklab-function': 4.0.7(postcss@8.4.49) '@csstools/postcss-progressive-custom-properties': 4.0.0(postcss@8.4.49) - '@csstools/postcss-random-function': 1.0.1(postcss@8.4.49) - '@csstools/postcss-relative-color-syntax': 3.0.6(postcss@8.4.49) + '@csstools/postcss-random-function': 1.0.2(postcss@8.4.49) + '@csstools/postcss-relative-color-syntax': 3.0.7(postcss@8.4.49) '@csstools/postcss-scope-pseudo-class': 4.0.1(postcss@8.4.49) - '@csstools/postcss-sign-functions': 1.1.0(postcss@8.4.49) - '@csstools/postcss-stepped-value-functions': 4.0.5(postcss@8.4.49) + '@csstools/postcss-sign-functions': 1.1.1(postcss@8.4.49) + '@csstools/postcss-stepped-value-functions': 4.0.6(postcss@8.4.49) '@csstools/postcss-text-decoration-shorthand': 4.0.1(postcss@8.4.49) - '@csstools/postcss-trigonometric-functions': 4.0.5(postcss@8.4.49) + '@csstools/postcss-trigonometric-functions': 4.0.6(postcss@8.4.49) '@csstools/postcss-unset-value': 4.0.0(postcss@8.4.49) autoprefixer: 10.4.20(postcss@8.4.49) browserslist: 4.24.0 css-blank-pseudo: 7.0.1(postcss@8.4.49) - css-has-pseudo: 7.0.1(postcss@8.4.49) + css-has-pseudo: 7.0.2(postcss@8.4.49) css-prefers-color-scheme: 10.0.0(postcss@8.4.49) - cssdb: 8.2.2 + cssdb: 8.2.3 postcss: 8.4.49 postcss-attribute-case-insensitive: 7.0.1(postcss@8.4.49) postcss-clamp: 4.1.0(postcss@8.4.49) - postcss-color-functional-notation: 7.0.6(postcss@8.4.49) + postcss-color-functional-notation: 7.0.7(postcss@8.4.49) postcss-color-hex-alpha: 10.0.0(postcss@8.4.49) postcss-color-rebeccapurple: 10.0.0(postcss@8.4.49) postcss-custom-media: 11.0.5(postcss@8.4.49) @@ -16630,7 +15831,7 @@ snapshots: postcss-font-variant: 5.0.0(postcss@8.4.49) postcss-gap-properties: 6.0.0(postcss@8.4.49) postcss-image-set-function: 7.0.0(postcss@8.4.49) - postcss-lab-function: 7.0.6(postcss@8.4.49) + postcss-lab-function: 7.0.7(postcss@8.4.49) postcss-logical: 8.0.0(postcss@8.4.49) postcss-nesting: 13.0.1(postcss@8.4.49) postcss-opacity-percentage: 3.0.0(postcss@8.4.49) @@ -16673,13 +15874,11 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - preact-render-to-string@6.5.11(preact@10.25.1): + preact-render-to-string@6.5.13(preact@10.25.4): dependencies: - preact: 10.25.1 + preact: 10.25.4 - preact@10.24.3: {} - - preact@10.25.1: {} + preact@10.25.4: {} preferred-pm@4.0.0: dependencies: @@ -16727,9 +15926,10 @@ snapshots: psl@1.9.0: {} - publint@0.2.12: + publint@0.3.2: dependencies: - npm-packlist: 5.1.3 + '@publint/pack': 0.1.1 + package-manager-detector: 0.2.8 picocolors: 1.1.1 sade: 1.8.1 @@ -16749,10 +15949,10 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-dom@19.0.0-rc-fb9a90fa48-20240614(react@19.0.0-rc-fb9a90fa48-20240614): + react-dom@19.0.0(react@19.0.0): dependencies: - react: 19.0.0-rc-fb9a90fa48-20240614 - scheduler: 0.25.0-rc-fb9a90fa48-20240614 + react: 19.0.0 + scheduler: 0.25.0 react-refresh@0.14.2: {} @@ -16760,7 +15960,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - react@19.0.0-rc-fb9a90fa48-20240614: {} + react@19.0.0: {} read-cache@1.0.0: dependencies: @@ -16819,13 +16019,14 @@ snapshots: regenerator-runtime@0.14.1: {} - regex-recursion@4.3.0: + regex-recursion@5.1.1: dependencies: + regex: 5.1.1 regex-utilities: 2.3.0 regex-utilities@2.3.0: {} - regex@5.0.2: + regex@5.1.1: dependencies: regex-utilities: 2.3.0 @@ -16865,13 +16066,13 @@ snapshots: hast-util-from-html: 2.0.3 unified: 11.0.5 - rehype-pretty-code@0.14.0(shiki@1.24.0): + rehype-pretty-code@0.14.0(shiki@1.26.2): dependencies: '@types/hast': 3.0.4 hast-util-to-string: 3.0.0 parse-numeric-range: 1.3.0 rehype-parse: 9.0.0 - shiki: 1.24.0 + shiki: 1.26.2 unified: 11.0.5 unist-util-visit: 5.0.0 @@ -16900,7 +16101,7 @@ snapshots: rehype-stringify@10.0.1: dependencies: '@types/hast': 3.0.4 - hast-util-to-html: 9.0.3 + hast-util-to-html: 9.0.4 unified: 11.0.5 rehype-toc@3.0.2: @@ -16964,7 +16165,7 @@ snapshots: unified: 11.0.5 vfile: 6.0.3 - remark-shiki-twoslash@3.1.3(typescript@5.7.2): + remark-shiki-twoslash@3.1.3(typescript@5.7.3): dependencies: '@types/unist': 2.0.11 '@typescript/twoslash': 3.1.0 @@ -16972,9 +16173,9 @@ snapshots: fenceparser: 1.1.1 regenerator-runtime: 0.13.11 shiki: 0.10.1 - shiki-twoslash: 3.1.2(typescript@5.7.2) + shiki-twoslash: 3.1.2(typescript@5.7.3) tslib: 2.1.0 - typescript: 5.7.2 + typescript: 5.7.3 unist-util-visit: 2.0.3 transitivePeerDependencies: - supports-color @@ -17053,28 +16254,29 @@ snapshots: rfdc@1.4.1: {} - rollup@4.28.0: + rollup@4.30.1: dependencies: '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.28.0 - '@rollup/rollup-android-arm64': 4.28.0 - '@rollup/rollup-darwin-arm64': 4.28.0 - '@rollup/rollup-darwin-x64': 4.28.0 - '@rollup/rollup-freebsd-arm64': 4.28.0 - '@rollup/rollup-freebsd-x64': 4.28.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.28.0 - '@rollup/rollup-linux-arm-musleabihf': 4.28.0 - '@rollup/rollup-linux-arm64-gnu': 4.28.0 - '@rollup/rollup-linux-arm64-musl': 4.28.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.28.0 - '@rollup/rollup-linux-riscv64-gnu': 4.28.0 - '@rollup/rollup-linux-s390x-gnu': 4.28.0 - '@rollup/rollup-linux-x64-gnu': 4.28.0 - '@rollup/rollup-linux-x64-musl': 4.28.0 - '@rollup/rollup-win32-arm64-msvc': 4.28.0 - '@rollup/rollup-win32-ia32-msvc': 4.28.0 - '@rollup/rollup-win32-x64-msvc': 4.28.0 + '@rollup/rollup-android-arm-eabi': 4.30.1 + '@rollup/rollup-android-arm64': 4.30.1 + '@rollup/rollup-darwin-arm64': 4.30.1 + '@rollup/rollup-darwin-x64': 4.30.1 + '@rollup/rollup-freebsd-arm64': 4.30.1 + '@rollup/rollup-freebsd-x64': 4.30.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.30.1 + '@rollup/rollup-linux-arm-musleabihf': 4.30.1 + '@rollup/rollup-linux-arm64-gnu': 4.30.1 + '@rollup/rollup-linux-arm64-musl': 4.30.1 + '@rollup/rollup-linux-loongarch64-gnu': 4.30.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.30.1 + '@rollup/rollup-linux-riscv64-gnu': 4.30.1 + '@rollup/rollup-linux-s390x-gnu': 4.30.1 + '@rollup/rollup-linux-x64-gnu': 4.30.1 + '@rollup/rollup-linux-x64-musl': 4.30.1 + '@rollup/rollup-win32-arm64-msvc': 4.30.1 + '@rollup/rollup-win32-ia32-msvc': 4.30.1 + '@rollup/rollup-win32-x64-msvc': 4.30.1 fsevents: 2.3.3 rrweb-cssom@0.6.0: {} @@ -17099,15 +16301,7 @@ snapshots: dependencies: suf-log: 2.5.3 - sass@1.80.6: - dependencies: - chokidar: 4.0.1 - immutable: 4.3.7 - source-map-js: 1.2.1 - optionalDependencies: - '@parcel/watcher': 2.4.1 - - sass@1.82.0: + sass@1.83.1: dependencies: chokidar: 4.0.1 immutable: 5.0.3 @@ -17125,7 +16319,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - scheduler@0.25.0-rc-fb9a90fa48-20240614: {} + scheduler@0.25.0: {} scslre@0.3.0: dependencies: @@ -17137,27 +16331,9 @@ snapshots: semver@7.6.3: {} - send@0.19.0: - dependencies: - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 2.0.0 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.1 - transitivePeerDependencies: - - supports-color - send@1.1.0: dependencies: - debug: 4.3.7 + debug: 4.4.0 destroy: 1.2.0 encodeurl: 2.0.0 escape-html: 1.0.3 @@ -17214,13 +16390,13 @@ snapshots: shebang-regex@3.0.0: {} - shiki-twoslash@3.1.2(typescript@5.7.2): + shiki-twoslash@3.1.2(typescript@5.7.3): dependencies: '@typescript/twoslash': 3.1.0 '@typescript/vfs': 1.3.4 fenceparser: 1.1.1 shiki: 0.10.1 - typescript: 5.7.2 + typescript: 5.7.3 transitivePeerDependencies: - supports-color @@ -17230,13 +16406,15 @@ snapshots: vscode-oniguruma: 1.7.0 vscode-textmate: 5.2.0 - shiki@1.24.0: + shiki@1.26.2: dependencies: - '@shikijs/core': 1.24.0 - '@shikijs/engine-javascript': 1.24.0 - '@shikijs/engine-oniguruma': 1.24.0 - '@shikijs/types': 1.24.0 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/core': 1.26.2 + '@shikijs/engine-javascript': 1.26.2 + '@shikijs/engine-oniguruma': 1.26.2 + '@shikijs/langs': 1.26.2 + '@shikijs/themes': 1.26.2 + '@shikijs/types': 1.26.2 + '@shikijs/vscode-textmate': 10.0.1 '@types/hast': 3.0.4 siginfo@2.0.0: {} @@ -17245,14 +16423,14 @@ snapshots: signal-exit@4.1.0: {} - simple-stack-form@0.1.12(astro@packages+astro)(zod@3.23.8): + simple-stack-form@0.1.12(astro@packages+astro)(zod@3.24.1): dependencies: '@clack/prompts': 0.7.0 astro: link:packages/astro fs-extra: 11.2.0 just-map-values: 3.2.0 kleur: 4.1.5 - zod: 3.23.8 + zod: 3.24.1 simple-swizzle@0.2.2: dependencies: @@ -17284,18 +16462,18 @@ snapshots: smartypants@0.2.2: {} - solid-js@1.9.3: + solid-js@1.9.4: dependencies: csstype: 3.1.3 seroval: 1.1.1 seroval-plugins: 1.1.1(seroval@1.1.1) - solid-refresh@0.6.3(solid-js@1.9.3): + solid-refresh@0.6.3(solid-js@1.9.4): dependencies: '@babel/generator': 7.26.0 '@babel/helper-module-imports': 7.25.9 '@babel/types': 7.26.0 - solid-js: 1.9.3 + solid-js: 1.9.4 transitivePeerDependencies: - supports-color @@ -17326,8 +16504,6 @@ snapshots: statuses@2.0.1: {} - std-env@3.7.0: {} - std-env@3.8.0: {} stream-replace-string@2.0.0: {} @@ -17416,30 +16592,14 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - svelte2tsx@0.7.22(svelte@5.6.2)(typescript@5.7.2): + svelte2tsx@0.7.34(svelte@5.17.3)(typescript@5.7.3): dependencies: dedent-js: 1.0.1 pascal-case: 3.1.2 - svelte: 5.6.2 - typescript: 5.7.2 + svelte: 5.17.3 + typescript: 5.7.3 - svelte@5.1.16: - dependencies: - '@ampproject/remapping': 2.3.0 - '@jridgewell/sourcemap-codec': 1.5.0 - '@types/estree': 1.0.6 - acorn: 8.14.0 - acorn-typescript: 1.4.13(acorn@8.14.0) - aria-query: 5.3.2 - axobject-query: 4.1.0 - esm-env: 1.1.4 - esrap: 1.2.2 - is-reference: 3.0.2 - locate-character: 3.0.0 - magic-string: 0.30.12 - zimmerframe: 1.1.2 - - svelte@5.6.2: + svelte@5.17.3: dependencies: '@ampproject/remapping': 2.3.0 '@jridgewell/sourcemap-codec': 1.5.0 @@ -17448,11 +16608,12 @@ snapshots: acorn-typescript: 1.4.13(acorn@8.14.0) aria-query: 5.3.2 axobject-query: 4.1.0 + clsx: 2.1.1 esm-env: 1.2.1 - esrap: 1.2.3 + esrap: 1.4.2 is-reference: 3.0.3 locate-character: 3.0.0 - magic-string: 0.30.14 + magic-string: 0.30.17 zimmerframe: 1.1.2 svg-tags@1.0.0: {} @@ -17465,47 +16626,18 @@ snapshots: css-tree: 2.3.1 css-what: 6.1.0 csso: 5.0.5 - picocolors: 1.1.0 + picocolors: 1.1.1 symbol-tree@3.2.4: {} - system-architecture@0.1.0: {} - - tailwindcss@3.4.14: + tailwindcss@3.4.17: dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 chokidar: 3.6.0 didyoumean: 1.2.2 dlv: 1.1.3 - fast-glob: 3.3.2 - glob-parent: 6.0.2 - is-glob: 4.0.3 - jiti: 1.21.6 - lilconfig: 2.1.0 - micromatch: 4.0.8 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.1.0 - postcss: 8.4.49 - postcss-import: 15.1.0(postcss@8.4.49) - postcss-js: 4.0.1(postcss@8.4.49) - postcss-load-config: 4.0.2(postcss@8.4.49) - postcss-nested: 6.0.1(postcss@8.4.49) - postcss-selector-parser: 6.1.2 - resolve: 1.22.8 - sucrase: 3.35.0 - transitivePeerDependencies: - - ts-node - - tailwindcss@3.4.16: - dependencies: - '@alloc/quick-lru': 5.2.0 - arg: 5.0.2 - chokidar: 3.6.0 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.3.2 + fast-glob: 3.3.3 glob-parent: 6.0.2 is-glob: 4.0.3 jiti: 1.21.6 @@ -17553,9 +16685,9 @@ snapshots: tinybench@2.9.0: {} - tinyexec@0.3.1: {} + tinyexec@0.3.2: {} - tinypool@1.0.1: {} + tinypool@1.0.2: {} tinyrainbow@1.2.0: {} @@ -17592,15 +16724,15 @@ snapshots: trough@2.2.0: {} - ts-api-utils@1.3.0(typescript@5.7.2): + ts-api-utils@2.0.0(typescript@5.7.3): dependencies: - typescript: 5.7.2 + typescript: 5.7.3 ts-interface-checker@0.1.13: {} - tsconfck@3.1.4(typescript@5.7.2): + tsconfck@3.1.4(typescript@5.7.3): optionalDependencies: - typescript: 5.7.2 + typescript: 5.7.3 tslib@2.1.0: {} @@ -17648,7 +16780,7 @@ snapshots: types-react-dom@19.0.0-alpha.3: dependencies: - '@types/react': 18.3.12 + '@types/react': 18.3.18 types-react@19.0.0-alpha.3: dependencies: @@ -17660,20 +16792,17 @@ snapshots: dependencies: semver: 7.6.3 - typescript-eslint@8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2): + typescript-eslint@8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2))(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2) - '@typescript-eslint/parser': 8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2) - '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@2.4.0))(typescript@5.7.2) - eslint: 9.16.0(jiti@2.4.0) - optionalDependencies: - typescript: 5.7.2 + '@typescript-eslint/eslint-plugin': 8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3))(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3) + '@typescript-eslint/parser': 8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3) + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.6))(typescript@5.7.3) + eslint: 9.18.0(jiti@1.21.6) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - typescript@5.6.3: {} - - typescript@5.7.2: {} + typescript@5.7.3: {} ufo@1.5.4: {} @@ -17687,6 +16816,8 @@ snapshots: undici@6.21.0: {} + undici@7.2.1: {} + unenv@1.10.0: dependencies: consola: 3.2.3 @@ -17791,32 +16922,24 @@ snapshots: universalify@2.0.1: {} - unstorage@1.13.1: + unstorage@1.14.4(@netlify/blobs@8.1.0): dependencies: anymatch: 3.1.3 chokidar: 3.6.0 - citty: 0.1.6 destr: 2.0.3 h3: 1.13.0 - listhen: 1.9.0 lru-cache: 10.4.3 node-fetch-native: 1.6.4 ofetch: 1.4.1 ufo: 1.5.4 - - untun@0.1.3: - dependencies: - citty: 0.1.6 - consola: 3.2.3 - pathe: 1.1.2 + optionalDependencies: + '@netlify/blobs': 8.1.0 update-browserslist-db@1.1.0(browserslist@4.24.0): dependencies: browserslist: 4.24.0 escalade: 3.2.0 - picocolors: 1.1.0 - - uqr@0.1.2: {} + picocolors: 1.1.1 uri-js@4.4.1: dependencies: @@ -17850,17 +16973,17 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite-hot-client@0.2.4(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)): + vite-hot-client@0.2.4(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)): dependencies: - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) - vite-node@2.1.6(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1): + vite-node@3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1): dependencies: cac: 6.7.14 - debug: 4.3.7 - es-module-lexer: 1.5.4 - pathe: 1.1.2 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + debug: 4.4.0 + es-module-lexer: 1.6.0 + pathe: 2.0.1 + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) transitivePeerDependencies: - '@types/node' - jiti @@ -17875,136 +16998,108 @@ snapshots: - tsx - yaml - vite-node@2.1.8(@types/node@18.19.50)(sass@1.82.0): - dependencies: - cac: 6.7.14 - debug: 4.3.7 - es-module-lexer: 1.5.4 - pathe: 1.1.2 - vite: 5.4.11(@types/node@18.19.50)(sass@1.82.0) - transitivePeerDependencies: - - '@types/node' - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - vite-plugin-inspect@0.8.8(rollup@4.28.0)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)): + vite-plugin-inspect@0.8.9(rollup@4.30.1)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)): dependencies: '@antfu/utils': 0.7.10 - '@rollup/pluginutils': 5.1.3(rollup@4.28.0) - debug: 4.3.7 + '@rollup/pluginutils': 5.1.4(rollup@4.30.1) + debug: 4.4.0 error-stack-parser-es: 0.1.5 fs-extra: 11.2.0 open: 10.1.0 perfect-debounce: 1.0.0 picocolors: 1.1.1 sirv: 3.0.0 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) transitivePeerDependencies: - rollup - supports-color - vite-plugin-solid@2.11.0(solid-js@1.9.3)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)): + vite-plugin-solid@2.11.0(solid-js@1.9.4)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)): dependencies: '@babel/core': 7.26.0 '@types/babel__core': 7.20.5 babel-preset-solid: 1.8.22(@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) - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) - vitefu: 1.0.4(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) + solid-js: 1.9.4 + solid-refresh: 0.6.3(solid-js@1.9.4) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) + vitefu: 1.0.5(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) transitivePeerDependencies: - supports-color - vite-plugin-vue-devtools@7.6.7(rollup@4.28.0)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.2)): + vite-plugin-vue-devtools@7.7.0(rollup@4.30.1)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.3)): dependencies: - '@vue/devtools-core': 7.6.7(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.2)) - '@vue/devtools-kit': 7.6.7 - '@vue/devtools-shared': 7.6.7 + '@vue/devtools-core': 7.7.0(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1))(vue@3.5.13(typescript@5.7.3)) + '@vue/devtools-kit': 7.7.0 + '@vue/devtools-shared': 7.7.0 execa: 9.5.2 sirv: 3.0.0 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) - vite-plugin-inspect: 0.8.8(rollup@4.28.0)(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) - vite-plugin-vue-inspector: 5.3.1(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) + vite-plugin-inspect: 0.8.9(rollup@4.30.1)(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) + vite-plugin-vue-inspector: 5.3.1(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) transitivePeerDependencies: - '@nuxt/kit' - rollup - supports-color - vue - vite-plugin-vue-inspector@5.3.1(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)): + vite-plugin-vue-inspector@5.3.1(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)): dependencies: '@babel/core': 7.26.0 '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.26.0) '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.26.0) '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0) - '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.26.0) + '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0) '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0) '@vue/compiler-dom': 3.5.13 kolorist: 1.8.0 - magic-string: 0.30.14 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + magic-string: 0.30.17 + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) transitivePeerDependencies: - supports-color - vite-svg-loader@5.1.0(vue@3.5.13(typescript@5.7.2)): + vite-svg-loader@5.1.0(vue@3.5.13(typescript@5.7.3)): dependencies: svgo: 3.3.2 - vue: 3.5.13(typescript@5.7.2) + vue: 3.5.13(typescript@5.7.3) - vite@5.4.11(@types/node@18.19.50)(sass@1.82.0): + vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1): dependencies: - esbuild: 0.21.5 + esbuild: 0.24.2 postcss: 8.4.49 - rollup: 4.28.0 + rollup: 4.30.1 optionalDependencies: '@types/node': 18.19.50 fsevents: 2.3.3 - sass: 1.82.0 - - vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1): - dependencies: - esbuild: 0.24.0 - postcss: 8.4.49 - rollup: 4.28.0 - optionalDependencies: - '@types/node': 18.19.50 - fsevents: 2.3.3 - jiti: 2.4.0 - sass: 1.82.0 + jiti: 1.21.6 + sass: 1.83.1 yaml: 2.5.1 - vitefu@1.0.4(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)): + vitefu@1.0.5(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)): optionalDependencies: - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) - vitest@2.1.6(@types/node@18.19.50)(jiti@2.4.0)(jsdom@23.2.0)(sass@1.82.0)(yaml@2.5.1): + vitest@3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(jsdom@23.2.0)(sass@1.83.1)(yaml@2.5.1): dependencies: - '@vitest/expect': 2.1.6 - '@vitest/mocker': 2.1.6(vite@6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1)) - '@vitest/pretty-format': 2.1.6 - '@vitest/runner': 2.1.6 - '@vitest/snapshot': 2.1.6 - '@vitest/spy': 2.1.6 - '@vitest/utils': 2.1.6 + '@vitest/expect': 3.0.0-beta.4 + '@vitest/mocker': 3.0.0-beta.4(vite@6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1)) + '@vitest/pretty-format': 3.0.0-beta.4 + '@vitest/runner': 3.0.0-beta.4 + '@vitest/snapshot': 3.0.0-beta.4 + '@vitest/spy': 3.0.0-beta.4 + '@vitest/utils': 3.0.0-beta.4 chai: 5.1.2 - debug: 4.3.7 + debug: 4.4.0 expect-type: 1.1.0 - magic-string: 0.30.12 - pathe: 1.1.2 + magic-string: 0.30.17 + pathe: 2.0.1 std-env: 3.8.0 tinybench: 2.9.0 - tinyexec: 0.3.1 - tinypool: 1.0.1 + tinyexec: 0.3.2 + tinypool: 1.0.2 tinyrainbow: 1.2.0 - vite: 6.0.1(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) - vite-node: 2.1.6(@types/node@18.19.50)(jiti@2.4.0)(sass@1.82.0)(yaml@2.5.1) + vite: 6.0.7(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) + vite-node: 3.0.0-beta.4(@types/node@18.19.50)(jiti@1.21.6)(sass@1.83.1)(yaml@2.5.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 18.19.50 @@ -18023,42 +17118,6 @@ snapshots: - tsx - yaml - vitest@2.1.8(@types/node@18.19.50)(jsdom@23.2.0)(sass@1.82.0): - dependencies: - '@vitest/expect': 2.1.8 - '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@18.19.50)(sass@1.82.0)) - '@vitest/pretty-format': 2.1.8 - '@vitest/runner': 2.1.8 - '@vitest/snapshot': 2.1.8 - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 - chai: 5.1.2 - debug: 4.3.7 - expect-type: 1.1.0 - magic-string: 0.30.14 - pathe: 1.1.2 - std-env: 3.8.0 - tinybench: 2.9.0 - tinyexec: 0.3.1 - tinypool: 1.0.1 - tinyrainbow: 1.2.0 - vite: 5.4.11(@types/node@18.19.50)(sass@1.82.0) - vite-node: 2.1.8(@types/node@18.19.50)(sass@1.82.0) - why-is-node-running: 2.3.0 - optionalDependencies: - '@types/node': 18.19.50 - jsdom: 23.2.0 - transitivePeerDependencies: - - less - - lightningcss - - msw - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - volar-service-css@0.0.61(@volar/language-service@2.4.6): dependencies: vscode-css-languageservice: 6.3.1 @@ -18175,25 +17234,15 @@ snapshots: vscode-uri@3.0.8: {} - vue@3.5.12(typescript@5.7.2): - dependencies: - '@vue/compiler-dom': 3.5.12 - '@vue/compiler-sfc': 3.5.12 - '@vue/runtime-dom': 3.5.12 - '@vue/server-renderer': 3.5.12(vue@3.5.12(typescript@5.7.2)) - '@vue/shared': 3.5.12 - optionalDependencies: - typescript: 5.7.2 - - vue@3.5.13(typescript@5.7.2): + vue@3.5.13(typescript@5.7.3): dependencies: '@vue/compiler-dom': 3.5.13 '@vue/compiler-sfc': 3.5.13 '@vue/runtime-dom': 3.5.13 - '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.7.2)) + '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.7.3)) '@vue/shared': 3.5.13 optionalDependencies: - typescript: 5.7.2 + typescript: 5.7.3 w3c-xmlserializer@5.0.0: dependencies: @@ -18266,8 +17315,6 @@ snapshots: string-width: 7.2.0 strip-ansi: 7.1.0 - wrappy@1.0.2: {} - ws@8.16.0: {} xml-name-validator@5.0.0: {} @@ -18326,7 +17373,7 @@ snapshots: yocto-queue@1.1.1: {} - yocto-spinner@0.1.0: + yocto-spinner@0.1.2: dependencies: yoctocolors: 2.1.1 @@ -18334,15 +17381,15 @@ snapshots: zimmerframe@1.1.2: {} - zod-to-json-schema@3.23.5(zod@3.23.8): + zod-to-json-schema@3.24.1(zod@3.24.1): dependencies: - zod: 3.23.8 + zod: 3.24.1 - zod-to-ts@1.2.0(typescript@5.7.2)(zod@3.23.8): + zod-to-ts@1.2.0(typescript@5.7.3)(zod@3.24.1): dependencies: - typescript: 5.7.2 - zod: 3.23.8 + typescript: 5.7.3 + zod: 3.24.1 - zod@3.23.8: {} + zod@3.24.1: {} zwitch@2.0.4: {} diff --git a/scripts/cmd/build.js b/scripts/cmd/build.js index d5a9336d85..2cc99b7d30 100644 --- a/scripts/cmd/build.js +++ b/scripts/cmd/build.js @@ -48,7 +48,6 @@ export default async function build(...args) { const noClean = args.includes('--no-clean-dist'); const bundle = args.includes('--bundle'); const forceCJS = args.includes('--force-cjs'); - const copyWASM = args.includes('--copy-wasm'); const { type = 'module', dependencies = {} } = await readPackageJSON('./package.json'); diff --git a/scripts/package.json b/scripts/package.json index 37e10654d3..0071119c84 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -8,12 +8,12 @@ "astro-scripts": "./index.js" }, "dependencies": { - "esbuild": "^0.21.5", + "esbuild": "^0.24.2", "esbuild-plugin-copy": "^2.1.1", - "fast-glob": "^3.3.2", + "fast-glob": "^3.3.3", "kleur": "^4.1.5", - "p-limit": "^6.1.0", - "tinyexec": "^0.3.1", + "p-limit": "^6.2.0", + "tinyexec": "^0.3.2", "tsconfck": "^3.1.4" } }