summaryrefslogtreecommitdiff
path: root/.changeset/healthy-ads-scream.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/healthy-ads-scream.md')
-rw-r--r--.changeset/healthy-ads-scream.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/.changeset/healthy-ads-scream.md b/.changeset/healthy-ads-scream.md
deleted file mode 100644
index f78bd6d52..000000000
--- a/.changeset/healthy-ads-scream.md
+++ /dev/null
@@ -1,13 +0,0 @@
----
-'astro': patch
----
-
-Use GET requests with preloading for Server Islands
-
-Server Island requests include the props used to render the island as well as any slots passed in (excluding the fallback slot). Since browsers have a max 4mb URL length we default to using a POST request to avoid overflowing this length.
-
-However in reality most usage of Server Islands are fairly isolated and won't exceed this limit, so a GET request is possible by passing this same information via search parameters.
-
-Using GET means we can also include a `<link rel="preload">` tag to speed up the request.
-
-This change implements this, with safe fallback to POST.