diff options
author | 2025-06-06 07:25:57 +0100 | |
---|---|---|
committer | 2025-06-06 07:25:57 +0100 | |
commit | 3f5869bcdcae3834f6440d5996a4b447b39f3840 (patch) | |
tree | 88de060ccd601466a8785ea0880d7cef82426e27 | |
parent | 3d7dd7dd913dc82529e001a8fc1ea5756a78d14f (diff) | |
parent | a8e1c0a7402940e0fc5beef669522b315052df1b (diff) | |
download | astro-live-loaders.tar.gz astro-live-loaders.tar.zst astro-live-loaders.zip |
Merge branch 'main' into live-loaderslive-loaders
34 files changed, 156 insertions, 173 deletions
diff --git a/.changeset/crazy-doors-buy.md b/.changeset/crazy-doors-buy.md deleted file mode 100644 index 0e6c66ede..000000000 --- a/.changeset/crazy-doors-buy.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -'astro': minor ---- - -Adds experimental Content Security Policy (CSP) support - -CSP is an important feature to provide fine-grained control over resources that can or cannot be downloaded and executed by a document. In particular, it can help protect against [cross-site scripting (XSS)](https://developer.mozilla.org/en-US/docs/Glossary/Cross-site_scripting) attacks. - -Enabling this feature adds additional security to Astro's handling of processed and bundled scripts and styles by default, and allows you to further configure these, and additional, content types. This new experimental feature has been designed to work in every Astro rendering environment (static pages, dynamic pages and single page applications), while giving you maximum flexibility and with type-safety in mind. - -It is compatible with most of Astro's features such as client islands, and server islands, although Astro's view transitions using the `<ClientRouter />` are not yet fully supported. Inline scripts are not supported out of the box, but you can provide your own hashes for external and inline scripts. - -To enable this feature, add the experimental flag in your Astro config: - -```js -// astro.config.mjs -import { defineConfig } from "astro/config" - -export default defineConfig({ - experimental: { - csp: true - } -}) -``` - -For more information on enabling and using this feature in your project, see the [Experimental CSP docs](https://docs.astro.build/en/reference/experimental-flags/csp/). - -For a complete overview, and to give feedback on this experimental API, see the [Content Security Policy RFC](https://github.com/withastro/roadmap/blob/feat/rfc-csp/proposals/0055-csp.md). diff --git a/.changeset/dark-bees-stand.md b/.changeset/dark-bees-stand.md deleted file mode 100644 index a3b788605..000000000 --- a/.changeset/dark-bees-stand.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -'astro': minor ---- - -Provides a Markdown renderer to content loaders - -When creating a content loader, you will now have access to a `renderMarkdown` function that allows you to render Markdown content directly within your loaders. It uses the same settings and plugins as the renderer used for Markdown files in Astro, and follows any Markdown settings you have configured in your Astro project. - -This allows you to render Markdown content from various sources, such as a CMS or other data sources, directly in your loaders without needing to preprocess the Markdown content separately. - -```ts -import type { Loader } from 'astro/loaders'; -import { loadFromCMS } from './cms'; - -export function myLoader(settings): Loader { - return { - name: 'my-loader', - async load({ renderMarkdown, store }) { - const entries = await loadFromCMS(); - - store.clear(); - - for (const entry of entries) { - // Assume each entry has a 'content' field with markdown content - store.set(entry.id, { - id: entry.id, - data: entry, - rendered: await renderMarkdown(entry.content), - }); - } - }, - }; -} -``` - -The return value of `renderMarkdown` is an object with two properties: `html` and `metadata`. These match the `rendered` property of content entries in content collections, so you can use them to render the content in your components or pages. - -```astro ---- -import { getEntry, render } from 'astro:content'; -const entry = await getEntry('my-collection', Astro.params.id); -const { Content } = await render(entry); ---- -<Content /> -``` - -For more information, see the [Content Loader API docs](https://docs.astro.build/en/reference/content-loader-reference/#rendermarkdown). diff --git a/.changeset/dull-beers-move.md b/.changeset/dull-beers-move.md deleted file mode 100644 index 5c5679bdc..000000000 --- a/.changeset/dull-beers-move.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -"astro": minor ---- - -Adds an option for integration authors to suppress adapter warning/errors in `supportedAstroFeatures`. This is useful when either an warning/error isn't applicable in a specific context or the default one might conflict and confuse users. - -To do so, you can add `suppress: "all"` (to suppress both the default and custom message) or `suppress: "default"` (to only suppress the default one): -```ts -setAdapter({ - name: 'my-astro-integration', - supportedAstroFeatures: { - staticOutput: "stable", - hybridOutput: "stable", - sharpImageService: { - support: "limited", - message: "The sharp image service isn't available in the deploy environment, but will be used by prerendered pages on build.", - suppress: "default", - }, - } -}) -``` - -For more information, see the [Adapter API reference docs](https://docs.astro.build/en/reference/adapter-reference/#astro-features). diff --git a/.changeset/fast-planets-shout.md b/.changeset/fast-planets-shout.md deleted file mode 100644 index 65216f7c9..000000000 --- a/.changeset/fast-planets-shout.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@astrojs/cloudflare": patch ---- - -Clarifies and reduces a few logs when starting the dev server with `@astrojs/cloudflare`. - -Warnings about sharp support will now be suppressed when you have explicitly set an `imageService` option. diff --git a/examples/basics/package.json b/examples/basics/package.json index 506c5965f..072a4e0fe 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.8.2" + "astro": "^5.9.0" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 1440e72ed..0d974a4c2 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -13,7 +13,7 @@ "@astrojs/mdx": "^4.3.0", "@astrojs/rss": "^4.0.12", "@astrojs/sitemap": "^3.4.1", - "astro": "^5.8.2", + "astro": "^5.9.0", "sharp": "^0.34.2" } } diff --git a/examples/component/package.json b/examples/component/package.json index aed0199aa..73c41e159 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.8.2" + "astro": "^5.9.0" }, "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 69e44adb8..473e3f11b 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/react": "^4.3.0", - "astro": "^5.8.2", + "astro": "^5.9.0", "react": "^18.3.1", "react-dom": "^18.3.1", "vitest": "^3.1.1" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index cf2c933e1..6b57ab0ab 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -13,6 +13,6 @@ "@astrojs/alpinejs": "^0.4.8", "@types/alpinejs": "^3.13.11", "alpinejs": "^3.14.9", - "astro": "^5.8.2" + "astro": "^5.9.0" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 5876242ba..38c9b084c 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -17,7 +17,7 @@ "@astrojs/vue": "^5.1.0", "@types/react": "^18.3.20", "@types/react-dom": "^18.3.6", - "astro": "^5.8.2", + "astro": "^5.9.0", "preact": "^10.26.5", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 81ed13d24..4b081ed66 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -12,7 +12,7 @@ "dependencies": { "@astrojs/preact": "^4.1.0", "@preact/signals": "^2.0.3", - "astro": "^5.8.2", + "astro": "^5.9.0", "preact": "^10.26.5" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index bd22778ec..e4df1335f 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -13,7 +13,7 @@ "@astrojs/react": "^4.3.0", "@types/react": "^18.3.20", "@types/react-dom": "^18.3.6", - "astro": "^5.8.2", + "astro": "^5.9.0", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index a15c64c40..da35aa2b0 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/solid-js": "^5.1.0", - "astro": "^5.8.2", + "astro": "^5.9.0", "solid-js": "^1.9.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 9cd3a9304..841a6825f 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/svelte": "^7.1.0", - "astro": "^5.8.2", + "astro": "^5.9.0", "svelte": "^5.25.7" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 5de9656cd..714ab5405 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/vue": "^5.1.0", - "astro": "^5.8.2", + "astro": "^5.9.0", "vue": "^3.5.13" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 918cab396..bbf102312 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.2.2", - "astro": "^5.8.2" + "astro": "^5.9.0" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 0af321490..e6a3866fb 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.8.2" + "astro": "^5.9.0" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 18d524d60..eaf6c2f11 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.8.2" + "astro": "^5.9.0" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 6022bfdbd..926d2cc16 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.8.2" + "astro": "^5.9.0" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 9637c908e..1989e6193 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/node": "^9.2.2", "@astrojs/svelte": "^7.1.0", - "astro": "^5.8.2", + "astro": "^5.9.0", "svelte": "^5.25.7" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index 6fa5d1e51..51561ab3e 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.8.2", + "astro": "^5.9.0", "sass": "^1.86.3", "sharp": "^0.33.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 15b787a47..56c232081 100644 --- a/examples/toolbar-app/package.json +++ b/examples/toolbar-app/package.json @@ -16,6 +16,6 @@ }, "devDependencies": { "@types/node": "^18.17.8", - "astro": "^5.8.2" + "astro": "^5.9.0" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 00b7b76a9..f9be2cf9a 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/markdoc": "^0.15.0", - "astro": "^5.8.2" + "astro": "^5.9.0" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index cd31f5ec4..1eab43093 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -12,7 +12,7 @@ "dependencies": { "@astrojs/mdx": "^4.3.0", "@astrojs/preact": "^4.1.0", - "astro": "^5.8.2", + "astro": "^5.9.0", "preact": "^10.26.5" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 090447520..cb7cab954 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -12,7 +12,7 @@ "dependencies": { "@astrojs/preact": "^4.1.0", "@nanostores/preact": "^0.5.2", - "astro": "^5.8.2", + "astro": "^5.9.0", "nanostores": "^0.11.4", "preact": "^10.26.5" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 0b728902d..4e86ff23e 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -13,7 +13,7 @@ "@astrojs/mdx": "^4.3.0", "@tailwindcss/vite": "^4.1.3", "@types/canvas-confetti": "^1.9.0", - "astro": "^5.8.2", + "astro": "^5.9.0", "canvas-confetti": "^1.9.3", "tailwindcss": "^4.1.3" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index b0eeebf1f..ff7a90261 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.8.2", + "astro": "^5.9.0", "vitest": "^3.1.1" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index a69a1068f..8d2811d11 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,101 @@ # astro +## 5.9.0 + +### Minor Changes + +- [#13802](https://github.com/withastro/astro/pull/13802) [`0eafe14`](https://github.com/withastro/astro/commit/0eafe14b08c627b116842ea0a5299a00f9baa3d1) Thanks [@ematipico](https://github.com/ematipico)! - Adds experimental Content Security Policy (CSP) support + + CSP is an important feature to provide fine-grained control over resources that can or cannot be downloaded and executed by a document. In particular, it can help protect against [cross-site scripting (XSS)](https://developer.mozilla.org/en-US/docs/Glossary/Cross-site_scripting) attacks. + + Enabling this feature adds additional security to Astro's handling of processed and bundled scripts and styles by default, and allows you to further configure these, and additional, content types. This new experimental feature has been designed to work in every Astro rendering environment (static pages, dynamic pages and single page applications), while giving you maximum flexibility and with type-safety in mind. + + It is compatible with most of Astro's features such as client islands, and server islands, although Astro's view transitions using the `<ClientRouter />` are not yet fully supported. Inline scripts are not supported out of the box, but you can provide your own hashes for external and inline scripts. + + To enable this feature, add the experimental flag in your Astro config: + + ```js + // astro.config.mjs + import { defineConfig } from 'astro/config'; + + export default defineConfig({ + experimental: { + csp: true, + }, + }); + ``` + + For more information on enabling and using this feature in your project, see the [Experimental CSP docs](https://docs.astro.build/en/reference/experimental-flags/csp/). + + For a complete overview, and to give feedback on this experimental API, see the [Content Security Policy RFC](https://github.com/withastro/roadmap/blob/feat/rfc-csp/proposals/0055-csp.md). + +- [#13850](https://github.com/withastro/astro/pull/13850) [`1766d22`](https://github.com/withastro/astro/commit/1766d222e7bb4adb6d15090e2d6331a0d8978303) Thanks [@ascorbic](https://github.com/ascorbic)! - Provides a Markdown renderer to content loaders + + When creating a content loader, you will now have access to a `renderMarkdown` function that allows you to render Markdown content directly within your loaders. It uses the same settings and plugins as the renderer used for Markdown files in Astro, and follows any Markdown settings you have configured in your Astro project. + + This allows you to render Markdown content from various sources, such as a CMS or other data sources, directly in your loaders without needing to preprocess the Markdown content separately. + + ```ts + import type { Loader } from 'astro/loaders'; + import { loadFromCMS } from './cms'; + + export function myLoader(settings): Loader { + return { + name: 'my-loader', + async load({ renderMarkdown, store }) { + const entries = await loadFromCMS(); + + store.clear(); + + for (const entry of entries) { + // Assume each entry has a 'content' field with markdown content + store.set(entry.id, { + id: entry.id, + data: entry, + rendered: await renderMarkdown(entry.content), + }); + } + }, + }; + } + ``` + + The return value of `renderMarkdown` is an object with two properties: `html` and `metadata`. These match the `rendered` property of content entries in content collections, so you can use them to render the content in your components or pages. + + ```astro + --- + import { getEntry, render } from 'astro:content'; + const entry = await getEntry('my-collection', Astro.params.id); + const { Content } = await render(entry); + --- + + <Content /> + ``` + + For more information, see the [Content Loader API docs](https://docs.astro.build/en/reference/content-loader-reference/#rendermarkdown). + +- [#13887](https://github.com/withastro/astro/pull/13887) [`62f0668`](https://github.com/withastro/astro/commit/62f0668aa1e066c1c07ee0e774192def4cac43c4) Thanks [@yanthomasdev](https://github.com/yanthomasdev)! - Adds an option for integration authors to suppress adapter warning/errors in `supportedAstroFeatures`. This is useful when either an warning/error isn't applicable in a specific context or the default one might conflict and confuse users. + + To do so, you can add `suppress: "all"` (to suppress both the default and custom message) or `suppress: "default"` (to only suppress the default one): + + ```ts + setAdapter({ + name: 'my-astro-integration', + supportedAstroFeatures: { + staticOutput: 'stable', + hybridOutput: 'stable', + sharpImageService: { + support: 'limited', + message: + "The sharp image service isn't available in the deploy environment, but will be used by prerendered pages on build.", + suppress: 'default', + }, + }, + }); + ``` + + For more information, see the [Adapter API reference docs](https://docs.astro.build/en/reference/adapter-reference/#astro-features). + ## 5.8.2 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 4ea60acf7..112566f9b 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "5.8.2", + "version": "5.9.0", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", diff --git a/packages/astro/src/core/config/merge.ts b/packages/astro/src/core/config/merge.ts index 1414f82f3..2344b0f8e 100644 --- a/packages/astro/src/core/config/merge.ts +++ b/packages/astro/src/core/config/merge.ts @@ -15,7 +15,7 @@ function mergeConfigRecursively( continue; } - let existing = merged[key]; + const existing = merged[key]; if (existing == null) { merged[key] = value; @@ -45,14 +45,6 @@ function mergeConfigRecursively( continue; } - if (key === 'data' && rootPath === 'db') { - // db.data can be a function or an array of functions. When - // merging, make sure they become an array - if (!Array.isArray(existing) && !Array.isArray(value)) { - existing = [existing]; - } - } - if (Array.isArray(existing) || Array.isArray(value)) { merged[key] = [...arraify(existing ?? []), ...arraify(value ?? [])]; continue; diff --git a/packages/astro/src/types/public/config.ts b/packages/astro/src/types/public/config.ts index ebe0ab4c7..284ad9188 100644 --- a/packages/astro/src/types/public/config.ts +++ b/packages/astro/src/types/public/config.ts @@ -1858,9 +1858,6 @@ export interface ViteUserConfig extends OriginalViteUserConfig { : Partial<Record<NormalizeLocales<NoInfer<TLocales>>, string>>; }; - /** ! WARNING: SUBJECT TO CHANGE */ - db?: Config.Database; - /** * @docs * @kind heading @@ -2598,11 +2595,3 @@ export interface AstroInlineOnlyConfig { */ logger?: Logger; } - -// HACK! astro:db augment this type that is used in the config -declare global { - // eslint-disable-next-line @typescript-eslint/no-namespace - namespace Config { - type Database = Record<string, any>; - } -} diff --git a/packages/integrations/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md index 859b062be..c03fc4445 100644 --- a/packages/integrations/cloudflare/CHANGELOG.md +++ b/packages/integrations/cloudflare/CHANGELOG.md @@ -1,5 +1,16 @@ # @astrojs/cloudflare +## 12.5.4 + +### Patch Changes + +- [#13817](https://github.com/withastro/astro/pull/13817) [`b7258f1`](https://github.com/withastro/astro/commit/b7258f1243189218604346f5e0301dbdd363a57f) Thanks [@yanthomasdev](https://github.com/yanthomasdev)! - Clarifies and reduces a few logs when starting the dev server with `@astrojs/cloudflare`. + + Warnings about sharp support will now be suppressed when you have explicitly set an `imageService` option. + +- Updated dependencies []: + - @astrojs/underscore-redirects@0.6.1 + ## 12.5.3 ### Patch Changes diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json index 4ca2b8bc0..a09516fd5 100644 --- a/packages/integrations/cloudflare/package.json +++ b/packages/integrations/cloudflare/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/cloudflare", "description": "Deploy your site to Cloudflare Workers/Pages", - "version": "12.5.3", + "version": "12.5.4", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8491b4f5d..1f614ef1d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -145,7 +145,7 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro examples/blog: @@ -160,7 +160,7 @@ importers: specifier: ^3.4.1 version: link:../../packages/integrations/sitemap astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro sharp: specifier: ^0.34.2 @@ -169,7 +169,7 @@ importers: examples/component: devDependencies: astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro examples/container-with-vitest: @@ -178,7 +178,7 @@ importers: specifier: ^4.3.0 version: link:../../packages/integrations/react astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -209,7 +209,7 @@ importers: specifier: ^3.14.9 version: 3.14.9 astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro examples/framework-multiple: @@ -236,7 +236,7 @@ importers: specifier: ^18.3.6 version: 18.3.7(@types/react@18.3.23) astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -266,7 +266,7 @@ importers: specifier: ^2.0.3 version: 2.2.0(preact@10.26.8) astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -284,7 +284,7 @@ importers: specifier: ^18.3.6 version: 18.3.7(@types/react@18.3.23) astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -299,7 +299,7 @@ importers: specifier: ^5.1.0 version: link:../../packages/integrations/solid astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro solid-js: specifier: ^1.9.5 @@ -311,7 +311,7 @@ importers: specifier: ^7.1.0 version: link:../../packages/integrations/svelte astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro svelte: specifier: ^5.25.7 @@ -323,7 +323,7 @@ importers: specifier: ^5.1.0 version: link:../../packages/integrations/vue astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro vue: specifier: ^3.5.13 @@ -335,25 +335,25 @@ importers: specifier: ^9.2.2 version: link:../../packages/integrations/node astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro examples/ssr: @@ -365,7 +365,7 @@ importers: specifier: ^7.1.0 version: link:../../packages/integrations/svelte astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro svelte: specifier: ^5.25.7 @@ -374,7 +374,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro sass: specifier: ^1.86.3 @@ -389,7 +389,7 @@ importers: specifier: ^18.17.8 version: 18.19.50 astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro examples/with-markdoc: @@ -398,7 +398,7 @@ importers: specifier: ^0.15.0 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro examples/with-mdx: @@ -410,7 +410,7 @@ importers: specifier: ^4.1.0 version: link:../../packages/integrations/preact astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -425,7 +425,7 @@ importers: specifier: ^0.5.2 version: 0.5.2(nanostores@0.11.4)(preact@10.26.8) astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro nanostores: specifier: ^0.11.4 @@ -446,7 +446,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.3 @@ -458,7 +458,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^5.8.2 + specifier: ^5.9.0 version: link:../../packages/astro vitest: specifier: ^3.1.1 |