diff --git a/.changeset/chatty-actors-stare.md b/.changeset/chatty-actors-stare.md
deleted file mode 100644
index e8d42848a..000000000
--- a/.changeset/chatty-actors-stare.md
+++ /dev/null
@@ -1,33 +0,0 @@
----
-'astro': minor
----
-
-Experimental redirects support
-
-This change adds support for the redirects RFC, currently in stage 3: https://github.com/withastro/roadmap/pull/587
-
-Now you can specify redirects in your Astro config:
-
-```js
-import { defineConfig } from 'astro/config';
-
-export defineConfig({
- redirects: {
- '/blog/old-post': '/blog/new-post'
- }
-});
-```
-
-You can also specify spread routes using the same syntax as in file-based routing:
-
-```js
-import { defineConfig } from 'astro/config';
-
-export defineConfig({
- redirects: {
- '/blog/[...slug]': '/articles/[...slug]'
- }
-});
-```
-
-By default Astro will build HTML files that contain the `` tag. Adapters can also support redirect routes and create configuration for real HTTP-level redirects in production.
diff --git a/.changeset/chatty-rats-whisper.md b/.changeset/chatty-rats-whisper.md
deleted file mode 100644
index 42df7ea8c..000000000
--- a/.changeset/chatty-rats-whisper.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/node': patch
----
-
-Support directory redirects and query params at the same time
diff --git a/.changeset/chilled-rockets-flash.md b/.changeset/chilled-rockets-flash.md
deleted file mode 100644
index 7c1ba400b..000000000
--- a/.changeset/chilled-rockets-flash.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/node': minor
----
-
-Fixes NodeJS adapter for multiple set-cookie headers and combining AstroCookies and Response.headers cookies
diff --git a/.changeset/fuzzy-ladybugs-jump.md b/.changeset/fuzzy-ladybugs-jump.md
deleted file mode 100644
index fecabbeac..000000000
--- a/.changeset/fuzzy-ladybugs-jump.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@astrojs/cloudflare': minor
----
-
-Support for experimental redirects
-
-This adds support for the redirects RFC in the Cloudflare adapter. No changes are necessary, simply use configured redirects and the adapter will update your `_redirects` file.
diff --git a/.changeset/fuzzy-tables-build.md b/.changeset/fuzzy-tables-build.md
deleted file mode 100644
index 11c5ea323..000000000
--- a/.changeset/fuzzy-tables-build.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': minor
----
-
-Remove experimental flag for custom client directives
diff --git a/.changeset/hip-news-clean.md b/.changeset/hip-news-clean.md
deleted file mode 100644
index 2b0dc1db1..000000000
--- a/.changeset/hip-news-clean.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@astrojs/vercel': minor
----
-
-Support for experimental redirects
-
-This adds support for the redirects RFC in the Vercel adapter. No changes are necessary, simply use configured redirects and the adapter will output the vercel.json file with the configuration values.
diff --git a/.changeset/khaki-onions-relax.md b/.changeset/khaki-onions-relax.md
deleted file mode 100644
index fd665ea7c..000000000
--- a/.changeset/khaki-onions-relax.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix HTML component type causing an error when imported in the editor
diff --git a/.changeset/lazy-falcons-divide.md b/.changeset/lazy-falcons-divide.md
deleted file mode 100644
index a705a78d4..000000000
--- a/.changeset/lazy-falcons-divide.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix cookies not being set by middleware
diff --git a/.changeset/light-sheep-hunt.md b/.changeset/light-sheep-hunt.md
deleted file mode 100644
index a32ab2d44..000000000
--- a/.changeset/light-sheep-hunt.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix nested astro-island hydration race condition
diff --git a/.changeset/orange-dryers-shop.md b/.changeset/orange-dryers-shop.md
deleted file mode 100644
index 7e12f14ef..000000000
--- a/.changeset/orange-dryers-shop.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix injected scripts not injected to injected routes
diff --git a/.changeset/slimy-hotels-agree.md b/.changeset/slimy-hotels-agree.md
deleted file mode 100644
index b8af2cd82..000000000
--- a/.changeset/slimy-hotels-agree.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': minor
----
-
-Update base `tsconfig.json` template with `allowJs: true` to provide a better relaxed experience for users unfamilliar with TypeScript. `allowJs` is still set to `false` (its default value) when using the `strictest` preset.
diff --git a/.changeset/stupid-pumpkins-perform.md b/.changeset/stupid-pumpkins-perform.md
deleted file mode 100644
index 663800891..000000000
--- a/.changeset/stupid-pumpkins-perform.md
+++ /dev/null
@@ -1,24 +0,0 @@
----
-'astro': minor
----
-
-The Inline Stylesheets RFC is now stable!
-
-You can now control how Astro bundles your css with a configuration change:
-
-```ts
-export default defineConfig({
- ...
- build: {
- inlineStylesheets: "auto"
- }
- ...
-})
-```
-
-The options:
-- `inlineStylesheets: "never"`: This is the behavior you are familiar with. Every stylesheet is external, and added to the page via a `` tag. Default.
-- `inlineStylesheets: "auto"`: Small stylesheets are inlined into `