aboutsummaryrefslogtreecommitdiff
path: root/.changeset
diff options
context:
space:
mode:
Diffstat (limited to '.changeset')
-rw-r--r--.changeset/clean-suns-shout.md5
-rw-r--r--.changeset/late-years-flow.md5
-rw-r--r--.changeset/seven-avocados-confess.md5
-rw-r--r--.changeset/three-steaks-exist.md21
4 files changed, 0 insertions, 36 deletions
diff --git a/.changeset/clean-suns-shout.md b/.changeset/clean-suns-shout.md
deleted file mode 100644
index 424594c8b..000000000
--- a/.changeset/clean-suns-shout.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes broken type declaration
diff --git a/.changeset/late-years-flow.md b/.changeset/late-years-flow.md
deleted file mode 100644
index 576e7de05..000000000
--- a/.changeset/late-years-flow.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes a bug that caused tsconfig path aliases to break if there was more than one wildcard pattern
diff --git a/.changeset/seven-avocados-confess.md b/.changeset/seven-avocados-confess.md
deleted file mode 100644
index 180edf234..000000000
--- a/.changeset/seven-avocados-confess.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes a bug where the some utility functions of the `astro:i18n` virtual module would return an incorrect result when `trailingSlash` is set to `never`
diff --git a/.changeset/three-steaks-exist.md b/.changeset/three-steaks-exist.md
deleted file mode 100644
index a42092410..000000000
--- a/.changeset/three-steaks-exist.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-"@astrojs/react": minor
----
-
-Adds experimental support for disabling streaming
-
-This is useful to support libraries that are not compatible with streaming such as some CSS-in-JS libraries. To disable streaming for all React components in your project, set `experimentalDisableStreaming: true` as a configuration option for `@astrojs/react`:
-
-```diff
-// astro.config.mjs
-import { defineConfig } from 'astro/config';
-import react from '@astrojs/react';
-
-export default defineConfig({
- integrations: [
- react({
-+ experimentalDisableStreaming: true,
- }),
- ],
-});
-```