aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2025-06-04 02:31:56 -0700
committerGravatar GitHub <noreply@github.com> 2025-06-04 10:31:56 +0100
commit1d628d59f6024c43ccf3fee45652ccd3d9df78e0 (patch)
tree56a415b553b72877a909f31a24ac75481b2de7c3
parent50a3788eaa12a51bd16d55c1f52d1b83f6c6d247 (diff)
downloadastro-1d628d59f6024c43ccf3fee45652ccd3d9df78e0.tar.gz
astro-1d628d59f6024c43ccf3fee45652ccd3d9df78e0.tar.zst
astro-1d628d59f6024c43ccf3fee45652ccd3d9df78e0.zip
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
-rw-r--r--.changeset/dull-pots-laugh.md5
-rw-r--r--.changeset/fast-bikes-tease.md5
-rw-r--r--.changeset/huge-islands-fold.md5
-rw-r--r--.changeset/real-mice-joke.md5
-rw-r--r--.changeset/red-berries-glow.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json6
-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-rss/CHANGELOG.md6
-rw-r--r--packages/astro-rss/package.json2
-rw-r--r--packages/astro/CHANGELOG.md8
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/integrations/sitemap/CHANGELOG.md6
-rw-r--r--packages/integrations/sitemap/package.json2
-rw-r--r--packages/integrations/vercel/CHANGELOG.md6
-rw-r--r--packages/integrations/vercel/package.json2
-rw-r--r--pnpm-lock.yaml51
37 files changed, 80 insertions, 80 deletions
diff --git a/.changeset/dull-pots-laugh.md b/.changeset/dull-pots-laugh.md
deleted file mode 100644
index ca57cb862..000000000
--- a/.changeset/dull-pots-laugh.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/vercel': patch
----
-
-Handle SVG images correctly in build image service
diff --git a/.changeset/fast-bikes-tease.md b/.changeset/fast-bikes-tease.md
deleted file mode 100644
index bc05f16ef..000000000
--- a/.changeset/fast-bikes-tease.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/sitemap': patch
----
-
-Uncaught errors in the `filter` method will now bubble, causing the astro build to fail.
diff --git a/.changeset/huge-islands-fold.md b/.changeset/huge-islands-fold.md
deleted file mode 100644
index f86bc2b6f..000000000
--- a/.changeset/huge-islands-fold.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/rss': patch
----
-
-Fixes a missing type attribute when providing a XSLT stylesheet
diff --git a/.changeset/real-mice-joke.md b/.changeset/real-mice-joke.md
deleted file mode 100644
index 43af36d7e..000000000
--- a/.changeset/real-mice-joke.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes a bug that caused `Astro.rewrite` to fail when used in `sequence`d middleware
diff --git a/.changeset/red-berries-glow.md b/.changeset/red-berries-glow.md
deleted file mode 100644
index fe4ee735a..000000000
--- a/.changeset/red-berries-glow.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes rendering of the `download` attribute when it has a boolean value
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 4d6c8d5d4..506c5965f 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.8.1"
+ "astro": "^5.8.2"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index f50b8448d..1440e72ed 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -11,9 +11,9 @@
},
"dependencies": {
"@astrojs/mdx": "^4.3.0",
- "@astrojs/rss": "^4.0.11",
- "@astrojs/sitemap": "^3.4.0",
- "astro": "^5.8.1",
+ "@astrojs/rss": "^4.0.12",
+ "@astrojs/sitemap": "^3.4.1",
+ "astro": "^5.8.2",
"sharp": "^0.34.2"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index 3e3bca826..aed0199aa 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.8.1"
+ "astro": "^5.8.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 97fd5463c..69e44adb8 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.1",
+ "astro": "^5.8.2",
"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 eae65038c..cf2c933e1 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.1"
+ "astro": "^5.8.2"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 85bfe10a1..5876242ba 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.1",
+ "astro": "^5.8.2",
"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 f53b4d3ad..81ed13d24 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.1",
+ "astro": "^5.8.2",
"preact": "^10.26.5"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index bb8ab3f98..bd22778ec 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.1",
+ "astro": "^5.8.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 d229302a1..a15c64c40 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.1",
+ "astro": "^5.8.2",
"solid-js": "^1.9.5"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 0622c85a7..9cd3a9304 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.1",
+ "astro": "^5.8.2",
"svelte": "^5.25.7"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 31f3d33ba..5de9656cd 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.1",
+ "astro": "^5.8.2",
"vue": "^3.5.13"
}
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index d91b55114..918cab396 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/node": "^9.2.2",
- "astro": "^5.8.1"
+ "astro": "^5.8.2"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index 91683dcf8..0af321490 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.8.1"
+ "astro": "^5.8.2"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index d924411fe..18d524d60 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.8.1"
+ "astro": "^5.8.2"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 326c7c634..6022bfdbd 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.8.1"
+ "astro": "^5.8.2"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 745b3972b..9637c908e 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.1",
+ "astro": "^5.8.2",
"svelte": "^5.25.7"
}
}
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index ed98fedd8..6fa5d1e51 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -9,7 +9,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.8.1",
+ "astro": "^5.8.2",
"sass": "^1.86.3",
"sharp": "^0.33.3"
}
diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json
index 19ed9b41a..15b787a47 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.1"
+ "astro": "^5.8.2"
}
}
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index f20c1ae86..00b7b76a9 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.1"
+ "astro": "^5.8.2"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index b082974e8..cd31f5ec4 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.1",
+ "astro": "^5.8.2",
"preact": "^10.26.5"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 13e3ed2c8..090447520 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.1",
+ "astro": "^5.8.2",
"nanostores": "^0.11.4",
"preact": "^10.26.5"
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index ccd4badd0..0b728902d 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.1",
+ "astro": "^5.8.2",
"canvas-confetti": "^1.9.3",
"tailwindcss": "^4.1.3"
}
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index 0ba46467c..b0eeebf1f 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -11,7 +11,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^5.8.1",
+ "astro": "^5.8.2",
"vitest": "^3.1.1"
}
}
diff --git a/packages/astro-rss/CHANGELOG.md b/packages/astro-rss/CHANGELOG.md
index 602c893b4..540c4c6c6 100644
--- a/packages/astro-rss/CHANGELOG.md
+++ b/packages/astro-rss/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/rss
+## 4.0.12
+
+### Patch Changes
+
+- [#13867](https://github.com/withastro/astro/pull/13867) [`c947c28`](https://github.com/withastro/astro/commit/c947c28ae7c385c4bee0a2dd44006b9cd690f690) Thanks [@Adriel-M](https://github.com/Adriel-M)! - Fixes a missing type attribute when providing a XSLT stylesheet
+
## 4.0.11
### Patch Changes
diff --git a/packages/astro-rss/package.json b/packages/astro-rss/package.json
index 9cc764ec7..b1d96befa 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.11",
+ "version": "4.0.12",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 38fb75868..a69a1068f 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,13 @@
# astro
+## 5.8.2
+
+### Patch Changes
+
+- [#13877](https://github.com/withastro/astro/pull/13877) [`5a7797f`](https://github.com/withastro/astro/commit/5a7797fdd6ad3f1377e2719c79da9486a232dfcd) Thanks [@yuhang-dong](https://github.com/yuhang-dong)! - Fixes a bug that caused `Astro.rewrite` to fail when used in `sequence`d middleware
+
+- [#13872](https://github.com/withastro/astro/pull/13872) [`442b841`](https://github.com/withastro/astro/commit/442b8413dc9d29892499cfa97e54798a3a6ee136) Thanks [@isVivek99](https://github.com/isVivek99)! - Fixes rendering of the `download` attribute when it has a boolean value
+
## 5.8.1
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 6fc5bb43b..87ddaa47c 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "5.8.1",
+ "version": "5.8.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/integrations/sitemap/CHANGELOG.md b/packages/integrations/sitemap/CHANGELOG.md
index 540b09975..ccb04f05f 100644
--- a/packages/integrations/sitemap/CHANGELOG.md
+++ b/packages/integrations/sitemap/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/sitemap
+## 3.4.1
+
+### Patch Changes
+
+- [#13871](https://github.com/withastro/astro/pull/13871) [`8a1e849`](https://github.com/withastro/astro/commit/8a1e8499dbd1ed98e971635e86eb89f910f0ce78) Thanks [@blimmer](https://github.com/blimmer)! - Uncaught errors in the `filter` method will now bubble, causing the astro build to fail.
+
## 3.4.0
### Minor Changes
diff --git a/packages/integrations/sitemap/package.json b/packages/integrations/sitemap/package.json
index 9038e6f1a..d7ae0cf34 100644
--- a/packages/integrations/sitemap/package.json
+++ b/packages/integrations/sitemap/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/sitemap",
"description": "Generate a sitemap for your Astro site",
- "version": "3.4.0",
+ "version": "3.4.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md
index 1504ffe0e..0c7eca2ee 100644
--- a/packages/integrations/vercel/CHANGELOG.md
+++ b/packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/vercel
+## 8.1.5
+
+### Patch Changes
+
+- [#13679](https://github.com/withastro/astro/pull/13679) [`4a8f193`](https://github.com/withastro/astro/commit/4a8f193c444c30d154f868fc444a153a26124347) Thanks [@moonclavedev](https://github.com/moonclavedev)! - Handle SVG images correctly in build image service
+
## 8.1.4
### Patch Changes
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index d59addfe2..88a3abed6 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.4",
+ "version": "8.1.5",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 8abea2875..74cdd7bfc 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -145,7 +145,7 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^5.8.1
+ specifier: ^5.8.2
version: link:../../packages/astro
examples/blog:
@@ -154,13 +154,13 @@ importers:
specifier: ^4.3.0
version: link:../../packages/integrations/mdx
'@astrojs/rss':
- specifier: ^4.0.11
+ specifier: ^4.0.12
version: link:../../packages/astro-rss
'@astrojs/sitemap':
- specifier: ^3.4.0
+ specifier: ^3.4.1
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^5.8.1
+ specifier: ^5.8.2
version: link:../../packages/astro
sharp:
specifier: ^0.34.2
@@ -169,7 +169,7 @@ importers:
examples/component:
devDependencies:
astro:
- specifier: ^5.8.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^5.8.1
+ specifier: ^5.8.2
version: link:../../packages/astro
examples/minimal:
dependencies:
astro:
- specifier: ^5.8.1
+ specifier: ^5.8.2
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^5.8.1
+ specifier: ^5.8.2
version: link:../../packages/astro
examples/ssr:
@@ -365,7 +365,7 @@ importers:
specifier: ^7.1.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.8.1
+ specifier: ^5.8.2
version: link:../../packages/astro
svelte:
specifier: ^5.25.7
@@ -374,7 +374,7 @@ importers:
examples/starlog:
dependencies:
astro:
- specifier: ^5.8.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
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.1
+ specifier: ^5.8.2
version: link:../../packages/astro
canvas-confetti:
specifier: ^1.9.3
@@ -458,7 +458,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^5.8.1
+ specifier: ^5.8.2
version: link:../../packages/astro
vitest:
specifier: ^3.1.1
@@ -10652,7 +10652,6 @@ packages:
libsql@0.5.4:
resolution: {integrity: sha512-GEFeWca4SDAQFxjHWJBE6GK52LEtSskiujbG3rqmmeTO9t4sfSBKIURNLLpKDDF7fb7jmTuuRkDAn9BZGITQNw==}
- cpu: [x64, arm64, wasm32]
os: [darwin, linux, win32]
lightningcss-darwin-arm64@1.29.2: