summaryrefslogtreecommitdiff
path: root/.changeset
diff options
context:
space:
mode:
Diffstat (limited to '.changeset')
-rw-r--r--.changeset/happy-beans-protect.md5
-rw-r--r--.changeset/tall-hotels-argue.md5
-rw-r--r--.changeset/wicked-books-appear.md5
-rw-r--r--.changeset/young-trains-shout.md31
4 files changed, 0 insertions, 46 deletions
diff --git a/.changeset/happy-beans-protect.md b/.changeset/happy-beans-protect.md
deleted file mode 100644
index cf6f8a8bc..000000000
--- a/.changeset/happy-beans-protect.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix i18n fallback routing with routing strategy of always-prefix
diff --git a/.changeset/tall-hotels-argue.md b/.changeset/tall-hotels-argue.md
deleted file mode 100644
index aaa5c84dd..000000000
--- a/.changeset/tall-hotels-argue.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes an issue where the presence of a slot in a page led to an error.
diff --git a/.changeset/wicked-books-appear.md b/.changeset/wicked-books-appear.md
deleted file mode 100644
index 930091da7..000000000
--- a/.changeset/wicked-books-appear.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix edge case where `<style>` updates inside of `.astro` files would ocassionally fail to update without reloading the page.
diff --git a/.changeset/young-trains-shout.md b/.changeset/young-trains-shout.md
deleted file mode 100644
index 2a635eb1e..000000000
--- a/.changeset/young-trains-shout.md
+++ /dev/null
@@ -1,31 +0,0 @@
----
-'astro': patch
----
-
-The configuration `i18n.routingStrategy` has been replaced with an object called `routing`.
-
-```diff
-export default defineConfig({
- experimental: {
- i18n: {
-- routingStrategy: "prefix-always",
-+ routing: {
-+ prefixDefaultLocale: true,
-+ }
- }
- }
-})
-```
-
-```diff
-export default defineConfig({
- experimental: {
- i18n: {
-- routingStrategy: "prefix-other-locales",
-+ routing: {
-+ prefixDefaultLocale: false,
-+ }
- }
- }
-})
-```