summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.changeset/calm-beans-roll.md5
-rw-r--r--.changeset/ninety-nights-hug.md7
-rw-r--r--.changeset/slick-radios-draw.md17
-rw-r--r--.changeset/twenty-dogs-listen.md51
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog/package.json4
-rw-r--r--examples/component/package.json2
-rw-r--r--examples/container-with-vitest/package.json4
-rw-r--r--examples/framework-alpine/package.json4
-rw-r--r--examples/framework-multiple/package.json12
-rw-r--r--examples/framework-preact/package.json4
-rw-r--r--examples/framework-react/package.json4
-rw-r--r--examples/framework-solid/package.json4
-rw-r--r--examples/framework-svelte/package.json4
-rw-r--r--examples/framework-vue/package.json4
-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.json4
-rw-r--r--examples/starlog/package.json2
-rw-r--r--examples/toolbar-app/package.json2
-rw-r--r--examples/with-markdoc/package.json4
-rw-r--r--examples/with-mdx/package.json6
-rw-r--r--examples/with-nanostores/package.json4
-rw-r--r--examples/with-tailwindcss/package.json4
-rw-r--r--examples/with-vitest/package.json2
-rw-r--r--packages/astro/CHANGELOG.md12
-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/alpinejs/CHANGELOG.md6
-rw-r--r--packages/integrations/alpinejs/package.json2
-rw-r--r--packages/integrations/cloudflare/CHANGELOG.md57
-rw-r--r--packages/integrations/cloudflare/package.json2
-rw-r--r--packages/integrations/markdoc/CHANGELOG.md6
-rw-r--r--packages/integrations/markdoc/package.json2
-rw-r--r--packages/integrations/mdx/CHANGELOG.md6
-rw-r--r--packages/integrations/mdx/package.json2
-rw-r--r--packages/integrations/netlify/CHANGELOG.md9
-rw-r--r--packages/integrations/netlify/package.json2
-rw-r--r--packages/integrations/preact/CHANGELOG.md6
-rw-r--r--packages/integrations/preact/package.json2
-rw-r--r--packages/integrations/react/CHANGELOG.md6
-rw-r--r--packages/integrations/react/package.json2
-rw-r--r--packages/integrations/solid/CHANGELOG.md6
-rw-r--r--packages/integrations/solid/package.json2
-rw-r--r--packages/integrations/svelte/CHANGELOG.md6
-rw-r--r--packages/integrations/svelte/package.json2
-rw-r--r--packages/integrations/vue/CHANGELOG.md6
-rw-r--r--packages/integrations/vue/package.json2
-rw-r--r--packages/studio/CHANGELOG.md6
-rw-r--r--packages/studio/package.json2
-rw-r--r--pnpm-lock.yaml85
54 files changed, 238 insertions, 178 deletions
diff --git a/.changeset/calm-beans-roll.md b/.changeset/calm-beans-roll.md
deleted file mode 100644
index ac00de5d6..000000000
--- a/.changeset/calm-beans-roll.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-The `ActionAPIContext.rewrite` method is deprecated and will be removed in a future major version of Astro
diff --git a/.changeset/ninety-nights-hug.md b/.changeset/ninety-nights-hug.md
deleted file mode 100644
index aa4017497..000000000
--- a/.changeset/ninety-nights-hug.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'astro': patch
----
-
-Fixes a bug where the functions `Astro.preferredLocale` and `Astro.preferredLocaleList` would return the incorrect locales
-when the Astro configuration specifies a list of `codes`. Before, the functions would return the `path`, instead now the functions
-return a list built from `codes`.
diff --git a/.changeset/slick-radios-draw.md b/.changeset/slick-radios-draw.md
deleted file mode 100644
index 0d8b9dcd7..000000000
--- a/.changeset/slick-radios-draw.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-'@astrojs/cloudflare': patch
-'@astrojs/alpinejs': patch
-'@astrojs/markdoc': patch
-'@astrojs/netlify': patch
-'@astrojs/preact': patch
-'@astrojs/svelte': patch
-'@astrojs/react': patch
-'@astrojs/solid-js': patch
-'@astrojs/mdx': patch
-'@astrojs/vue': patch
-'@astrojs/studio': patch
-'astro': patch
-'@astrojs/db': patch
----
-
-update `vite` to the latest version
diff --git a/.changeset/twenty-dogs-listen.md b/.changeset/twenty-dogs-listen.md
deleted file mode 100644
index de765d110..000000000
--- a/.changeset/twenty-dogs-listen.md
+++ /dev/null
@@ -1,51 +0,0 @@
----
-'@astrojs/cloudflare': minor
----
-
-Automatically configures Cloudflare KV storage when experimental sessions are enabled
-
-
-If the `experimental.session` flag is enabled when using the Cloudflare adapter, Astro will automatically configure the session storage using the Cloudflare KV driver. You can still manually configure the session storage if you need to use a different driver or want to customize the session storage configuration. If you want to use sessions, you will need to create the KV namespace and declare it in your wrangler config. You can do this using the Wrangler CLI:
-
-```sh
-npx wrangler kv namespace create SESSION
-```
-
-This will log the id of the created namespace. You can then add it to your `wrangler.json`/`wrangler.toml` file like this:
-
-```jsonc
-// wrangler.json
-{
- "kv_namespaces": [
- {
- "binding": "SESSION",
- "id": "<your kv namespace id here>"
- }
- ]
-}
-```
-
-By default it uses the binding name `SESSION`, but if you want to use a different binding name you can do so by passing the `sessionKVBindingName` option to the adapter. For example:
-
-```js
-import { defineConfig } from 'astro/config';
-import cloudflare from '@astrojs/cloudflare';
-export default defineConfig({
- output: 'server',
- site: `http://example.com`,
- adapter: cloudflare({
- platformProxy: {
- enabled: true,
- },
- sessionKVBindingName: 'MY_SESSION',
- }),
- experimental: {
- session: true,
- }
-});
-
-```
-
-See [the Cloudflare KV docs](https://developers.cloudflare.com/kv/concepts/kv-namespaces/) for more details on setting up KV namespaces.
-
-See [the experimental session docs](https://docs.astro.build/en/reference/experimental-flags/sessions/) for more information on configuring session storage.
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 482f3a674..778766eb2 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.5.5"
+ "astro": "^5.5.6"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index d2f14bdb8..62fe19449 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -10,9 +10,9 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/mdx": "^4.2.2",
+ "@astrojs/mdx": "^4.2.3",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.3.0",
- "astro": "^5.5.5"
+ "astro": "^5.5.6"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index 18db2f220..d44b7c818 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.5.5"
+ "astro": "^5.5.6"
},
"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 bef491060..59b81032e 100644
--- a/examples/container-with-vitest/package.json
+++ b/examples/container-with-vitest/package.json
@@ -11,8 +11,8 @@
"test": "vitest run"
},
"dependencies": {
- "@astrojs/react": "^4.2.2",
- "astro": "^5.5.5",
+ "@astrojs/react": "^4.2.3",
+ "astro": "^5.5.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vitest": "^3.0.9"
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index dd8c45c7b..9cfbece26 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -10,9 +10,9 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/alpinejs": "^0.4.4",
+ "@astrojs/alpinejs": "^0.4.5",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.14.9",
- "astro": "^5.5.5"
+ "astro": "^5.5.6"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 6faeb588f..7ae0cf9d1 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -10,14 +10,14 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/preact": "^4.0.7",
- "@astrojs/react": "^4.2.2",
- "@astrojs/solid-js": "^5.0.6",
- "@astrojs/svelte": "^7.0.8",
- "@astrojs/vue": "^5.0.8",
+ "@astrojs/preact": "^4.0.8",
+ "@astrojs/react": "^4.2.3",
+ "@astrojs/solid-js": "^5.0.7",
+ "@astrojs/svelte": "^7.0.9",
+ "@astrojs/vue": "^5.0.9",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.5",
- "astro": "^5.5.5",
+ "astro": "^5.5.6",
"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 422341f23..7f11b5f7b 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -10,9 +10,9 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/preact": "^4.0.7",
+ "@astrojs/preact": "^4.0.8",
"@preact/signals": "^2.0.2",
- "astro": "^5.5.5",
+ "astro": "^5.5.6",
"preact": "^10.26.4"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index d7ecb04df..eac4eb9d0 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -10,10 +10,10 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/react": "^4.2.2",
+ "@astrojs/react": "^4.2.3",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.5",
- "astro": "^5.5.5",
+ "astro": "^5.5.6",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index ee5677d47..e29f7a415 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -10,8 +10,8 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/solid-js": "^5.0.6",
- "astro": "^5.5.5",
+ "@astrojs/solid-js": "^5.0.7",
+ "astro": "^5.5.6",
"solid-js": "^1.9.5"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 1f2fc1e75..c8ea5d1cf 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -10,8 +10,8 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/svelte": "^7.0.8",
- "astro": "^5.5.5",
+ "@astrojs/svelte": "^7.0.9",
+ "astro": "^5.5.6",
"svelte": "^5.25.3"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 4c573c9de..8a2de94d8 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -10,8 +10,8 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/vue": "^5.0.8",
- "astro": "^5.5.5",
+ "@astrojs/vue": "^5.0.9",
+ "astro": "^5.5.6",
"vue": "^3.5.13"
}
}
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 34eea701a..6ca42b4fa 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -11,6 +11,6 @@
},
"dependencies": {
"@astrojs/node": "^9.1.3",
- "astro": "^5.5.5"
+ "astro": "^5.5.6"
}
}
diff --git a/examples/integration/package.json b/examples/integration/package.json
index eb0f4715a..1cbf2fb9b 100644
--- a/examples/integration/package.json
+++ b/examples/integration/package.json
@@ -15,7 +15,7 @@
],
"scripts": {},
"devDependencies": {
- "astro": "^5.5.5"
+ "astro": "^5.5.6"
},
"peerDependencies": {
"astro": "^4.0.0"
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 57b32ddb8..0252013a5 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.5.5"
+ "astro": "^5.5.6"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 04c485f3a..c12a579fc 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,6 +10,6 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.5.5"
+ "astro": "^5.5.6"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index b28cc71af..d9714fcaf 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -12,8 +12,8 @@
},
"dependencies": {
"@astrojs/node": "^9.1.3",
- "@astrojs/svelte": "^7.0.8",
- "astro": "^5.5.5",
+ "@astrojs/svelte": "^7.0.9",
+ "astro": "^5.5.6",
"svelte": "^5.25.3"
}
}
diff --git a/examples/starlog/package.json b/examples/starlog/package.json
index 978e385ee..d264f5969 100644
--- a/examples/starlog/package.json
+++ b/examples/starlog/package.json
@@ -9,7 +9,7 @@
"astro": "astro"
},
"dependencies": {
- "astro": "^5.5.5",
+ "astro": "^5.5.6",
"sass": "^1.86.0",
"sharp": "^0.33.3"
}
diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json
index 8c41c85e2..adcf8bb21 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.5.5"
+ "astro": "^5.5.6"
}
}
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json
index 792dcb6fb..486cc461d 100644
--- a/examples/with-markdoc/package.json
+++ b/examples/with-markdoc/package.json
@@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/markdoc": "^0.13.2",
- "astro": "^5.5.5"
+ "@astrojs/markdoc": "^0.13.3",
+ "astro": "^5.5.6"
}
}
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 0a1c94ad9..a4d27f8c3 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -10,9 +10,9 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/mdx": "^4.2.2",
- "@astrojs/preact": "^4.0.7",
- "astro": "^5.5.5",
+ "@astrojs/mdx": "^4.2.3",
+ "@astrojs/preact": "^4.0.8",
+ "astro": "^5.5.6",
"preact": "^10.26.4"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 73e270650..444c47d2a 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -10,9 +10,9 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/preact": "^4.0.7",
+ "@astrojs/preact": "^4.0.8",
"@nanostores/preact": "^0.5.2",
- "astro": "^5.5.5",
+ "astro": "^5.5.6",
"nanostores": "^0.11.4",
"preact": "^10.26.4"
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 97c47a03a..e96f6de09 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -10,10 +10,10 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/mdx": "^4.2.2",
+ "@astrojs/mdx": "^4.2.3",
"@tailwindcss/vite": "^4.0.17",
"@types/canvas-confetti": "^1.9.0",
- "astro": "^5.5.5",
+ "astro": "^5.5.6",
"canvas-confetti": "^1.9.3",
"tailwindcss": "^4.0.17"
}
diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json
index 0ae45b4f9..16612a1f9 100644
--- a/examples/with-vitest/package.json
+++ b/examples/with-vitest/package.json
@@ -11,7 +11,7 @@
"test": "vitest"
},
"dependencies": {
- "astro": "^5.5.5",
+ "astro": "^5.5.6",
"vitest": "^3.0.9"
}
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index 9e4352a35..b024fc6c9 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,17 @@
# astro
+## 5.5.6
+
+### Patch Changes
+
+- [#13429](https://github.com/withastro/astro/pull/13429) [`06de673`](https://github.com/withastro/astro/commit/06de673375f2339eb1bf8eda03d79177598979a9) Thanks [@ematipico](https://github.com/ematipico)! - The `ActionAPIContext.rewrite` method is deprecated and will be removed in a future major version of Astro
+
+- [#13524](https://github.com/withastro/astro/pull/13524) [`82cd583`](https://github.com/withastro/astro/commit/82cd5832860d70ea7524473ae927db0cc2682b12) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where the functions `Astro.preferredLocale` and `Astro.preferredLocaleList` would return the incorrect locales
+ when the Astro configuration specifies a list of `codes`. Before, the functions would return the `path`, instead now the functions
+ return a list built from `codes`.
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
## 5.5.5
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index b4f03a834..f60ba4325 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "5.5.5",
+ "version": "5.5.6",
"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 547b18be4..d3816468d 100644
--- a/packages/db/CHANGELOG.md
+++ b/packages/db/CHANGELOG.md
@@ -1,5 +1,14 @@
# @astrojs/db
+## 0.14.10
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
+- Updated dependencies [[`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3)]:
+ - @astrojs/studio@0.1.6
+
## 0.14.9
### Patch Changes
diff --git a/packages/db/package.json b/packages/db/package.json
index 1431b8922..5bdfb6470 100644
--- a/packages/db/package.json
+++ b/packages/db/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/db",
- "version": "0.14.9",
+ "version": "0.14.10",
"description": "Add libSQL and Astro Studio support to your Astro site",
"license": "MIT",
"repository": {
diff --git a/packages/integrations/alpinejs/CHANGELOG.md b/packages/integrations/alpinejs/CHANGELOG.md
index c7c21753a..795833d42 100644
--- a/packages/integrations/alpinejs/CHANGELOG.md
+++ b/packages/integrations/alpinejs/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/alpinejs
+## 0.4.5
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
## 0.4.4
### Patch Changes
diff --git a/packages/integrations/alpinejs/package.json b/packages/integrations/alpinejs/package.json
index 4ac5ae595..d4b38f6f0 100644
--- a/packages/integrations/alpinejs/package.json
+++ b/packages/integrations/alpinejs/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/alpinejs",
"description": "Use Alpine within Astro",
- "version": "0.4.4",
+ "version": "0.4.5",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md
index 4e90a3dbe..338142237 100644
--- a/packages/integrations/cloudflare/CHANGELOG.md
+++ b/packages/integrations/cloudflare/CHANGELOG.md
@@ -1,5 +1,62 @@
# @astrojs/cloudflare
+## 12.4.0
+
+### Minor Changes
+
+- [#13514](https://github.com/withastro/astro/pull/13514) [`a9aafec`](https://github.com/withastro/astro/commit/a9aafec47a4d8a92c826663dca2f9850643651ec) Thanks [@ascorbic](https://github.com/ascorbic)! - Automatically configures Cloudflare KV storage when experimental sessions are enabled
+
+ If the `experimental.session` flag is enabled when using the Cloudflare adapter, Astro will automatically configure the session storage using the Cloudflare KV driver. You can still manually configure the session storage if you need to use a different driver or want to customize the session storage configuration. If you want to use sessions, you will need to create the KV namespace and declare it in your wrangler config. You can do this using the Wrangler CLI:
+
+ ```sh
+ npx wrangler kv namespace create SESSION
+ ```
+
+ This will log the id of the created namespace. You can then add it to your `wrangler.json`/`wrangler.toml` file like this:
+
+ ```jsonc
+ // wrangler.json
+ {
+ "kv_namespaces": [
+ {
+ "binding": "SESSION",
+ "id": "<your kv namespace id here>",
+ },
+ ],
+ }
+ ```
+
+ By default it uses the binding name `SESSION`, but if you want to use a different binding name you can do so by passing the `sessionKVBindingName` option to the adapter. For example:
+
+ ```js
+ import { defineConfig } from 'astro/config';
+ import cloudflare from '@astrojs/cloudflare';
+ export default defineConfig({
+ output: 'server',
+ site: `http://example.com`,
+ adapter: cloudflare({
+ platformProxy: {
+ enabled: true,
+ },
+ sessionKVBindingName: 'MY_SESSION',
+ }),
+ experimental: {
+ session: true,
+ },
+ });
+ ```
+
+ See [the Cloudflare KV docs](https://developers.cloudflare.com/kv/concepts/kv-namespaces/) for more details on setting up KV namespaces.
+
+ See [the experimental session docs](https://docs.astro.build/en/reference/experimental-flags/sessions/) for more information on configuring session storage.
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
+- Updated dependencies []:
+ - @astrojs/underscore-redirects@0.6.0
+
## 12.3.1
### Patch Changes
diff --git a/packages/integrations/cloudflare/package.json b/packages/integrations/cloudflare/package.json
index fcc51d44b..dc83e662e 100644
--- a/packages/integrations/cloudflare/package.json
+++ b/packages/integrations/cloudflare/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/cloudflare",
"description": "Deploy your site to Cloudflare Workers/Pages",
- "version": "12.3.1",
+ "version": "12.4.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/markdoc/CHANGELOG.md b/packages/integrations/markdoc/CHANGELOG.md
index b4c0f1a01..c285ad472 100644
--- a/packages/integrations/markdoc/CHANGELOG.md
+++ b/packages/integrations/markdoc/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/markdoc
+## 0.13.3
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
## 0.13.2
### Patch Changes
diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json
index 7a6bd3d6c..d40884bf8 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.13.2",
+ "version": "0.13.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/mdx/CHANGELOG.md b/packages/integrations/mdx/CHANGELOG.md
index a185942c2..9b40bc062 100644
--- a/packages/integrations/mdx/CHANGELOG.md
+++ b/packages/integrations/mdx/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/mdx
+## 4.2.3
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
## 4.2.2
### Patch Changes
diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json
index f0f16d490..d58360329 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.2.2",
+ "version": "4.2.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md
index f97e02a6a..e94f42ced 100644
--- a/packages/integrations/netlify/CHANGELOG.md
+++ b/packages/integrations/netlify/CHANGELOG.md
@@ -1,5 +1,14 @@
# @astrojs/netlify
+## 6.2.5
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
+- Updated dependencies []:
+ - @astrojs/underscore-redirects@0.6.0
+
## 6.2.4
### Patch Changes
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index 8c9c24e54..a971923e0 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.2.4",
+ "version": "6.2.5",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md
index a8bf93559..906b64a85 100644
--- a/packages/integrations/preact/CHANGELOG.md
+++ b/packages/integrations/preact/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/preact
+## 4.0.8
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
## 4.0.7
### Patch Changes
diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json
index fae3acfbe..8c94b655e 100644
--- a/packages/integrations/preact/package.json
+++ b/packages/integrations/preact/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/preact",
"description": "Use Preact components within Astro",
- "version": "4.0.7",
+ "version": "4.0.8",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md
index f8f2d366d..e17acc3e6 100644
--- a/packages/integrations/react/CHANGELOG.md
+++ b/packages/integrations/react/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/react
+## 4.2.3
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
## 4.2.2
### Patch Changes
diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json
index 5c6fb608b..49b1907b8 100644
--- a/packages/integrations/react/package.json
+++ b/packages/integrations/react/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/react",
"description": "Use React components within Astro",
- "version": "4.2.2",
+ "version": "4.2.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md
index 8c96d18db..31298c929 100644
--- a/packages/integrations/solid/CHANGELOG.md
+++ b/packages/integrations/solid/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/solid-js
+## 5.0.7
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
## 5.0.6
### Patch Changes
diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json
index eba5d12f5..235873dc3 100644
--- a/packages/integrations/solid/package.json
+++ b/packages/integrations/solid/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/solid-js",
- "version": "5.0.6",
+ "version": "5.0.7",
"description": "Use Solid components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/integrations/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md
index c7b06bc92..22605fbcc 100644
--- a/packages/integrations/svelte/CHANGELOG.md
+++ b/packages/integrations/svelte/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/svelte
+## 7.0.9
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
## 7.0.8
### Patch Changes
diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json
index aa36f62c6..ebc32e0a3 100644
--- a/packages/integrations/svelte/package.json
+++ b/packages/integrations/svelte/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/svelte",
- "version": "7.0.8",
+ "version": "7.0.9",
"description": "Use Svelte components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md
index 2fa891158..38eddca3e 100644
--- a/packages/integrations/vue/CHANGELOG.md
+++ b/packages/integrations/vue/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/vue
+## 5.0.9
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
## 5.0.8
### Patch Changes
diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json
index f8f8a4eeb..639e6a24f 100644
--- a/packages/integrations/vue/package.json
+++ b/packages/integrations/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/vue",
- "version": "5.0.8",
+ "version": "5.0.9",
"description": "Use Vue components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/studio/CHANGELOG.md b/packages/studio/CHANGELOG.md
index c25549228..f8d301b65 100644
--- a/packages/studio/CHANGELOG.md
+++ b/packages/studio/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/studio
+## 0.1.6
+
+### Patch Changes
+
+- [#13526](https://github.com/withastro/astro/pull/13526) [`ff9d69e`](https://github.com/withastro/astro/commit/ff9d69e3443c80059c54f6296d19f66bb068ead3) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update `vite` to the latest version
+
## 0.1.5
### Patch Changes
diff --git a/packages/studio/package.json b/packages/studio/package.json
index 622d8ffd1..722fa906b 100644
--- a/packages/studio/package.json
+++ b/packages/studio/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/studio",
- "version": "0.1.5",
+ "version": "0.1.6",
"description": "Internal package powering integrations between Astro projects and Astro Studio",
"license": "MIT",
"repository": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 8c7d9f50b..37292c7ba 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -142,13 +142,13 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
examples/blog:
dependencies:
'@astrojs/mdx':
- specifier: ^4.2.2
+ specifier: ^4.2.3
version: link:../../packages/integrations/mdx
'@astrojs/rss':
specifier: ^4.0.11
@@ -157,22 +157,22 @@ importers:
specifier: ^3.3.0
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
examples/container-with-vitest:
dependencies:
'@astrojs/react':
- specifier: ^4.2.2
+ specifier: ^4.2.3
version: link:../../packages/integrations/react
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -194,7 +194,7 @@ importers:
examples/framework-alpine:
dependencies:
'@astrojs/alpinejs':
- specifier: ^0.4.4
+ specifier: ^0.4.5
version: link:../../packages/integrations/alpinejs
'@types/alpinejs':
specifier: ^3.13.11
@@ -203,25 +203,25 @@ importers:
specifier: ^3.14.9
version: 3.14.9
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
examples/framework-multiple:
dependencies:
'@astrojs/preact':
- specifier: ^4.0.7
+ specifier: ^4.0.8
version: link:../../packages/integrations/preact
'@astrojs/react':
- specifier: ^4.2.2
+ specifier: ^4.2.3
version: link:../../packages/integrations/react
'@astrojs/solid-js':
- specifier: ^5.0.6
+ specifier: ^5.0.7
version: link:../../packages/integrations/solid
'@astrojs/svelte':
- specifier: ^7.0.8
+ specifier: ^7.0.9
version: link:../../packages/integrations/svelte
'@astrojs/vue':
- specifier: ^5.0.8
+ specifier: ^5.0.9
version: link:../../packages/integrations/vue
'@types/react':
specifier: ^18.3.20
@@ -230,7 +230,7 @@ importers:
specifier: ^18.3.5
version: 18.3.5(@types/react@18.3.20)
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
preact:
specifier: ^10.26.4
@@ -254,13 +254,13 @@ importers:
examples/framework-preact:
dependencies:
'@astrojs/preact':
- specifier: ^4.0.7
+ specifier: ^4.0.8
version: link:../../packages/integrations/preact
'@preact/signals':
specifier: ^2.0.2
version: 2.0.2(preact@10.26.4)
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
preact:
specifier: ^10.26.4
@@ -269,7 +269,7 @@ importers:
examples/framework-react:
dependencies:
'@astrojs/react':
- specifier: ^4.2.2
+ specifier: ^4.2.3
version: link:../../packages/integrations/react
'@types/react':
specifier: ^18.3.20
@@ -278,7 +278,7 @@ importers:
specifier: ^18.3.5
version: 18.3.5(@types/react@18.3.20)
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
react:
specifier: ^18.3.1
@@ -290,10 +290,10 @@ importers:
examples/framework-solid:
dependencies:
'@astrojs/solid-js':
- specifier: ^5.0.6
+ specifier: ^5.0.7
version: link:../../packages/integrations/solid
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
solid-js:
specifier: ^1.9.5
@@ -302,10 +302,10 @@ importers:
examples/framework-svelte:
dependencies:
'@astrojs/svelte':
- specifier: ^7.0.8
+ specifier: ^7.0.9
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
svelte:
specifier: ^5.25.3
@@ -314,10 +314,10 @@ importers:
examples/framework-vue:
dependencies:
'@astrojs/vue':
- specifier: ^5.0.8
+ specifier: ^5.0.9
version: link:../../packages/integrations/vue
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
vue:
specifier: ^3.5.13
@@ -329,25 +329,25 @@ importers:
specifier: ^9.1.3
version: link:../../packages/integrations/node
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
examples/minimal:
dependencies:
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
examples/ssr:
@@ -356,10 +356,10 @@ importers:
specifier: ^9.1.3
version: link:../../packages/integrations/node
'@astrojs/svelte':
- specifier: ^7.0.8
+ specifier: ^7.0.9
version: link:../../packages/integrations/svelte
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
svelte:
specifier: ^5.25.3
@@ -368,7 +368,7 @@ importers:
examples/starlog:
dependencies:
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
sass:
specifier: ^1.86.0
@@ -383,28 +383,28 @@ importers:
specifier: ^18.17.8
version: 18.19.50
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
examples/with-markdoc:
dependencies:
'@astrojs/markdoc':
- specifier: ^0.13.2
+ specifier: ^0.13.3
version: link:../../packages/integrations/markdoc
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
examples/with-mdx:
dependencies:
'@astrojs/mdx':
- specifier: ^4.2.2
+ specifier: ^4.2.3
version: link:../../packages/integrations/mdx
'@astrojs/preact':
- specifier: ^4.0.7
+ specifier: ^4.0.8
version: link:../../packages/integrations/preact
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
preact:
specifier: ^10.26.4
@@ -413,13 +413,13 @@ importers:
examples/with-nanostores:
dependencies:
'@astrojs/preact':
- specifier: ^4.0.7
+ specifier: ^4.0.8
version: link:../../packages/integrations/preact
'@nanostores/preact':
specifier: ^0.5.2
version: 0.5.2(nanostores@0.11.4)(preact@10.26.4)
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
nanostores:
specifier: ^0.11.4
@@ -431,7 +431,7 @@ importers:
examples/with-tailwindcss:
dependencies:
'@astrojs/mdx':
- specifier: ^4.2.2
+ specifier: ^4.2.3
version: link:../../packages/integrations/mdx
'@tailwindcss/vite':
specifier: ^4.0.17
@@ -440,7 +440,7 @@ importers:
specifier: ^1.9.0
version: 1.9.0
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
canvas-confetti:
specifier: ^1.9.3
@@ -452,7 +452,7 @@ importers:
examples/with-vitest:
dependencies:
astro:
- specifier: ^5.5.5
+ specifier: ^5.5.6
version: link:../../packages/astro
vitest:
specifier: ^3.0.9
@@ -9947,7 +9947,6 @@ packages:
libsql@0.5.3:
resolution: {integrity: sha512-S3WR8WNCJV1VXraBFUKjDA6+8LcNDJMLm+83qohm1O3YM1iVqV2+/XN3SXOxpxVjuL4g/rLrjO5kzygkPefCFQ==}
- cpu: [x64, arm64, wasm32]
os: [darwin, linux, win32]
lightningcss-darwin-arm64@1.29.2: