summaryrefslogtreecommitdiff
path: root/.changeset
diff options
context:
space:
mode:
Diffstat (limited to '.changeset')
-rw-r--r--.changeset/empty-experts-unite.md27
-rw-r--r--.changeset/four-ways-tap.md5
-rw-r--r--.changeset/metal-chairs-beam.md5
-rw-r--r--.changeset/olive-knives-rush.md5
-rw-r--r--.changeset/tidy-tips-doubt.md5
-rw-r--r--.changeset/wise-glasses-hang.md6
-rw-r--r--.changeset/witty-bikes-relate.md5
-rw-r--r--.changeset/yellow-insects-tell.md5
8 files changed, 0 insertions, 63 deletions
diff --git a/.changeset/empty-experts-unite.md b/.changeset/empty-experts-unite.md
deleted file mode 100644
index 78d0f2e86..000000000
--- a/.changeset/empty-experts-unite.md
+++ /dev/null
@@ -1,27 +0,0 @@
----
-'astro': minor
----
-
-Persistent DOM and Islands in Experimental View Transitions
-
-With `viewTransitions: true` enabled in your Astro config's experimental section, pages using the `<ViewTransition />` routing component can now access a new `transition:persist` directive.
-
-With this directive, you can keep the state of DOM elements and islands on the old page when transitioning to the new page.
-
-For example, to keep a video playing across page navigation, add `transition:persist` to the element:
-
-```astro
-<video controls="" autoplay="" transition:persist>
- <source src="https://ia804502.us.archive.org/33/items/GoldenGa1939_3/GoldenGa1939_3_512kb.mp4" type="video/mp4">
-</video>
-```
-
-This `<video>` element, with its current state, will be moved over to the next page (if the video also exists on that page).
-
-Likewise, this feature works with any client-side framework component island. In this example, a counter's state is preserved and moved to the new page:
-
-```astro
-<Counter count={5} client:load transition:persist />
-```
-
-See our [View Transitions Guide](https://docs.astro.build/en/guides/view-transitions/#maintaining-state) to learn more on usage.
diff --git a/.changeset/four-ways-tap.md b/.changeset/four-ways-tap.md
deleted file mode 100644
index 89af56e0a..000000000
--- a/.changeset/four-ways-tap.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes an issue that prevents importing `'astro/app'`
diff --git a/.changeset/metal-chairs-beam.md b/.changeset/metal-chairs-beam.md
deleted file mode 100644
index 4b23388f2..000000000
--- a/.changeset/metal-chairs-beam.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Prevent integration hooks from re-triggering if the server restarts on config change, but the config fails to load.
diff --git a/.changeset/olive-knives-rush.md b/.changeset/olive-knives-rush.md
deleted file mode 100644
index af8022ba0..000000000
--- a/.changeset/olive-knives-rush.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/node': patch
----
-
-fix issuse #7590 "res.writeHead is not a function" in Express/Node middleware
diff --git a/.changeset/tidy-tips-doubt.md b/.changeset/tidy-tips-doubt.md
deleted file mode 100644
index e0a38c69e..000000000
--- a/.changeset/tidy-tips-doubt.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/vercel': minor
----
-
-Add cache headers to assets in Vercel adapter
diff --git a/.changeset/wise-glasses-hang.md b/.changeset/wise-glasses-hang.md
deleted file mode 100644
index 15abb3c5b..000000000
--- a/.changeset/wise-glasses-hang.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@astrojs/image': patch
-'astro': patch
----
-
-Improve sourcemap generation and performance
diff --git a/.changeset/witty-bikes-relate.md b/.changeset/witty-bikes-relate.md
deleted file mode 100644
index 0222d209b..000000000
--- a/.changeset/witty-bikes-relate.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-fix for #7882 by setting state in page navigation (view transitions)
diff --git a/.changeset/yellow-insects-tell.md b/.changeset/yellow-insects-tell.md
deleted file mode 100644
index 576ae3a18..000000000
--- a/.changeset/yellow-insects-tell.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix: ignore `.json` files nested in subdirectories within content collection directories starting with an `_` underscore.