summaryrefslogtreecommitdiff
path: root/.changeset
diff options
context:
space:
mode:
Diffstat (limited to '.changeset')
-rw-r--r--.changeset/clever-pumpkins-begin.md7
-rw-r--r--.changeset/lovely-bulldogs-admire.md29
-rw-r--r--.changeset/mean-ears-mate.md7
-rw-r--r--.changeset/modern-dots-smile.md5
-rw-r--r--.changeset/sixty-mirrors-bake.md5
-rw-r--r--.changeset/tasty-hornets-return.md11
-rw-r--r--.changeset/tough-ants-rest.md8
7 files changed, 0 insertions, 72 deletions
diff --git a/.changeset/clever-pumpkins-begin.md b/.changeset/clever-pumpkins-begin.md
deleted file mode 100644
index 26b9e5f18..000000000
--- a/.changeset/clever-pumpkins-begin.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@astrojs/lit': minor
----
-
-Adds support for passing named slots from `.astro` => Lit components.
-
-All slots are treated as Light DOM content.
diff --git a/.changeset/lovely-bulldogs-admire.md b/.changeset/lovely-bulldogs-admire.md
deleted file mode 100644
index 74888cb27..000000000
--- a/.changeset/lovely-bulldogs-admire.md
+++ /dev/null
@@ -1,29 +0,0 @@
----
-'@astrojs/preact': minor
-'@astrojs/react': minor
-'@astrojs/solid-js': minor
----
-
-Add support for passing named slots from `.astro` => framework components.
-
-Each `slot` is be passed as a top-level prop. For example:
-
-```jsx
-// From .astro
-<Component>
- <h2 slot="title">Hello world!</h2>
- <h2 slot="slot-with-dash">Dash</h2>
- <div>Default</div>
-</Component>
-
-// For .jsx
-export default function Component({ title, slotWithDash, children }) {
- return (
- <>
- <div id="title">{title}</div>
- <div id="slot-with-dash">{slotWithDash}</div>
- <div id="main">{children}</div>
- </>
- )
-}
-```
diff --git a/.changeset/mean-ears-mate.md b/.changeset/mean-ears-mate.md
deleted file mode 100644
index 6bb538e4e..000000000
--- a/.changeset/mean-ears-mate.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'astro': patch
----
-
-Add renderer support for passing named slots to framework components.
-
-**BREAKING**: integrations using the `addRenderer()` API are now passed all named slots via `Record<string, string>` rather than `string`. Previously only the default slot was passed.
diff --git a/.changeset/modern-dots-smile.md b/.changeset/modern-dots-smile.md
deleted file mode 100644
index a66e9c34d..000000000
--- a/.changeset/modern-dots-smile.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Added test for dir parameter in astro:build:done
diff --git a/.changeset/sixty-mirrors-bake.md b/.changeset/sixty-mirrors-bake.md
deleted file mode 100644
index db6a70bc4..000000000
--- a/.changeset/sixty-mirrors-bake.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/sitemap': patch
----
-
-Add warning log for sitemap + SSR adapter, with suggestion to use customPages configuration option
diff --git a/.changeset/tasty-hornets-return.md b/.changeset/tasty-hornets-return.md
deleted file mode 100644
index 285230311..000000000
--- a/.changeset/tasty-hornets-return.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-'astro': patch
----
-
-Moves head injection to happen during rendering
-
-This change makes it so that head injection; to insert component stylesheets, hoisted scripts, for example, to happen during rendering than as a post-rendering step.
-
-This is to enable streaming. This change will only be noticeable if you are rendering your `<head>` element inside of a framework component. If that is the case then the head items will be injected before the first non-head element in an Astro file instead.
-
-In the future we may offer a `<Astro.Head>` component as a way to control where these scripts/styles are inserted.
diff --git a/.changeset/tough-ants-rest.md b/.changeset/tough-ants-rest.md
deleted file mode 100644
index f95ae30c2..000000000
--- a/.changeset/tough-ants-rest.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-'@astrojs/svelte': minor
-'@astrojs/vue': minor
----
-
-Adds support for passing named slots from `.astro` => framework components.
-
-Inside your components, use the built-in `slot` API as you normally would.