summaryrefslogtreecommitdiff
path: root/.changeset
diff options
context:
space:
mode:
Diffstat (limited to '.changeset')
-rw-r--r--.changeset/dry-beers-grow.md15
-rw-r--r--.changeset/eleven-eyes-jog.md5
-rw-r--r--.changeset/fuzzy-toes-float.md5
-rw-r--r--.changeset/loud-hairs-tell.md5
-rw-r--r--.changeset/real-drinks-melt.md30
-rw-r--r--.changeset/silly-garlics-live.md62
-rw-r--r--.changeset/sixty-plums-appear.md5
7 files changed, 0 insertions, 127 deletions
diff --git a/.changeset/dry-beers-grow.md b/.changeset/dry-beers-grow.md
deleted file mode 100644
index 8e3ddffd1..000000000
--- a/.changeset/dry-beers-grow.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-'astro': minor
----
-
-Redirects configuration
-
-This change moves the `redirects` configuration out of experimental. If you were previously using experimental redirects, remove the following experimental flag:
-
-```js
-experimental: {
- redirects: true,
-}
-```
-
-If you have been waiting for stabilization before using redirects, now you can do so. Check out [the docs on redirects](https://docs.astro.build/en/core-concepts/routing/#redirects) to learn how to use this built-in feature.
diff --git a/.changeset/eleven-eyes-jog.md b/.changeset/eleven-eyes-jog.md
deleted file mode 100644
index ebd4b4fe1..000000000
--- a/.changeset/eleven-eyes-jog.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix redirects map object-form value validation
diff --git a/.changeset/fuzzy-toes-float.md b/.changeset/fuzzy-toes-float.md
deleted file mode 100644
index c66b28c7f..000000000
--- a/.changeset/fuzzy-toes-float.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/sitemap': patch
----
-
-Ensure nested 404 and 500 pages are always excluded
diff --git a/.changeset/loud-hairs-tell.md b/.changeset/loud-hairs-tell.md
deleted file mode 100644
index f2b7ca694..000000000
--- a/.changeset/loud-hairs-tell.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix absolute path handling when passing `root`, `srcDir`, `publicDir`, `outDir`, `cacheDir`, `build.client`, and `build.server` configs in Windows
diff --git a/.changeset/real-drinks-melt.md b/.changeset/real-drinks-melt.md
deleted file mode 100644
index 648ef1d91..000000000
--- a/.changeset/real-drinks-melt.md
+++ /dev/null
@@ -1,30 +0,0 @@
----
-'astro': minor
----
-
-Improved hoisted script bundling
-
-Astro's static analysis to determine which `<script>` tags to bundle together just got a little smarter!
-
-Astro create bundles that optimize script usage between pages and place them in the head of the document so that they are downloaded as early as possible. One limitation to Astro's existing approach has been that you could not dynamically use hoisted scripts. Each page received the same, all-inclusive bundle whether or not every script was needed on that page.
-
-Now, Astro has improved the static analysis to take into account the actual imports used.
-
-For example, Astro would previously bundle the `<script>`s from both the `<Tab>` and `<Accordian>` component for the following library that re-exports multiple components:
-
-__@matthewp/my-astro-lib__
-
-```js
-export { default as Tabs } from './Tabs.astro';
-export { default as Accordion } from './Accordion.astro';
-```
-
-Now, when an Astro page only uses a single component, Astro will send only the necessary script to the page. A page that only imports the `<Accordian>` component will not receive any `<Tab>` component's scripts:
-
-```astro
----
-import { Accordion } from '@matthewp/my-astro-lib';
----
-```
-
-You should now see more efficient performance with Astro now supporting this common library re-export pattern.
diff --git a/.changeset/silly-garlics-live.md b/.changeset/silly-garlics-live.md
deleted file mode 100644
index d019b892c..000000000
--- a/.changeset/silly-garlics-live.md
+++ /dev/null
@@ -1,62 +0,0 @@
----
-'astro': minor
----
-
-Built-in View Transitions Support (experimental)
-
-Astro now supports [view transitions](https://developer.chrome.com/docs/web-platform/view-transitions/) through the new `<ViewTransitions />` component and the `transition:animate` (and associated) directives. View transitions are a great fit for content-oriented sites, and we see it as the best path to get the benefits of client-side routing (smoother transitions) without sacrificing the more simple mental model of MPAs.
-
-Enable support for view transitions in Astro 2.9 by adding the experimental flag to your config:
-
-```js
-import { defineConfig } from 'astro/config';
-
-export default defineConfig({
- experimental: {
- viewTransitions: true,
- },
-})
-```
-
-This enables you to use the new APIs added.
-
-#### <ViewTransitions />
-
-This is a component which acts as the *router* for transitions between pages. Add it to the `<head>` section of each individual page where transitions should occur *in the client* as you navigate away to another page, instead of causing a full page browser refresh. To enable support throughout your entire app, add the component in some common layout or component that targets the `<head>` of every page.
-
-__CommonHead.astro__
-
-```astro
----
-import { ViewTransitions } from 'astro:transitions';
----
-
-<meta charset="utf-8">
-<title>{Astro.props.title}</title>
-<ViewTransitions />
-```
-
-With only this change, your app will now route completely in-client. You can then add transitions to individual elements using the `transition:animate` directive.
-
-#### Animations
-
-Add `transition:animate` to any element to use Astro's built-in animations.
-
-```astro
-<header transition:animate="slide">
-```
-
-In the above, Astro's `slide` animation will cause the `<header>` element to slide out to the left, and then slide in from the right when you navigate away from the page.
-
-You can also customize these animations using any CSS animation properties, for example, by specifying a duration:
-
-```astro
----
-import { slide } from 'astro:transition';
----
-<header transition:animate={slide({ duration: 200 })}>
-```
-
-#### Continue learning
-
-Check out the [client-side routing docs](https://docs.astro.build/en/guides/client-side-routing/) to learn more.
diff --git a/.changeset/sixty-plums-appear.md b/.changeset/sixty-plums-appear.md
deleted file mode 100644
index 3b8150ca0..000000000
--- a/.changeset/sixty-plums-appear.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Update warning when `getStaticPaths` is detected but a route is not prerendered.