summaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/CHANGELOG.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-05-18 09:31:59 -0700
committerGravatar GitHub <noreply@github.com> 2023-05-18 12:31:59 -0400
commit31cbf4357e866abab62bb4ccf949f5a59aec06ac (patch)
treefdf22a00c332e3082b3d369c3eda497892351f0d /packages/integrations/cloudflare/CHANGELOG.md
parentdad105a91e2d9b59cfd6aba7703207ba08841c10 (diff)
downloadastro-31cbf4357e866abab62bb4ccf949f5a59aec06ac.tar.gz
astro-31cbf4357e866abab62bb4ccf949f5a59aec06ac.tar.zst
astro-31cbf4357e866abab62bb4ccf949f5a59aec06ac.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/cloudflare/CHANGELOG.md')
-rw-r--r--packages/integrations/cloudflare/CHANGELOG.md49
1 files changed, 49 insertions, 0 deletions
diff --git a/packages/integrations/cloudflare/CHANGELOG.md b/packages/integrations/cloudflare/CHANGELOG.md
index 32e477035..39e91ea04 100644
--- a/packages/integrations/cloudflare/CHANGELOG.md
+++ b/packages/integrations/cloudflare/CHANGELOG.md
@@ -1,5 +1,54 @@
# @astrojs/cloudflare
+## 6.3.0
+
+### Minor Changes
+
+- [#7092](https://github.com/withastro/astro/pull/7092) [`2a1fa09b3`](https://github.com/withastro/astro/commit/2a1fa09b3199ae35801dd0d02ae293198d9a7382) Thanks [@johannesspohr](https://github.com/johannesspohr)! - Add `worked` and `worker` import condition for worker bundling
+
+### Patch Changes
+
+- [#6991](https://github.com/withastro/astro/pull/6991) [`719002ca5`](https://github.com/withastro/astro/commit/719002ca5b128744fb4316d4a52c5dcd46a42759) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Enable experimental support for hybrid SSR with pre-rendering enabled by default
+
+ **astro.config.mjs**
+
+ ```js
+ import { defineConfig } from 'astro/config';
+ export defaultdefineConfig({
+ output: 'hybrid',
+ experimental: {
+ hybridOutput: true,
+ },
+ })
+ ```
+
+ Then add `export const prerender = false` to any page or endpoint you want to opt-out of pre-rendering.
+
+ **src/pages/contact.astro**
+
+ ```astro
+ ---
+ export const prerender = false;
+
+ if (Astro.request.method === 'POST') {
+ // handle form submission
+ }
+ ---
+
+ <form method="POST">
+ <input type="text" name="name" />
+ <input type="email" name="email" />
+ <button type="submit">Submit</button>
+ </form>
+ ```
+
+- [#7101](https://github.com/withastro/astro/pull/7101) [`2994bc52d`](https://github.com/withastro/astro/commit/2994bc52d360bf7ca3681c5f6976e64577cf5209) Thanks [@bluwy](https://github.com/bluwy)! - Always build edge/worker runtime with Vite `webworker` SSR target
+
+- [#7104](https://github.com/withastro/astro/pull/7104) [`826e02890`](https://github.com/withastro/astro/commit/826e0289005f645b902375b98d5549c6a95ccafa) Thanks [@bluwy](https://github.com/bluwy)! - Specify `"files"` field to only publish necessary files
+
+- Updated dependencies [[`4516d7b22`](https://github.com/withastro/astro/commit/4516d7b22c5979cde4537f196b53ae2826ba9561), [`e186ecc5e`](https://github.com/withastro/astro/commit/e186ecc5e292de8c6a2c441a2d588512c0813068), [`c6d7ebefd`](https://github.com/withastro/astro/commit/c6d7ebefdd554a9ef29cfeb426ac55cab80d6473), [`914c439bc`](https://github.com/withastro/astro/commit/914c439bccee9fec002c6d92beaa501c398e62ac), [`e9fc2c221`](https://github.com/withastro/astro/commit/e9fc2c2213036d47cd30a47a6cdad5633481a0f8), [`075eee08f`](https://github.com/withastro/astro/commit/075eee08f2e2b0baea008b97f3523f2cb937ee44), [`719002ca5`](https://github.com/withastro/astro/commit/719002ca5b128744fb4316d4a52c5dcd46a42759), [`fc52681ba`](https://github.com/withastro/astro/commit/fc52681ba2f8fe8bcd92eeedf3c6a52fd86a390e), [`fb84622af`](https://github.com/withastro/astro/commit/fb84622af04f795de8d17f24192de105f70fe910), [`cada10a46`](https://github.com/withastro/astro/commit/cada10a466f81f8edb0aa664f9cffdb6b5b8f307), [`cd410c5eb`](https://github.com/withastro/astro/commit/cd410c5eb71f825259279c27c4c39d0ad282c3f0), [`73ec6f6c1`](https://github.com/withastro/astro/commit/73ec6f6c16cadb71dafe9f664f0debde072c3173), [`410428672`](https://github.com/withastro/astro/commit/410428672ed97bba7ca0b3352c1a7ee564921462), [`763ff2d1e`](https://github.com/withastro/astro/commit/763ff2d1e44f54b899d7c65386f1b4b877c95737), [`c1669c001`](https://github.com/withastro/astro/commit/c1669c0011eecfe65a459d727848c18c189a54ca), [`3d525efc9`](https://github.com/withastro/astro/commit/3d525efc95cfb2deb5d9e04856d02965d66901c9)]:
+ - astro@2.5.0
+
## 6.2.4
### Patch Changes