From ef8c00ab6dec93ae68b90c7872aca671b053ccdf Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 14 Oct 2025 12:59:31 +0000
Subject: [PATCH] [ci] release
---
.changeset/fifty-boxes-shave.md | 5 ---
.changeset/fifty-states-fetch.md | 6 ---
.changeset/fuzzy-news-sort.md | 5 ---
.changeset/weak-eagles-give.md | 12 -----
.changeset/wide-cows-rest.md | 5 ---
examples/basics/package.json | 2 +-
examples/blog/package.json | 2 +-
examples/component/package.json | 2 +-
examples/container-with-vitest/package.json | 2 +-
examples/framework-alpine/package.json | 2 +-
examples/framework-multiple/package.json | 2 +-
examples/framework-preact/package.json | 2 +-
examples/framework-react/package.json | 2 +-
examples/framework-solid/package.json | 2 +-
examples/framework-svelte/package.json | 2 +-
examples/framework-vue/package.json | 2 +-
examples/hackernews/package.json | 4 +-
examples/integration/package.json | 2 +-
examples/minimal/package.json | 2 +-
examples/portfolio/package.json | 2 +-
examples/ssr/package.json | 4 +-
examples/starlog/package.json | 2 +-
examples/toolbar-app/package.json | 2 +-
examples/with-markdoc/package.json | 2 +-
examples/with-mdx/package.json | 2 +-
examples/with-nanostores/package.json | 2 +-
examples/with-tailwindcss/package.json | 2 +-
examples/with-vitest/package.json | 2 +-
packages/astro/CHANGELOG.md | 16 +++++++
packages/astro/package.json | 2 +-
packages/create-astro/CHANGELOG.md | 6 +++
packages/create-astro/package.json | 2 +-
packages/integrations/netlify/CHANGELOG.md | 9 ++++
packages/integrations/netlify/package.json | 2 +-
packages/integrations/node/CHANGELOG.md | 12 +++++
packages/integrations/node/package.json | 2 +-
packages/integrations/vercel/CHANGELOG.md | 6 +++
packages/integrations/vercel/package.json | 2 +-
pnpm-lock.yaml | 50 ++++++++++-----------
39 files changed, 104 insertions(+), 88 deletions(-)
delete mode 100644 .changeset/fifty-boxes-shave.md
delete mode 100644 .changeset/fifty-states-fetch.md
delete mode 100644 .changeset/fuzzy-news-sort.md
delete mode 100644 .changeset/weak-eagles-give.md
delete mode 100644 .changeset/wide-cows-rest.md
diff --git a/.changeset/fifty-boxes-shave.md b/.changeset/fifty-boxes-shave.md
deleted file mode 100644
index 8c7a49ad6857..000000000000
--- a/.changeset/fifty-boxes-shave.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes `defineLiveCollection()` types
diff --git a/.changeset/fifty-states-fetch.md b/.changeset/fifty-states-fetch.md
deleted file mode 100644
index 63f8f2814982..000000000000
--- a/.changeset/fifty-states-fetch.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@astrojs/netlify': patch
-'@astrojs/vercel': patch
----
-
-Fixes a bug that caused too many files to be bundled in SSR
diff --git a/.changeset/fuzzy-news-sort.md b/.changeset/fuzzy-news-sort.md
deleted file mode 100644
index 09ed6164d49b..000000000000
--- a/.changeset/fuzzy-news-sort.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'create-astro': patch
----
-
-Fixes a case where a deprecation warning would be shown on Node 24
diff --git a/.changeset/weak-eagles-give.md b/.changeset/weak-eagles-give.md
deleted file mode 100644
index 58e102e7acd3..000000000000
--- a/.changeset/weak-eagles-give.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-'@astrojs/node': minor
-'astro': patch
----
-
-Updates redirect handling to be consistent across `static` and `server` output, aligning with the behavior of other adapters.
-
-Previously, the Node.js adapter used default HTML files with meta refresh tags when in `static` output. This often resulted in an extra flash of the page on redirect, while also not applying the proper status code for redirections. It's also likely less friendly to search engines.
-
-This update ensures that configured redirects are always handled as HTTP redirects regardless of output mode, and the default HTML files for the redirects are no longer generated in `static` output. It makes the Node.js adapter more consistent with the other official adapters.
-
-No change to your project is required to take advantage of this new adapter functionality. It is not expected to cause any breaking changes. However, if you relied on the previous redirecting behavior, you may need to handle your redirects differently now. Otherwise you should notice smoother redirects, with more accurate HTTP status codes, and may potentially see some SEO gains.
diff --git a/.changeset/wide-cows-rest.md b/.changeset/wide-cows-rest.md
deleted file mode 100644
index 6a551ecd261e..000000000000
--- a/.changeset/wide-cows-rest.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Updates the `` component so that preload links are generated after the style tag, as recommended by capo.js
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 87d0641ea1e2..8d38976612e4 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.14.4"
+ "astro": "^5.14.5"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 7079a761f3c4..eada017f0305 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -13,7 +13,7 @@
"@astrojs/mdx": "^4.3.7",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.6.0",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"sharp": "^0.34.3"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index 1f679f7b07ca..8a40629fb478 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.14.4"
+ "astro": "^5.14.5"
},
"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 d1415cc1748f..3ff21e57fc2a 100644
--- a/examples/container-with-vitest/package.json
+++ b/examples/container-with-vitest/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/react": "^4.4.0",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vitest": "^3.2.4"
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index dd785ea4b215..cc0c1f68c4a0 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -13,6 +13,6 @@
"@astrojs/alpinejs": "^0.4.9",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.15.0",
- "astro": "^5.14.4"
+ "astro": "^5.14.5"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 1f428b6b7543..e78ae7e6876a 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -17,7 +17,7 @@
"@astrojs/vue": "^5.1.1",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"preact": "^10.27.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 14db165f5749..77b849d54cba 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.1.1",
"@preact/signals": "^2.3.2",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"preact": "^10.27.2"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 63b3f368f2bb..6bff3505f0fe 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -13,7 +13,7 @@
"@astrojs/react": "^4.4.0",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 94b0ac5f867f..5994e0f7f6d4 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/solid-js": "^5.1.1",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"solid-js": "^1.9.9"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 4ecbc005d7a7..9a2656785219 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/svelte": "^7.2.0",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"svelte": "^5.39.11"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 583e127ba06a..84a2a4274f8a 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/vue": "^5.1.1",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"vue": "^3.5.22"
}
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 6053b2259ecb..c38ebe071979 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/node": "^9.4.6",
- "astro": "^5.14.4"
+ "@astrojs/node": "^9.5.0",
+ "astro": "^5.14.5"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index b9c4b8fab0e8..fcc15dac1de2 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.14.4"
+ "astro": "^5.14.5"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index d87e79d25846..c8cd6471fcb3 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.14.4"
+ "astro": "^5.14.5"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 85bc2a98c2da..a0840581849e 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.14.4"
+ "astro": "^5.14.5"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 739379d70821..2e2f0ef146b9 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -11,9 +11,9 @@
"server": "node dist/server/entry.mjs"
},
"dependencies": {
- "@astrojs/node": "^9.4.6",
+ "@astrojs/node": "^9.5.0",
"@astrojs/svelte": "^7.2.0",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"svelte": "^5.39.11"
}
}
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index df8d5283d244..3045d6739392 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -9,7 +9,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"sass": "^1.93.2",
"sharp": "^0.34.3"
}
diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json
index 8822ceb13704..22335937ca3e 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.14.4"
+ "astro": "^5.14.5"
}
}
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index 1c4a69d6bb20..f6d172c454a5 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/markdoc": "^0.15.8",
- "astro": "^5.14.4"
+ "astro": "^5.14.5"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index deb3f9919c3b..8a1f0fc9e90f 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/mdx": "^4.3.7",
"@astrojs/preact": "^4.1.1",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"preact": "^10.27.2"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 31560a38606f..4b4b85e94317 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.1.1",
"@nanostores/preact": "^0.5.2",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"nanostores": "^0.11.4",
"preact": "^10.27.2"
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index e7ce3bd9fade..7ef974265170 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -13,7 +13,7 @@
"@astrojs/mdx": "^4.3.7",
"@tailwindcss/vite": "^4.1.14",
"@types/canvas-confetti": "^1.9.0",
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"canvas-confetti": "^1.9.3",
"tailwindcss": "^4.1.14"
}
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index fae0e2c32edb..9bfca265ffca 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -11,7 +11,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^5.14.4",
+ "astro": "^5.14.5",
"vitest": "^3.2.4"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 623f2ce0aea9..79cc4929b7d5 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,21 @@
# astro
+## 5.14.5
+
+### Patch Changes
+
+- [#14525](https://github.com/withastro/astro/pull/14525) [`4f55781`](https://github.com/withastro/astro/commit/4f5578190dab96ad0cd117b9e9bb96fdd18730ae) Thanks [@penx](https://github.com/penx)! - Fixes `defineLiveCollection()` types
+
+- [#14441](https://github.com/withastro/astro/pull/14441) [`62ec8ea`](https://github.com/withastro/astro/commit/62ec8ea14a42c1dba81f68c50e987b111fabcce5) Thanks [@upsuper](https://github.com/upsuper)! - Updates redirect handling to be consistent across `static` and `server` output, aligning with the behavior of other adapters.
+
+ Previously, the Node.js adapter used default HTML files with meta refresh tags when in `static` output. This often resulted in an extra flash of the page on redirect, while also not applying the proper status code for redirections. It's also likely less friendly to search engines.
+
+ This update ensures that configured redirects are always handled as HTTP redirects regardless of output mode, and the default HTML files for the redirects are no longer generated in `static` output. It makes the Node.js adapter more consistent with the other official adapters.
+
+ No change to your project is required to take advantage of this new adapter functionality. It is not expected to cause any breaking changes. However, if you relied on the previous redirecting behavior, you may need to handle your redirects differently now. Otherwise you should notice smoother redirects, with more accurate HTTP status codes, and may potentially see some SEO gains.
+
+- [#14506](https://github.com/withastro/astro/pull/14506) [`ec3cbe1`](https://github.com/withastro/astro/commit/ec3cbe178094e94fcb49cccdcc15c6ffee3104ba) Thanks [@abdo-spices](https://github.com/abdo-spices)! - Updates the `` component so that preload links are generated after the style tag, as recommended by capo.js
+
## 5.14.4
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 750594e04255..ce98ba7442cc 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "5.14.4",
+ "version": "5.14.5",
"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/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md
index 26f78be5e9ad..2f5243c7fbb4 100644
--- a/packages/create-astro/CHANGELOG.md
+++ b/packages/create-astro/CHANGELOG.md
@@ -1,5 +1,11 @@
# create-astro
+## 4.13.2
+
+### Patch Changes
+
+- [#14528](https://github.com/withastro/astro/pull/14528) [`3597371`](https://github.com/withastro/astro/commit/3597371fe841603d0771b258010e69fbf5d843f7) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where a deprecation warning would be shown on Node 24
+
## 4.13.1
### Patch Changes
diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json
index 4d4920383c7a..ee25597a1bfe 100644
--- a/packages/create-astro/package.json
+++ b/packages/create-astro/package.json
@@ -1,6 +1,6 @@
{
"name": "create-astro",
- "version": "4.13.1",
+ "version": "4.13.2",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md
index 620f1fe30ed3..c93b8d83ef6a 100644
--- a/packages/integrations/netlify/CHANGELOG.md
+++ b/packages/integrations/netlify/CHANGELOG.md
@@ -1,5 +1,14 @@
# @astrojs/netlify
+## 6.5.13
+
+### Patch Changes
+
+- [#14536](https://github.com/withastro/astro/pull/14536) [`9261996`](https://github.com/withastro/astro/commit/9261996150f4c690c4762bf02100e44680bd480d) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a bug that caused too many files to be bundled in SSR
+
+- Updated dependencies []:
+ - @astrojs/underscore-redirects@1.0.0
+
## 6.5.12
### Patch Changes
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index faa5711a41c8..44e92064866c 100644
--- a/packages/integrations/netlify/package.json
+++ b/packages/integrations/netlify/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/netlify",
"description": "Deploy your site to Netlify",
- "version": "6.5.12",
+ "version": "6.5.13",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md
index 1dd1cb288e06..771b4eba46c7 100644
--- a/packages/integrations/node/CHANGELOG.md
+++ b/packages/integrations/node/CHANGELOG.md
@@ -1,5 +1,17 @@
# @astrojs/node
+## 9.5.0
+
+### Minor Changes
+
+- [#14441](https://github.com/withastro/astro/pull/14441) [`62ec8ea`](https://github.com/withastro/astro/commit/62ec8ea14a42c1dba81f68c50e987b111fabcce5) Thanks [@upsuper](https://github.com/upsuper)! - Updates redirect handling to be consistent across `static` and `server` output, aligning with the behavior of other adapters.
+
+ Previously, the Node.js adapter used default HTML files with meta refresh tags when in `static` output. This often resulted in an extra flash of the page on redirect, while also not applying the proper status code for redirections. It's also likely less friendly to search engines.
+
+ This update ensures that configured redirects are always handled as HTTP redirects regardless of output mode, and the default HTML files for the redirects are no longer generated in `static` output. It makes the Node.js adapter more consistent with the other official adapters.
+
+ No change to your project is required to take advantage of this new adapter functionality. It is not expected to cause any breaking changes. However, if you relied on the previous redirecting behavior, you may need to handle your redirects differently now. Otherwise you should notice smoother redirects, with more accurate HTTP status codes, and may potentially see some SEO gains.
+
## 9.4.6
### Patch Changes
diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json
index 0da5c447ba58..8301bd95c722 100644
--- a/packages/integrations/node/package.json
+++ b/packages/integrations/node/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/node",
"description": "Deploy your site to a Node.js server",
- "version": "9.4.6",
+ "version": "9.5.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md
index 5f26e9355ca7..71549d3d37c2 100644
--- a/packages/integrations/vercel/CHANGELOG.md
+++ b/packages/integrations/vercel/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/vercel
+## 8.2.10
+
+### Patch Changes
+
+- [#14536](https://github.com/withastro/astro/pull/14536) [`9261996`](https://github.com/withastro/astro/commit/9261996150f4c690c4762bf02100e44680bd480d) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a bug that caused too many files to be bundled in SSR
+
## 8.2.9
### Patch Changes
diff --git a/packages/integrations/vercel/package.json b/packages/integrations/vercel/package.json
index c199245e2f2b..9a1552e14460 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.2.9",
+ "version": "8.2.10",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f542faf64b9c..c471b314babf 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -149,7 +149,7 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
examples/blog:
@@ -164,7 +164,7 @@ importers:
specifier: ^3.6.0
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
sharp:
specifier: ^0.34.3
@@ -173,7 +173,7 @@ importers:
examples/component:
devDependencies:
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
examples/container-with-vitest:
@@ -182,7 +182,7 @@ importers:
specifier: ^4.4.0
version: link:../../packages/integrations/react
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -213,7 +213,7 @@ importers:
specifier: ^3.15.0
version: 3.15.0
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
examples/framework-multiple:
@@ -240,7 +240,7 @@ importers:
specifier: ^18.3.7
version: 18.3.7(@types/react@18.3.26)
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
preact:
specifier: ^10.27.2
@@ -270,7 +270,7 @@ importers:
specifier: ^2.3.2
version: 2.3.2(preact@10.27.2)
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
preact:
specifier: ^10.27.2
@@ -288,7 +288,7 @@ importers:
specifier: ^18.3.7
version: 18.3.7(@types/react@18.3.26)
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -303,7 +303,7 @@ importers:
specifier: ^5.1.1
version: link:../../packages/integrations/solid
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
solid-js:
specifier: ^1.9.9
@@ -315,7 +315,7 @@ importers:
specifier: ^7.2.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
svelte:
specifier: ^5.39.11
@@ -327,7 +327,7 @@ importers:
specifier: ^5.1.1
version: link:../../packages/integrations/vue
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
vue:
specifier: ^3.5.22
@@ -336,40 +336,40 @@ importers:
examples/hackernews:
dependencies:
'@astrojs/node':
- specifier: ^9.4.6
+ specifier: ^9.5.0
version: link:../../packages/integrations/node
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
examples/minimal:
dependencies:
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
examples/ssr:
dependencies:
'@astrojs/node':
- specifier: ^9.4.6
+ specifier: ^9.5.0
version: link:../../packages/integrations/node
'@astrojs/svelte':
specifier: ^7.2.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
svelte:
specifier: ^5.39.11
@@ -378,7 +378,7 @@ importers:
examples/starlog:
dependencies:
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
sass:
specifier: ^1.93.2
@@ -393,7 +393,7 @@ importers:
specifier: ^18.17.8
version: 18.19.124
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
examples/with-markdoc:
@@ -402,7 +402,7 @@ importers:
specifier: ^0.15.8
version: link:../../packages/integrations/markdoc
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
examples/with-mdx:
@@ -414,7 +414,7 @@ importers:
specifier: ^4.1.1
version: link:../../packages/integrations/preact
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
preact:
specifier: ^10.27.2
@@ -429,7 +429,7 @@ importers:
specifier: ^0.5.2
version: 0.5.2(nanostores@0.11.4)(preact@10.27.2)
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
nanostores:
specifier: ^0.11.4
@@ -450,7 +450,7 @@ importers:
specifier: ^1.9.0
version: 1.9.0
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
canvas-confetti:
specifier: ^1.9.3
@@ -462,7 +462,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^5.14.4
+ specifier: ^5.14.5
version: link:../../packages/astro
vitest:
specifier: ^3.2.4