diff --git a/.changeset/hungry-trains-sip.md b/.changeset/hungry-trains-sip.md deleted file mode 100644 index c33e27dc2593..000000000000 --- a/.changeset/hungry-trains-sip.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -'astro': minor ---- - -Adds an experimental flag `rawEnvValues` to disable coercion of `import.meta.env` values (e.g. converting strings to other data types) that are populated from `process.env` - -Astro allows you to configure a [type-safe schema for your environment variables](https://docs.astro.build/en/guides/environment-variables/#type-safe-environment-variables), and converts variables imported via `astro:env` into the expected type. - -However, Astro also converts your environment variables used through `import.meta.env` in some cases, and this can prevent access to some values such as the strings `"true"` (which is converted to a boolean value), and `"1"` (which is converted to a number). - -The `experimental.rawEnvValues` flag disables coercion of `import.meta.env` values that are populated from `process.env`, allowing you to use the raw value. - -To enable this feature, add the experimental flag in your Astro config: - -```diff -import { defineConfig } from "astro/config" - -export default defineConfig({ -+ experimental: { -+ rawEnvValues: true, -+ } -}) -``` - -If you were relying on this coercion, you may need to update your project code to apply it manually: - -```ts diff -- const enabled: boolean = import.meta.env.ENABLED -+ const enabled: boolean = import.meta.env.ENABLED === "true" -``` - -See the [experimental raw environment variables reference docs](https://docs.astro.build/en/reference/experimental-flags/raw-env-values/) for more information. diff --git a/.changeset/icy-keys-tickle.md b/.changeset/icy-keys-tickle.md deleted file mode 100644 index 61bfa33cd4b9..000000000000 --- a/.changeset/icy-keys-tickle.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -'astro': minor -'@astrojs/markdown-remark': patch ---- - -Adds support for TOML files to Astro's built-in `glob()` and `file()` content loaders. - -In Astro 5.2, Astro added support for using TOML frontmatter in Markdown files instead of YAML. However, if you wanted to use TOML files as local content collection entries themselves, you needed to write your own loader. - -Astro 5.12 now directly supports loading data from TOML files in content collections in both the `glob()` and the `file()` loaders. - -If you had added your own TOML content parser for the `file()` loader, you can now remove it as this functionality is now included: - -```diff -// src/content.config.ts -import { defineCollection } from "astro:content"; -import { file } from "astro/loaders"; -- import { parse as parseToml } from "toml"; -const dogs = defineCollection({ -- loader: file("src/data/dogs.toml", { parser: (text) => parseToml(text) }), -+ loader: file("src/data/dogs.toml") - schema: /* ... */ -}) -``` - -Note that TOML does not support top-level arrays. Instead, the `file()` loader considers each top-level table to be an independent entry. The table header is populated in the `id` field of the entry object. - -See Astro's [content collections guide](https://docs.astro.build/en/guides/content-collections/#built-in-loaders) for more information on using the built-in content loaders. \ No newline at end of file diff --git a/examples/basics/package.json b/examples/basics/package.json index c8ded752114b..944a93014305 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.11.2" + "astro": "^5.12.0" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 569c265efb6f..4fa5bb6b9306 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.3.0", + "@astrojs/mdx": "^4.3.1", "@astrojs/rss": "^4.0.12", "@astrojs/sitemap": "^3.4.1", - "astro": "^5.11.2", + "astro": "^5.12.0", "sharp": "^0.34.2" } } diff --git a/examples/component/package.json b/examples/component/package.json index 4a99050b8ead..e831b03e08ae 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.11.2" + "astro": "^5.12.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 799c309f1c74..1f9bd1eb5188 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.11.2", + "astro": "^5.12.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 87018f3ea780..f5b244b1dee3 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.11.2" + "astro": "^5.12.0" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 61355268c85c..7d5c5f3ef009 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.11.2", + "astro": "^5.12.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 9b69593b8ef8..e3f90eed57ff 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.11.2", + "astro": "^5.12.0", "preact": "^10.26.5" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 6276240c12e7..ef23197f0355 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.11.2", + "astro": "^5.12.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 1d4c60fb0854..9b23e490dd8c 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.11.2", + "astro": "^5.12.0", "solid-js": "^1.9.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 99d801d2b02c..2385102fb4fd 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.11.2", + "astro": "^5.12.0", "svelte": "^5.25.7" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 9d26c7861d59..31bbcd48dab9 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.11.2", + "astro": "^5.12.0", "vue": "^3.5.13" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 424f9cea2859..23876f3d2f4a 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.3.0", - "astro": "^5.11.2" + "astro": "^5.12.0" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 89ca2ac2cc28..3a5f6fea261a 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.11.2" + "astro": "^5.12.0" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 420725535fdc..a40459e3ed49 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.11.2" + "astro": "^5.12.0" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 1ca0fb732929..04a0e0e278cc 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.11.2" + "astro": "^5.12.0" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 3df9a50d8077..df069bad58ba 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/node": "^9.3.0", "@astrojs/svelte": "^7.1.0", - "astro": "^5.11.2", + "astro": "^5.12.0", "svelte": "^5.25.7" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index dbd09773b337..ba1bba923cf1 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.11.2", + "astro": "^5.12.0", "sass": "^1.86.3", "sharp": "^0.33.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 602a64f6c124..778d8a8cd871 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.11.2" + "astro": "^5.12.0" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 183d9d209330..15d5977f418d 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.15.0", - "astro": "^5.11.2" + "@astrojs/markdoc": "^0.15.1", + "astro": "^5.12.0" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index ee2510e36e8d..e31be9f19fb1 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.3.0", + "@astrojs/mdx": "^4.3.1", "@astrojs/preact": "^4.1.0", - "astro": "^5.11.2", + "astro": "^5.12.0", "preact": "^10.26.5" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index f586fa10ecdc..5138cc89eff6 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.11.2", + "astro": "^5.12.0", "nanostores": "^0.11.4", "preact": "^10.26.5" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 83fabcb6b1f6..4cd6cebb9896 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,10 +10,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^4.3.0", + "@astrojs/mdx": "^4.3.1", "@tailwindcss/vite": "^4.1.3", "@types/canvas-confetti": "^1.9.0", - "astro": "^5.11.2", + "astro": "^5.12.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 eb240bd61bab..41c99d20f317 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.11.2", + "astro": "^5.12.0", "vitest": "^3.1.1" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 1dd0294960a8..cadffe137542 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,67 @@ # astro +## 5.12.0 + +### Minor Changes + +- [#13971](https://github.com/withastro/astro/pull/13971) [`fe35ee2`](https://github.com/withastro/astro/commit/fe35ee2835997e7e6c3e1975dc6dacfa1052a765) Thanks [@adamhl8](https://github.com/adamhl8)! - Adds an experimental flag `rawEnvValues` to disable coercion of `import.meta.env` values (e.g. converting strings to other data types) that are populated from `process.env` + + Astro allows you to configure a [type-safe schema for your environment variables](https://docs.astro.build/en/guides/environment-variables/#type-safe-environment-variables), and converts variables imported via `astro:env` into the expected type. + + However, Astro also converts your environment variables used through `import.meta.env` in some cases, and this can prevent access to some values such as the strings `"true"` (which is converted to a boolean value), and `"1"` (which is converted to a number). + + The `experimental.rawEnvValues` flag disables coercion of `import.meta.env` values that are populated from `process.env`, allowing you to use the raw value. + + To enable this feature, add the experimental flag in your Astro config: + + ```diff + import { defineConfig } from "astro/config" + + export default defineConfig({ + + experimental: { + + rawEnvValues: true, + + } + }) + ``` + + If you were relying on this coercion, you may need to update your project code to apply it manually: + + ```ts diff + - const enabled: boolean = import.meta.env.ENABLED + + const enabled: boolean = import.meta.env.ENABLED === "true" + ``` + + See the [experimental raw environment variables reference docs](https://docs.astro.build/en/reference/experimental-flags/raw-env-values/) for more information. + +- [#13941](https://github.com/withastro/astro/pull/13941) [`6bd5f75`](https://github.com/withastro/astro/commit/6bd5f75806cb4df39d9e4e9b1f2225dcfdd724b0) Thanks [@aditsachde](https://github.com/aditsachde)! - Adds support for TOML files to Astro's built-in `glob()` and `file()` content loaders. + + In Astro 5.2, Astro added support for using TOML frontmatter in Markdown files instead of YAML. However, if you wanted to use TOML files as local content collection entries themselves, you needed to write your own loader. + + Astro 5.12 now directly supports loading data from TOML files in content collections in both the `glob()` and the `file()` loaders. + + If you had added your own TOML content parser for the `file()` loader, you can now remove it as this functionality is now included: + + ```diff + // src/content.config.ts + import { defineCollection } from "astro:content"; + import { file } from "astro/loaders"; + - import { parse as parseToml } from "toml"; + const dogs = defineCollection({ + - loader: file("src/data/dogs.toml", { parser: (text) => parseToml(text) }), + + loader: file("src/data/dogs.toml") + schema: /* ... */ + }) + ``` + + Note that TOML does not support top-level arrays. Instead, the `file()` loader considers each top-level table to be an independent entry. The table header is populated in the `id` field of the entry object. + + See Astro's [content collections guide](https://docs.astro.build/en/guides/content-collections/#built-in-loaders) for more information on using the built-in content loaders. + +### Patch Changes + +- Updated dependencies [[`6bd5f75`](https://github.com/withastro/astro/commit/6bd5f75806cb4df39d9e4e9b1f2225dcfdd724b0)]: + - @astrojs/markdown-remark@6.3.3 + ## 5.11.2 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 0301eb47deb7..3a43cafa3179 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "5.11.2", + "version": "5.12.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/integrations/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md index b00a81542515..c1b32bf07bfb 100644 --- a/packages/integrations/markdoc/CHANGELOG.md +++ b/packages/integrations/markdoc/CHANGELOG.md @@ -1,5 +1,12 @@ # @astrojs/markdoc +## 0.15.1 + +### Patch Changes + +- Updated dependencies [[`6bd5f75`](https://github.com/withastro/astro/commit/6bd5f75806cb4df39d9e4e9b1f2225dcfdd724b0)]: + - @astrojs/markdown-remark@6.3.3 + ## 0.15.0 ### Minor Changes diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json index 3e4ad91e5c2f..86ed850c392c 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.15.0", + "version": "0.15.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md index 8dde66a4615e..27e6c5671146 100644 --- a/packages/integrations/mdx/CHANGELOG.md +++ b/packages/integrations/mdx/CHANGELOG.md @@ -1,5 +1,12 @@ # @astrojs/mdx +## 4.3.1 + +### Patch Changes + +- Updated dependencies [[`6bd5f75`](https://github.com/withastro/astro/commit/6bd5f75806cb4df39d9e4e9b1f2225dcfdd724b0)]: + - @astrojs/markdown-remark@6.3.3 + ## 4.3.0 ### Minor Changes diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json index 6957bf8d1b64..fac3c02ec13f 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.3.0", + "version": "4.3.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md index 4d1898ae76af..93982c7262d7 100644 --- a/packages/markdown/remark/CHANGELOG.md +++ b/packages/markdown/remark/CHANGELOG.md @@ -1,5 +1,33 @@ # @astrojs/markdown-remark +## 6.3.3 + +### Patch Changes + +- [#13941](https://github.com/withastro/astro/pull/13941) [`6bd5f75`](https://github.com/withastro/astro/commit/6bd5f75806cb4df39d9e4e9b1f2225dcfdd724b0) Thanks [@aditsachde](https://github.com/aditsachde)! - Adds support for TOML files to Astro's built-in `glob()` and `file()` content loaders. + + In Astro 5.2, Astro added support for using TOML frontmatter in Markdown files instead of YAML. However, if you wanted to use TOML files as local content collection entries themselves, you needed to write your own loader. + + Astro 5.12 now directly supports loading data from TOML files in content collections in both the `glob()` and the `file()` loaders. + + If you had added your own TOML content parser for the `file()` loader, you can now remove it as this functionality is now included: + + ```diff + // src/content.config.ts + import { defineCollection } from "astro:content"; + import { file } from "astro/loaders"; + - import { parse as parseToml } from "toml"; + const dogs = defineCollection({ + - loader: file("src/data/dogs.toml", { parser: (text) => parseToml(text) }), + + loader: file("src/data/dogs.toml") + schema: /* ... */ + }) + ``` + + Note that TOML does not support top-level arrays. Instead, the `file()` loader considers each top-level table to be an independent entry. The table header is populated in the `id` field of the entry object. + + See Astro's [content collections guide](https://docs.astro.build/en/guides/content-collections/#built-in-loaders) for more information on using the built-in content loaders. + ## 6.3.2 ### Patch Changes diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json index 6026fcf04162..568c83061056 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-remark", - "version": "6.3.2", + "version": "6.3.3", "type": "module", "author": "withastro", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7b7f907b4a06..19694d08252f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -145,13 +145,13 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro examples/blog: dependencies: '@astrojs/mdx': - specifier: ^4.3.0 + specifier: ^4.3.1 version: link:../../packages/integrations/mdx '@astrojs/rss': specifier: ^4.0.12 @@ -160,7 +160,7 @@ importers: specifier: ^3.4.1 version: link:../../packages/integrations/sitemap astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro sharp: specifier: ^0.34.2 @@ -169,7 +169,7 @@ importers: examples/component: devDependencies: astro: - specifier: ^5.11.2 + specifier: ^5.12.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.11.2 + specifier: ^5.12.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.11.2 + specifier: ^5.12.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.11.2 + specifier: ^5.12.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.9) astro: - specifier: ^5.11.2 + specifier: ^5.12.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.11.2 + specifier: ^5.12.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.11.2 + specifier: ^5.12.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.11.2 + specifier: ^5.12.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.11.2 + specifier: ^5.12.0 version: link:../../packages/astro vue: specifier: ^3.5.13 @@ -335,25 +335,25 @@ importers: specifier: ^9.3.0 version: link:../../packages/integrations/node astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro examples/ssr: @@ -365,7 +365,7 @@ importers: specifier: ^7.1.0 version: link:../../packages/integrations/svelte astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro svelte: specifier: ^5.25.7 @@ -374,7 +374,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro sass: specifier: ^1.86.3 @@ -389,28 +389,28 @@ importers: specifier: ^18.17.8 version: 18.19.50 astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro examples/with-markdoc: dependencies: '@astrojs/markdoc': - specifier: ^0.15.0 + specifier: ^0.15.1 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro examples/with-mdx: dependencies: '@astrojs/mdx': - specifier: ^4.3.0 + specifier: ^4.3.1 version: link:../../packages/integrations/mdx '@astrojs/preact': specifier: ^4.1.0 version: link:../../packages/integrations/preact astro: - specifier: ^5.11.2 + specifier: ^5.12.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.9) astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro nanostores: specifier: ^0.11.4 @@ -437,7 +437,7 @@ importers: examples/with-tailwindcss: dependencies: '@astrojs/mdx': - specifier: ^4.3.0 + specifier: ^4.3.1 version: link:../../packages/integrations/mdx '@tailwindcss/vite': specifier: ^4.1.3 @@ -446,7 +446,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.3 @@ -458,7 +458,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^5.11.2 + specifier: ^5.12.0 version: link:../../packages/astro vitest: specifier: ^3.1.1