summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/forty-houses-taste.md5
-rw-r--r--.changeset/fuzzy-planes-collect.md5
-rw-r--r--.changeset/hip-horses-count.md5
-rw-r--r--.changeset/metal-emus-bathe.md5
-rw-r--r--.changeset/plenty-coins-destroy.md15
-rw-r--r--.changeset/twelve-carrots-raise.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json2
-rw-r--r--examples/component/package.json2
-rw-r--r--examples/container-with-vitest/package.json2
-rw-r--r--examples/framework-alpine/package.json2
-rw-r--r--examples/framework-multiple/package.json2
-rw-r--r--examples/framework-preact/package.json2
-rw-r--r--examples/framework-react/package.json2
-rw-r--r--examples/framework-solid/package.json2
-rw-r--r--examples/framework-svelte/package.json2
-rw-r--r--examples/framework-vue/package.json2
-rw-r--r--examples/hackernews/package.json2
-rw-r--r--examples/integration/package.json2
-rw-r--r--examples/minimal/package.json2
-rw-r--r--examples/portfolio/package.json2
-rw-r--r--examples/ssr/package.json2
-rw-r--r--examples/starlog/package.json2
-rw-r--r--examples/toolbar-app/package.json2
-rw-r--r--examples/with-markdoc/package.json2
-rw-r--r--examples/with-mdx/package.json2
-rw-r--r--examples/with-nanostores/package.json2
-rw-r--r--examples/with-tailwindcss/package.json2
-rw-r--r--examples/with-vitest/package.json2
-rw-r--r--packages/astro/CHANGELOG.md10
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/db/CHANGELOG.md9
-rw-r--r--packages/db/package.json2
-rw-r--r--packages/integrations/partytown/CHANGELOG.md16
-rw-r--r--packages/integrations/partytown/package.json2
-rw-r--r--packages/integrations/vercel/CHANGELOG.md6
-rw-r--r--packages/integrations/vercel/package.json2
-rw-r--r--pnpm-lock.yaml46
38 files changed, 91 insertions, 90 deletions
diff --git a/.changeset/forty-houses-taste.md b/.changeset/forty-houses-taste.md
deleted file mode 100644
index 82d9a26ae..000000000
--- a/.changeset/forty-houses-taste.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Prevent re-executing scripts in client router
diff --git a/.changeset/fuzzy-planes-collect.md b/.changeset/fuzzy-planes-collect.md
deleted file mode 100644
index f54d4fc09..000000000
--- a/.changeset/fuzzy-planes-collect.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Correctly escapes attributes in Markdown images
diff --git a/.changeset/hip-horses-count.md b/.changeset/hip-horses-count.md
deleted file mode 100644
index a08a41c95..000000000
--- a/.changeset/hip-horses-count.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@astrojs/db": patch
----
-
-Fix Astro DB seed failing when project path contains spaces. This resolves by properly decoding URL pathnames that contain encoded spaces (%20) before passing them to Vite's ssrLoadModule.
diff --git a/.changeset/metal-emus-bathe.md b/.changeset/metal-emus-bathe.md
deleted file mode 100644
index dc06a88d6..000000000
--- a/.changeset/metal-emus-bathe.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/vercel': patch
----
-
-Ensures `srcset` for responsive images only contains allowed sizes
diff --git a/.changeset/plenty-coins-destroy.md b/.changeset/plenty-coins-destroy.md
deleted file mode 100644
index 95aa146d4..000000000
--- a/.changeset/plenty-coins-destroy.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-'@astrojs/partytown': patch
----
-
-Adds support for `config.lib`, which allows changing the destination of the files:
-
-```diff
-export default defineConfig({
- integrations: [partytown({
- config: {
-+ lib: '/assets/lib/~partytown/';
- }
- })]
-})
-```
diff --git a/.changeset/twelve-carrots-raise.md b/.changeset/twelve-carrots-raise.md
deleted file mode 100644
index 66c394563..000000000
--- a/.changeset/twelve-carrots-raise.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Refactor Astro Actions to not use a middleware. Doing so should avoid unexpected issues when using the Astro middleware at the edge.
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 99ad05b6f..0a1fcdbf3 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.4.1"
+ "astro": "^5.4.2"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 4b7756f69..29517220a 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -13,6 +13,6 @@
"@astrojs/mdx": "^4.1.0",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
- "astro": "^5.4.1"
+ "astro": "^5.4.2"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index ad5d6ee35..73e6cecbc 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.4.1"
+ "astro": "^5.4.2"
},
"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 63c786f0e..aa0e4ecea 100644
--- a/examples/container-with-vitest/package.json
+++ b/examples/container-with-vitest/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/react": "^4.2.1",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vitest": "^3.0.7"
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index cdca3e54e..06e0362bc 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -13,6 +13,6 @@
"@astrojs/alpinejs": "^0.4.3",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.14.8",
- "astro": "^5.4.1"
+ "astro": "^5.4.2"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 294a31da5..876126a40 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -17,7 +17,7 @@
"@astrojs/vue": "^5.0.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"preact": "^10.26.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 609d4220e..b30b6becf 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.0.5",
"@preact/signals": "^2.0.1",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"preact": "^10.26.4"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 8003274e7..81ef4262a 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -13,7 +13,7 @@
"@astrojs/react": "^4.2.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index de50af12f..db25682c5 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/solid-js": "^5.0.5",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"solid-js": "^1.9.5"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index f6b8bc7bc..312cfd17b 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/svelte": "^7.0.5",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"svelte": "^5.21.0"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 42153adaf..dece9492b 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/vue": "^5.0.7",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"vue": "^3.5.13"
}
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index c8bcbb2dd..5f55766c9 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/node": "^9.1.2",
- "astro": "^5.4.1"
+ "astro": "^5.4.2"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 65db326cf..cce28c32c 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.4.1"
+ "astro": "^5.4.2"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 6a445ba9c..806089c67 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.4.1"
+ "astro": "^5.4.2"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 3d0683a5b..48c2b714c 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.4.1"
+ "astro": "^5.4.2"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index e939f6517..7d603f148 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/node": "^9.1.2",
"@astrojs/svelte": "^7.0.5",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"svelte": "^5.21.0"
}
}
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index 9e8cd3791..13ea50cdf 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -9,7 +9,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"sass": "^1.85.1",
"sharp": "^0.33.3"
}
diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json
index ef865da04..a5153a676 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.4.1"
+ "astro": "^5.4.2"
}
}
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index 08173aa02..1b18f494c 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/markdoc": "^0.12.10",
- "astro": "^5.4.1"
+ "astro": "^5.4.2"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 7774ff854..bfd4a67ba 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/mdx": "^4.1.0",
"@astrojs/preact": "^4.0.5",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"preact": "^10.26.4"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index f8d308566..147347535 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.0.5",
"@nanostores/preact": "^0.5.2",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"nanostores": "^0.11.4",
"preact": "^10.26.4"
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 87bb84ae5..d8cee827c 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -13,7 +13,7 @@
"@astrojs/mdx": "^4.1.0",
"@tailwindcss/vite": "^4.0.9",
"@types/canvas-confetti": "^1.9.0",
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"canvas-confetti": "^1.9.3",
"tailwindcss": "^4.0.9"
}
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index aaf8c8c06..221179d3c 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -11,7 +11,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^5.4.1",
+ "astro": "^5.4.2",
"vitest": "^3.0.7"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index d1364d130..9f5d3694c 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,15 @@
# astro
+## 5.4.2
+
+### Patch Changes
+
+- [#12985](https://github.com/withastro/astro/pull/12985) [`84e94cc`](https://github.com/withastro/astro/commit/84e94cc85cc0f4ea9b5dba2009dc89e83a798f59) Thanks [@matthewp](https://github.com/matthewp)! - Prevent re-executing scripts in client router
+
+- [#13349](https://github.com/withastro/astro/pull/13349) [`50e2e0b`](https://github.com/withastro/astro/commit/50e2e0b3749d6dba3d301ea1a0a3a33a273e7a81) Thanks [@ascorbic](https://github.com/ascorbic)! - Correctly escapes attributes in Markdown images
+
+- [#13262](https://github.com/withastro/astro/pull/13262) [`0025df3`](https://github.com/withastro/astro/commit/0025df37af4dcd390d41c9b175fbdb3edd87edf7) Thanks [@ematipico](https://github.com/ematipico)! - Refactor Astro Actions to not use a middleware. Doing so should avoid unexpected issues when using the Astro middleware at the edge.
+
## 5.4.1
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index ab636a3a2..9a13513f4 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "5.4.1",
+ "version": "5.4.2",
"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/db/CHANGELOG.md b/packages/db/CHANGELOG.md
index dd0101008..b86249ffb 100644
--- a/packages/db/CHANGELOG.md
+++ b/packages/db/CHANGELOG.md
@@ -1,5 +1,14 @@
# @astrojs/db
+## 0.14.8
+
+### Patch Changes
+
+- [#13343](https://github.com/withastro/astro/pull/13343) [`a001a75`](https://github.com/withastro/astro/commit/a001a75d6ec08378d607531dc73959bf0a9e079e) Thanks [@dreyfus92](https://github.com/dreyfus92)! - Fix Astro DB seed failing when project path contains spaces. This resolves by properly decoding URL pathnames that contain encoded spaces (%20) before passing them to Vite's ssrLoadModule.
+
+- Updated dependencies []:
+ - @astrojs/studio@0.1.4
+
## 0.14.7
### Patch Changes
diff --git a/packages/db/package.json b/packages/db/package.json
index 8c4816837..d443423d9 100644
--- a/packages/db/package.json
+++ b/packages/db/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/db",
- "version": "0.14.7",
+ "version": "0.14.8",
"description": "Add libSQL and Astro Studio support to your Astro site",
"license": "MIT",
"repository": {
diff --git a/packages/integrations/partytown/CHANGELOG.md b/packages/integrations/partytown/CHANGELOG.md
index e43021f79..62168e751 100644
--- a/packages/integrations/partytown/CHANGELOG.md
+++ b/packages/integrations/partytown/CHANGELOG.md
@@ -1,5 +1,21 @@
# @astrojs/partytown
+## 2.1.4
+
+### Patch Changes
+
+- [#13109](https://github.com/withastro/astro/pull/13109) [`5c0e0ea`](https://github.com/withastro/astro/commit/5c0e0eaa908bbfd6705eb950713c26c9ee0bd32d) Thanks [@arnottferels](https://github.com/arnottferels)! - Adds support for `config.lib`, which allows changing the destination of the files:
+
+ ```diff
+ export default defineConfig({
+ integrations: [partytown({
+ config: {
+ + lib: '/assets/lib/~partytown/';
+ }
+ })]
+ })
+ ```
+
## 2.1.3
### Patch Changes
diff --git a/packages/integrations/partytown/package.json b/packages/integrations/partytown/package.json
index 95357d28b..7a645caa1 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.3",
+ "version": "2.1.4",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md
index ff47e0ca6..8f12ee8e3 100644
--- a/packages/integrations/vercel/CHANGELOG.md
+++ b/packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/vercel
+## 8.1.1
+
+### Patch Changes
+
+- [#13351](https://github.com/withastro/astro/pull/13351) [`fac32ad`](https://github.com/withastro/astro/commit/fac32ad98d66b73382f35d26a69352e566cd94d9) Thanks [@ascorbic](https://github.com/ascorbic)! - Ensures `srcset` for responsive images only contains allowed sizes
+
## 8.1.0
### Minor Changes
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index e7891f417..1763f9578 100644
--- a/packages/integrations/vercel/package.json
+++ b/packages/integrations/vercel/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
- "version": "8.1.0",
+ "version": "8.1.1",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 257b5c04a..aa54367af 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -142,7 +142,7 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
examples/blog:
@@ -157,13 +157,13 @@ importers:
specifier: ^3.2.1
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
examples/container-with-vitest:
@@ -172,7 +172,7 @@ importers:
specifier: ^4.2.1
version: link:../../packages/integrations/react
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -203,7 +203,7 @@ importers:
specifier: ^3.14.8
version: 3.14.8
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
examples/framework-multiple:
@@ -230,7 +230,7 @@ importers:
specifier: ^18.3.5
version: 18.3.5(@types/react@18.3.18)
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
preact:
specifier: ^10.26.4
@@ -260,7 +260,7 @@ importers:
specifier: ^2.0.1
version: 2.0.1(preact@10.26.4)
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
preact:
specifier: ^10.26.4
@@ -278,7 +278,7 @@ importers:
specifier: ^18.3.5
version: 18.3.5(@types/react@18.3.18)
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -293,7 +293,7 @@ importers:
specifier: ^5.0.5
version: link:../../packages/integrations/solid
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
solid-js:
specifier: ^1.9.5
@@ -305,7 +305,7 @@ importers:
specifier: ^7.0.5
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
svelte:
specifier: ^5.21.0
@@ -317,7 +317,7 @@ importers:
specifier: ^5.0.7
version: link:../../packages/integrations/vue
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
vue:
specifier: ^3.5.13
@@ -329,25 +329,25 @@ importers:
specifier: ^9.1.2
version: link:../../packages/integrations/node
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
examples/minimal:
dependencies:
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
examples/ssr:
@@ -359,7 +359,7 @@ importers:
specifier: ^7.0.5
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
svelte:
specifier: ^5.21.0
@@ -368,7 +368,7 @@ importers:
examples/starlog:
dependencies:
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
sass:
specifier: ^1.85.1
@@ -383,7 +383,7 @@ importers:
specifier: ^18.17.8
version: 18.19.50
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
examples/with-markdoc:
@@ -392,7 +392,7 @@ importers:
specifier: ^0.12.10
version: link:../../packages/integrations/markdoc
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
examples/with-mdx:
@@ -404,7 +404,7 @@ importers:
specifier: ^4.0.5
version: link:../../packages/integrations/preact
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
preact:
specifier: ^10.26.4
@@ -419,7 +419,7 @@ importers:
specifier: ^0.5.2
version: 0.5.2(nanostores@0.11.4)(preact@10.26.4)
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
nanostores:
specifier: ^0.11.4
@@ -440,7 +440,7 @@ importers:
specifier: ^1.9.0
version: 1.9.0
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
canvas-confetti:
specifier: ^1.9.3
@@ -452,7 +452,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^5.4.1
+ specifier: ^5.4.2
version: link:../../packages/astro
vitest:
specifier: ^3.0.7