diff options
Diffstat (limited to '.changeset')
-rw-r--r-- | .changeset/clever-jars-trade.md | 5 | ||||
-rw-r--r-- | .changeset/dirty-rabbits-act.md | 15 | ||||
-rw-r--r-- | .changeset/dull-carpets-breathe.md | 42 | ||||
-rw-r--r-- | .changeset/early-spies-bow.md | 5 | ||||
-rw-r--r-- | .changeset/fair-wasps-hunt.md | 5 | ||||
-rw-r--r-- | .changeset/fifty-clouds-clean.md | 5 | ||||
-rw-r--r-- | .changeset/healthy-oranges-report.md | 5 | ||||
-rw-r--r-- | .changeset/honest-ravens-double.md | 5 | ||||
-rw-r--r-- | .changeset/nice-pillows-teach.md | 5 | ||||
-rw-r--r-- | .changeset/olive-feet-eat.md | 9 | ||||
-rw-r--r-- | .changeset/pink-experts-count.md | 5 | ||||
-rw-r--r-- | .changeset/serious-humans-obey.md | 6 | ||||
-rw-r--r-- | .changeset/shaggy-camels-dream.md | 5 | ||||
-rw-r--r-- | .changeset/thin-icons-yell.md | 7 | ||||
-rw-r--r-- | .changeset/three-boxes-sniff.md | 5 |
15 files changed, 0 insertions, 129 deletions
diff --git a/.changeset/clever-jars-trade.md b/.changeset/clever-jars-trade.md deleted file mode 100644 index 8a632d3f9..000000000 --- a/.changeset/clever-jars-trade.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Removes the `PUBLIC_` prefix constraint for `astro:env` public variables diff --git a/.changeset/dirty-rabbits-act.md b/.changeset/dirty-rabbits-act.md deleted file mode 100644 index 65c8ab542..000000000 --- a/.changeset/dirty-rabbits-act.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'astro': patch ---- - -**BREAKING CHANGE to the experimental `astro:env` feature only** - -Server secrets specified in the schema must now be imported from `astro:env/server`. Using `getSecret()` is no longer required to use these environment variables in your schema: - -```diff -- import { getSecret } from 'astro:env/server' -- const API_SECRET = getSecret("API_SECRET") -+ import { API_SECRET } from 'astro:env/server' -``` - -Note that using `getSecret()` with these keys is still possible, but no longer involves any special handling and the raw value will be returned, just like retrieving secrets not specified in your schema. diff --git a/.changeset/dull-carpets-breathe.md b/.changeset/dull-carpets-breathe.md deleted file mode 100644 index 1c2302286..000000000 --- a/.changeset/dull-carpets-breathe.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -'astro': patch -'@astrojs/preact': minor -'@astrojs/svelte': minor -'@astrojs/react': minor -'@astrojs/solid-js': minor -'@astrojs/lit': minor -'@astrojs/vue': minor ---- - -Adds a new function called `addServerRenderer` to the Container API. Use this function to manually store renderers inside the instance of your container. - -This new function should be preferred when using the Container API in environments like on-demand pages: - -```ts -import type {APIRoute} from "astro"; -import { experimental_AstroContainer } from "astro/container"; -import reactRenderer from '@astrojs/react/server.js'; -import vueRenderer from '@astrojs/vue/server.js'; -import ReactComponent from "../components/button.jsx" -import VueComponent from "../components/button.vue" - -// MDX runtime is contained inside the Astro core -import mdxRenderer from "astro/jsx/server.js" - -// In case you need to import a custom renderer -import customRenderer from "../renderers/customRenderer.js"; - -export const GET: APIRoute = async (ctx) => { - const container = await experimental_AstroContainer.create(); - container.addServerRenderer({ renderer: reactRenderer }); - container.addServerRenderer({ renderer: vueRenderer }); - container.addServerRenderer({ renderer: customRenderer }); - // You can pass a custom name too - container.addServerRenderer({ - name: "customRenderer", - renderer: customRenderer - }) - const vueComponent = await container.renderToString(VueComponent) - return await container.renderToResponse(Component); -} -``` diff --git a/.changeset/early-spies-bow.md b/.changeset/early-spies-bow.md deleted file mode 100644 index 8141484cc..000000000 --- a/.changeset/early-spies-bow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a performance issue with JSON schema generation diff --git a/.changeset/fair-wasps-hunt.md b/.changeset/fair-wasps-hunt.md deleted file mode 100644 index 174ce02f8..000000000 --- a/.changeset/fair-wasps-hunt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a case where the virtual module `astro:container` wasn't resolved diff --git a/.changeset/fifty-clouds-clean.md b/.changeset/fifty-clouds-clean.md deleted file mode 100644 index b79213533..000000000 --- a/.changeset/fifty-clouds-clean.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a case where symlinked content collection directories were not correctly resolved diff --git a/.changeset/healthy-oranges-report.md b/.changeset/healthy-oranges-report.md deleted file mode 100644 index f7c62749c..000000000 --- a/.changeset/healthy-oranges-report.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Adds a new error `RewriteWithBodyUsed` that throws when `Astro.rewrite` is used after the request body has already been read. diff --git a/.changeset/honest-ravens-double.md b/.changeset/honest-ravens-double.md deleted file mode 100644 index 2b917b223..000000000 --- a/.changeset/honest-ravens-double.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Fixes a prerendering issue for libraries in `node_modules` when a folder with an underscore is in the path. diff --git a/.changeset/nice-pillows-teach.md b/.changeset/nice-pillows-teach.md deleted file mode 100644 index 4a5ea7265..000000000 --- a/.changeset/nice-pillows-teach.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/db': patch ---- - -Import type `Database` from correct file diff --git a/.changeset/olive-feet-eat.md b/.changeset/olive-feet-eat.md deleted file mode 100644 index 6984b2956..000000000 --- a/.changeset/olive-feet-eat.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'astro': patch ---- - -Improves the developer experience of the custom `500.astro` page in development mode. - -Before, in development, an error thrown during the rendering phase would display the default error overlay, even when users had the `500.astro` page. - -Now, the development server will display the `500.astro` and the original error is logged in the console. diff --git a/.changeset/pink-experts-count.md b/.changeset/pink-experts-count.md deleted file mode 100644 index 3ebbfc6b7..000000000 --- a/.changeset/pink-experts-count.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Ignores query strings in module identifiers when matching ".astro" file extensions in Vite plugin diff --git a/.changeset/serious-humans-obey.md b/.changeset/serious-humans-obey.md deleted file mode 100644 index 4cd6e4d69..000000000 --- a/.changeset/serious-humans-obey.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@astrojs/vercel': patch -'@astrojs/node': patch ---- - -Fix backwards compat with Astro <= 4.9 diff --git a/.changeset/shaggy-camels-dream.md b/.changeset/shaggy-camels-dream.md deleted file mode 100644 index daeaeb5ee..000000000 --- a/.changeset/shaggy-camels-dream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/vercel': patch ---- - -In Vercel Edge, include cookies set by Astro.cookies.set diff --git a/.changeset/thin-icons-yell.md b/.changeset/thin-icons-yell.md deleted file mode 100644 index af1042907..000000000 --- a/.changeset/thin-icons-yell.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@astrojs/sitemap': patch -'@astrojs/node': patch -'@astrojs/mdx': patch ---- - -Refactor to use Astro's integration logger for logging diff --git a/.changeset/three-boxes-sniff.md b/.changeset/three-boxes-sniff.md deleted file mode 100644 index 50b99c08d..000000000 --- a/.changeset/three-boxes-sniff.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Refactors prerendering chunk handling to correctly remove unused code during the SSR runtime |