diff options
Diffstat (limited to '.changeset')
-rw-r--r-- | .changeset/breezy-onions-scream.md | 5 | ||||
-rw-r--r-- | .changeset/gorgeous-tables-sparkle.md | 5 | ||||
-rw-r--r-- | .changeset/mean-spoons-tie.md | 5 | ||||
-rw-r--r-- | .changeset/perfect-moose-end.md | 5 | ||||
-rw-r--r-- | .changeset/sixty-tips-play.md | 5 | ||||
-rw-r--r-- | .changeset/sour-starfishes-behave.md | 27 | ||||
-rw-r--r-- | .changeset/unlucky-paws-own.md | 5 | ||||
-rw-r--r-- | .changeset/wet-apples-smoke.md | 5 |
8 files changed, 0 insertions, 62 deletions
diff --git a/.changeset/breezy-onions-scream.md b/.changeset/breezy-onions-scream.md deleted file mode 100644 index 706a09c22..000000000 --- a/.changeset/breezy-onions-scream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix error stacktrace from Vite SSR runtime diff --git a/.changeset/gorgeous-tables-sparkle.md b/.changeset/gorgeous-tables-sparkle.md deleted file mode 100644 index 0613fac56..000000000 --- a/.changeset/gorgeous-tables-sparkle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Simplify nested hydration flow diff --git a/.changeset/mean-spoons-tie.md b/.changeset/mean-spoons-tie.md deleted file mode 100644 index 22d10d41f..000000000 --- a/.changeset/mean-spoons-tie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Pass `compressHTML` setting to server adapters diff --git a/.changeset/perfect-moose-end.md b/.changeset/perfect-moose-end.md deleted file mode 100644 index c5aebb980..000000000 --- a/.changeset/perfect-moose-end.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix CSS error line offset diff --git a/.changeset/sixty-tips-play.md b/.changeset/sixty-tips-play.md deleted file mode 100644 index 31ebef4da..000000000 --- a/.changeset/sixty-tips-play.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Replaces the instance of `setTimeout()` in the runtime to use `queueMicrotask()`, to resolve limitations on Cloudflare Workers. diff --git a/.changeset/sour-starfishes-behave.md b/.changeset/sour-starfishes-behave.md deleted file mode 100644 index f5843dfd8..000000000 --- a/.changeset/sour-starfishes-behave.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -'@astrojs/markdoc': minor ---- - -Updates the Markdoc config object for rendering Astro components as tags or nodes. Rather than importing components directly, Astro includes a new `component()` function to specify your component path. This unlocks using Astro components from npm packages and `.ts` files. - -### Migration - -Update all component imports to instead import the new `component()` function and use it to render your Astro components: - -```diff -// markdoc.config.mjs -import { - defineMarkdocConfig, -+ component, -} from '@astrojs/markdoc/config'; -- import Aside from './src/components/Aside.astro'; - -export default defineMarkdocConfig({ - tags: { - aside: { - render: Aside, -+ render: component('./src/components/Aside.astro'), - } - } -}); -``` diff --git a/.changeset/unlucky-paws-own.md b/.changeset/unlucky-paws-own.md deleted file mode 100644 index e48bf31e5..000000000 --- a/.changeset/unlucky-paws-own.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Correctly emit pre-rendered pages when `build.split` is set to `true` diff --git a/.changeset/wet-apples-smoke.md b/.changeset/wet-apples-smoke.md deleted file mode 100644 index f13bb957d..000000000 --- a/.changeset/wet-apples-smoke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/markdoc': patch ---- - -Restart the dev server whenever your markdoc config changes. |