summaryrefslogtreecommitdiff
path: root/.changeset
diff options
context:
space:
mode:
Diffstat (limited to '.changeset')
-rw-r--r--.changeset/breezy-plums-clap.md5
-rw-r--r--.changeset/dull-lemons-check.md14
-rw-r--r--.changeset/nine-mayflies-film.md5
3 files changed, 0 insertions, 24 deletions
diff --git a/.changeset/breezy-plums-clap.md b/.changeset/breezy-plums-clap.md
deleted file mode 100644
index d6d3f4b26..000000000
--- a/.changeset/breezy-plums-clap.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes a case where the error overlay would not escape the message
diff --git a/.changeset/dull-lemons-check.md b/.changeset/dull-lemons-check.md
deleted file mode 100644
index c2c51c412..000000000
--- a/.changeset/dull-lemons-check.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-'astro': patch
----
-
-Fixes a case where Astro allowed to call an action without using `Astro.callAction`. This is now invalid, and Astro will show a proper error.
-
-```diff
----
-import { actions } from "astro:actions";
-
--const result = actions.getUser({ userId: 123 });
-+const result = Astro.callAction(actions.getUser, { userId: 123 });
----
-```
diff --git a/.changeset/nine-mayflies-film.md b/.changeset/nine-mayflies-film.md
deleted file mode 100644
index c782c73bc..000000000
--- a/.changeset/nine-mayflies-film.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes unexpected 200 status in dev server logs for action errors and redirects.