diff --git a/.changeset/clean-ears-brake.md b/.changeset/clean-ears-brake.md
deleted file mode 100644
index e27915d150..0000000000
--- a/.changeset/clean-ears-brake.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes an issue where Astro i18n didn't properly show the 404 page when using fallback and the option `prefixDefaultLocale` set to `true`.
diff --git a/.changeset/curly-snakes-shave.md b/.changeset/curly-snakes-shave.md
deleted file mode 100644
index f9a9ba208b..0000000000
--- a/.changeset/curly-snakes-shave.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Adds types for `?url&inline` and `?url&no-inline` [import queries](https://vite.dev/guide/assets.html#explicit-inline-handling) added in Vite 6
diff --git a/.changeset/heavy-dots-sip.md b/.changeset/heavy-dots-sip.md
deleted file mode 100644
index 2e0c4c29b1..0000000000
--- a/.changeset/heavy-dots-sip.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixed changes to vite configuration made in the astro:build:setup integration hook having no effect when target is "client"
diff --git a/.changeset/poor-mangos-fold.md b/.changeset/poor-mangos-fold.md
deleted file mode 100644
index 9c88b654bf..0000000000
--- a/.changeset/poor-mangos-fold.md
+++ /dev/null
@@ -1,36 +0,0 @@
----
-'astro': minor
----
-
-Adds experimental session support
-
-Sessions are used to store user state between requests for server-rendered pages, such as login status, shopping cart contents, or other user-specific data.
-
-```astro
----
-export const prerender = false; // Not needed in 'server' mode
-const cart = await Astro.session.get('cart');
----
-
-🛒 {cart?.length ?? 0} items
-```
-
-Sessions are available in on-demand rendered/SSR pages, API endpoints, actions and middleware. To enable session support, you must configure a storage driver.
-
-If you are using the Node.js adapter, you can use the `fs` driver to store session data on the filesystem:
-
-```js
-// astro.config.mjs
-{
- adapter: node({ mode: 'standalone' }),
- experimental: {
- session: {
- // Required: the name of the unstorage driver
- driver: "fs",
- },
- },
-}
-```
-If you are deploying to a serverless environment, you can use drivers such as `redis`, `netlify-blobs`, `vercel-kv`, or `cloudflare-kv-binding` and optionally pass additional configuration options.
-
-For more information, including using the session API with other adapters and a full list of supported drivers, see [the docs for experimental session support](https://docs.astro.build/en/reference/experimental-flags/sessions/). For even more details, and to leave feedback and participate in the development of this feature, [the Sessions RFC](https://github.com/withastro/roadmap/pull/1055).
diff --git a/.changeset/red-poems-pay.md b/.changeset/red-poems-pay.md
deleted file mode 100644
index 250b12de6b..0000000000
--- a/.changeset/red-poems-pay.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'astro': minor
----
-
-Improves asset caching of remote images
-
-Astro will now store [entity tags](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) and the [Last-Modified](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Last-Modified) date for cached remote images and use them to revalidate the cache when it goes stale.
diff --git a/.changeset/shaggy-dancers-run.md b/.changeset/shaggy-dancers-run.md
deleted file mode 100644
index e95c16dd7b..0000000000
--- a/.changeset/shaggy-dancers-run.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Clears the content layer cache when the Astro config is changed
diff --git a/.changeset/wise-boxes-develop.md b/.changeset/wise-boxes-develop.md
deleted file mode 100644
index 5b7d0825e4..0000000000
--- a/.changeset/wise-boxes-develop.md
+++ /dev/null
@@ -1,44 +0,0 @@
----
-'astro': minor
----
-
-Adds a new `getActionPath()` helper available from `astro:actions`
-
-Astro 5.1 introduces a new helper function, `getActionPath()` to give you more flexibility when calling your action.
-
-Calling `getActionPath()` with your action returns its URL path so you can make a `fetch()` request with custom headers, or use your action with an API such as `navigator.sendBeacon()`. Then, you can [handle the custom-formatted returned data](https://docs.astro.build/en/guides/actions/#handling-returned-data) as needed, just as if you had called an action directly.
-
-This example shows how to call a defined `like` action passing the `Authorization` header and the [`keepalive`](https://developer.mozilla.org/en-US/docs/Web/API/Request/keepalive) option:
-
-```astro
-
-```
-
-This example shows how to call the same `like` action using the [`sendBeacon`](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/sendBeacon) API:
-
-```astro
-
-```
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 082700d135..4037fca342 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.0.9"
+ "astro": "^5.1.0"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index a39eb69b94..ec6875b5dd 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -13,6 +13,6 @@
"@astrojs/mdx": "^4.0.2",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
- "astro": "^5.0.9"
+ "astro": "^5.1.0"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index 0f21527fbd..4e3e495579 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.0.9"
+ "astro": "^5.1.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 8525f8ebae..744421c5b2 100644
--- a/examples/container-with-vitest/package.json
+++ b/examples/container-with-vitest/package.json
@@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/react": "^4.1.1",
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vitest": "^2.1.6"
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 9fc25b59bf..8f7957caac 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -13,6 +13,6 @@
"@astrojs/alpinejs": "^0.4.0",
"@types/alpinejs": "^3.13.10",
"alpinejs": "^3.14.3",
- "astro": "^5.0.9"
+ "astro": "^5.1.0"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index fe6c69e123..38a8b1b75c 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -17,7 +17,7 @@
"@astrojs/vue": "^5.0.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"preact": "^10.24.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 085a22341e..61c145fdb0 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.0.0",
"@preact/signals": "^1.3.0",
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"preact": "^10.24.3"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 0ee7e45d36..be6edc4266 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -13,7 +13,7 @@
"@astrojs/react": "^4.1.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
- "astro": "^5.0.9",
+ "astro": "^5.1.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 8c36830880..750ce5eeb7 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/solid-js": "^5.0.0",
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"solid-js": "^1.9.3"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 6370f3e1a1..5152888d4b 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/svelte": "^7.0.1",
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"svelte": "^5.1.16"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 72cf69b4e1..fb5c78a84b 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@astrojs/vue": "^5.0.2",
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"vue": "^3.5.12"
}
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 720b6ab155..99840b1ae5 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/node": "^9.0.0",
- "astro": "^5.0.9"
+ "astro": "^5.1.0"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index ff38486118..3a11115aa5 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.0.9"
+ "astro": "^5.1.0"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index e4f3111d5d..81a9a7d632 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.0.9"
+ "astro": "^5.1.0"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index e379ed0c77..032b50c05b 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.0.9"
+ "astro": "^5.1.0"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index bc964e069a..f95be5bd37 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/node": "^9.0.0",
"@astrojs/svelte": "^7.0.1",
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"svelte": "^5.1.16"
}
}
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index b97f348dae..d8683c74d3 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -9,7 +9,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"sass": "^1.80.6",
"sharp": "^0.33.3"
}
diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json
index 78cc238802..c474bb662e 100644
--- a/examples/toolbar-app/package.json
+++ b/examples/toolbar-app/package.json
@@ -15,6 +15,6 @@
"./app": "./dist/app.js"
},
"devDependencies": {
- "astro": "^5.0.9"
+ "astro": "^5.1.0"
}
}
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index 13cb197cab..b83cb46818 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/markdoc": "^0.12.3",
- "astro": "^5.0.9"
+ "astro": "^5.1.0"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 8e77f8f605..68b33c8ac0 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/mdx": "^4.0.2",
"@astrojs/preact": "^4.0.0",
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"preact": "^10.24.3"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 3ba3105d6b..18ff2f8bfd 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -12,7 +12,7 @@
"dependencies": {
"@astrojs/preact": "^4.0.0",
"@nanostores/preact": "^0.5.2",
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"nanostores": "^0.11.3",
"preact": "^10.24.3"
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 63a1c53878..ee0bd21137 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -13,7 +13,7 @@
"@astrojs/mdx": "^4.0.2",
"@astrojs/tailwind": "^5.1.3",
"@types/canvas-confetti": "^1.6.4",
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"autoprefixer": "^10.4.20",
"canvas-confetti": "^1.9.3",
"postcss": "^8.4.49",
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index e015d89de7..7f0c368217 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -11,7 +11,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^5.0.9",
+ "astro": "^5.1.0",
"vitest": "^2.1.6"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index c10881e249..6e13b85daf 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,98 @@
# astro
+## 5.1.0
+
+### Minor Changes
+
+- [#12441](https://github.com/withastro/astro/pull/12441) [`b4fec3c`](https://github.com/withastro/astro/commit/b4fec3c7d17ed92dcaaeea5e2545aae6dfd19e53) Thanks [@ascorbic](https://github.com/ascorbic)! - Adds experimental session support
+
+ Sessions are used to store user state between requests for server-rendered pages, such as login status, shopping cart contents, or other user-specific data.
+
+ ```astro
+ ---
+ export const prerender = false; // Not needed in 'server' mode
+ const cart = await Astro.session.get('cart');
+ ---
+
+ 🛒 {cart?.length ?? 0} items
+ ```
+
+ Sessions are available in on-demand rendered/SSR pages, API endpoints, actions and middleware. To enable session support, you must configure a storage driver.
+
+ If you are using the Node.js adapter, you can use the `fs` driver to store session data on the filesystem:
+
+ ```js
+ // astro.config.mjs
+ {
+ adapter: node({ mode: 'standalone' }),
+ experimental: {
+ session: {
+ // Required: the name of the unstorage driver
+ driver: "fs",
+ },
+ },
+ }
+ ```
+
+ If you are deploying to a serverless environment, you can use drivers such as `redis`, `netlify-blobs`, `vercel-kv`, or `cloudflare-kv-binding` and optionally pass additional configuration options.
+
+ For more information, including using the session API with other adapters and a full list of supported drivers, see [the docs for experimental session support](https://docs.astro.build/en/reference/experimental-flags/sessions/). For even more details, and to leave feedback and participate in the development of this feature, [the Sessions RFC](https://github.com/withastro/roadmap/pull/1055).
+
+- [#12426](https://github.com/withastro/astro/pull/12426) [`3dc02c5`](https://github.com/withastro/astro/commit/3dc02c57e4060cb2bde7c4e05d91841dd5dd8eb7) Thanks [@oliverlynch](https://github.com/oliverlynch)! - Improves asset caching of remote images
+
+ Astro will now store [entity tags](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) and the [Last-Modified](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Last-Modified) date for cached remote images and use them to revalidate the cache when it goes stale.
+
+- [#12721](https://github.com/withastro/astro/pull/12721) [`c9d5110`](https://github.com/withastro/astro/commit/c9d51107d0a4b58a9ced486b28d09118f3885254) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds a new `getActionPath()` helper available from `astro:actions`
+
+ Astro 5.1 introduces a new helper function, `getActionPath()` to give you more flexibility when calling your action.
+
+ Calling `getActionPath()` with your action returns its URL path so you can make a `fetch()` request with custom headers, or use your action with an API such as `navigator.sendBeacon()`. Then, you can [handle the custom-formatted returned data](https://docs.astro.build/en/guides/actions/#handling-returned-data) as needed, just as if you had called an action directly.
+
+ This example shows how to call a defined `like` action passing the `Authorization` header and the [`keepalive`](https://developer.mozilla.org/en-US/docs/Web/API/Request/keepalive) option:
+
+ ```astro
+
+ ```
+
+ This example shows how to call the same `like` action using the [`sendBeacon`](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/sendBeacon) API:
+
+ ```astro
+
+ ```
+
+### Patch Changes
+
+- [#12786](https://github.com/withastro/astro/pull/12786) [`e56af4a`](https://github.com/withastro/astro/commit/e56af4a3d7039673658e4a014158969ea5076e32) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where Astro i18n didn't properly show the 404 page when using fallback and the option `prefixDefaultLocale` set to `true`.
+
+- [#12758](https://github.com/withastro/astro/pull/12758) [`483da89`](https://github.com/withastro/astro/commit/483da89cf68d68ec792ff8721d469ed10dc14e4a) Thanks [@delucis](https://github.com/delucis)! - Adds types for `?url&inline` and `?url&no-inline` [import queries](https://vite.dev/guide/assets.html#explicit-inline-handling) added in Vite 6
+
+- [#12763](https://github.com/withastro/astro/pull/12763) [`8da2318`](https://github.com/withastro/astro/commit/8da231855162af245f2b3664babb68dff0ba390f) Thanks [@rbsummers](https://github.com/rbsummers)! - Fixed changes to vite configuration made in the astro:build:setup integration hook having no effect when target is "client"
+
+- [#12767](https://github.com/withastro/astro/pull/12767) [`36c1e06`](https://github.com/withastro/astro/commit/36c1e0697da9fdc453a7a9a3c84e0e79cd0cb376) Thanks [@ascorbic](https://github.com/ascorbic)! - Clears the content layer cache when the Astro config is changed
+
## 5.0.9
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 1fdee574b8..eccee64a67 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "5.0.9",
+ "version": "5.1.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/pnpm-lock.yaml b/pnpm-lock.yaml
index 2b765a0a70..4d1eb4f95e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -142,7 +142,7 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
examples/blog:
@@ -157,13 +157,13 @@ importers:
specifier: ^3.2.1
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
examples/container-with-vitest:
@@ -172,7 +172,7 @@ importers:
specifier: ^4.1.1
version: link:../../packages/integrations/react
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -203,7 +203,7 @@ importers:
specifier: ^3.14.3
version: 3.14.3
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
examples/framework-multiple:
@@ -230,7 +230,7 @@ importers:
specifier: ^18.3.1
version: 18.3.1
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
preact:
specifier: ^10.24.3
@@ -260,7 +260,7 @@ importers:
specifier: ^1.3.0
version: 1.3.0(preact@10.24.3)
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
preact:
specifier: ^10.24.3
@@ -278,7 +278,7 @@ importers:
specifier: ^18.3.1
version: 18.3.1
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -293,7 +293,7 @@ importers:
specifier: ^5.0.0
version: link:../../packages/integrations/solid
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
solid-js:
specifier: ^1.9.3
@@ -305,7 +305,7 @@ importers:
specifier: ^7.0.1
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
svelte:
specifier: ^5.1.16
@@ -317,7 +317,7 @@ importers:
specifier: ^5.0.2
version: link:../../packages/integrations/vue
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
vue:
specifier: ^3.5.12
@@ -329,25 +329,25 @@ importers:
specifier: ^9.0.0
version: 9.0.0(astro@packages+astro)
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
examples/minimal:
dependencies:
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
examples/ssr:
@@ -359,7 +359,7 @@ importers:
specifier: ^7.0.1
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
svelte:
specifier: ^5.1.16
@@ -368,7 +368,7 @@ importers:
examples/starlog:
dependencies:
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
sass:
specifier: ^1.80.6
@@ -380,7 +380,7 @@ importers:
examples/toolbar-app:
devDependencies:
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
examples/with-markdoc:
@@ -389,7 +389,7 @@ importers:
specifier: ^0.12.3
version: link:../../packages/integrations/markdoc
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
examples/with-mdx:
@@ -401,7 +401,7 @@ importers:
specifier: ^4.0.0
version: link:../../packages/integrations/preact
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
preact:
specifier: ^10.24.3
@@ -416,7 +416,7 @@ importers:
specifier: ^0.5.2
version: 0.5.2(nanostores@0.11.3)(preact@10.24.3)
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
nanostores:
specifier: ^0.11.3
@@ -437,7 +437,7 @@ importers:
specifier: ^1.6.4
version: 1.6.4
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
autoprefixer:
specifier: ^10.4.20
@@ -455,7 +455,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^5.0.9
+ specifier: ^5.1.0
version: link:../../packages/astro
vitest:
specifier: ^2.1.6
@@ -9111,7 +9111,6 @@ packages:
libsql@0.4.5:
resolution: {integrity: sha512-sorTJV6PNt94Wap27Sai5gtVLIea4Otb2LUiAUyr3p6BPOScGMKGt5F1b5X/XgkNtcsDKeX5qfeBDj+PdShclQ==}
- cpu: [x64, arm64, wasm32]
os: [darwin, linux, win32]
lilconfig@2.1.0:
@@ -11159,9 +11158,6 @@ packages:
resolution: {integrity: sha512-M/wqwtOEjgb956/+m5ZrYT/Iq6Hax0OakWbokj8+9PXOnB7b/4AxESHieEtnNEy7ZpjsjYW1/5nK8fATQMmRxw==}
peerDependencies:
vue: '>=3.2.13'
- peerDependenciesMeta:
- vue:
- optional: true
vite@5.4.11:
resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
@@ -17981,7 +17977,6 @@ snapshots:
vite-svg-loader@5.1.0(vue@3.5.13(typescript@5.7.2)):
dependencies:
svgo: 3.3.2
- optionalDependencies:
vue: 3.5.13(typescript@5.7.2)
vite@5.4.11(@types/node@18.19.50)(sass@1.82.0):