diff options
Diffstat (limited to '.changeset')
-rw-r--r-- | .changeset/chatty-dolls-visit.md | 5 | ||||
-rw-r--r-- | .changeset/forty-horses-act.md | 5 | ||||
-rw-r--r-- | .changeset/friendly-fishes-sing.md | 5 | ||||
-rw-r--r-- | .changeset/green-cups-hammer.md | 21 | ||||
-rw-r--r-- | .changeset/happy-ears-call.md | 5 | ||||
-rw-r--r-- | .changeset/nine-geckos-act.md | 5 | ||||
-rw-r--r-- | .changeset/pretty-bears-deliver.md | 47 | ||||
-rw-r--r-- | .changeset/smooth-cows-jog.md | 8 | ||||
-rw-r--r-- | .changeset/twelve-feet-switch.md | 5 |
9 files changed, 0 insertions, 106 deletions
diff --git a/.changeset/chatty-dolls-visit.md b/.changeset/chatty-dolls-visit.md deleted file mode 100644 index 6b9e53e88..000000000 --- a/.changeset/chatty-dolls-visit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/sitemap': minor ---- - -Adds support to SSR routes to sitemap generation. diff --git a/.changeset/forty-horses-act.md b/.changeset/forty-horses-act.md deleted file mode 100644 index 77eec497c..000000000 --- a/.changeset/forty-horses-act.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': minor ---- - -Generated optimized images are now cached inside the `node_modules/.astro/assets` folder. The cached images will be used to avoid doing extra work and speed up subsequent builds. diff --git a/.changeset/friendly-fishes-sing.md b/.changeset/friendly-fishes-sing.md deleted file mode 100644 index 9da10e6bf..000000000 --- a/.changeset/friendly-fishes-sing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': minor ---- - -Implement Inline Stylesheets RFC as experimental diff --git a/.changeset/green-cups-hammer.md b/.changeset/green-cups-hammer.md deleted file mode 100644 index 1492f8d3c..000000000 --- a/.changeset/green-cups-hammer.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -'astro': minor ---- - -Implements a new class-based scoping strategy - -This implements the [Scoping RFC](https://github.com/withastro/roadmap/pull/543), providing a way to opt in to increased style specificity for Astro component styles. - -This prevents bugs where global styles override Astro component styles due to CSS ordering and the use of element selectors. - -To enable class-based scoping, you can set it in your config: - -```js -import { defineConfig } from 'astro/config'; - -export default defineConfig({ - scopedStyleStrategy: 'class' -}); -``` - -Note that the 0-specificity `:where` pseudo-selector is still the default strategy. The intent is to change `'class'` to be the default in 3.0. diff --git a/.changeset/happy-ears-call.md b/.changeset/happy-ears-call.md deleted file mode 100644 index 42171e51b..000000000 --- a/.changeset/happy-ears-call.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/react': patch ---- - -Prevent ID collisions in React.useId diff --git a/.changeset/nine-geckos-act.md b/.changeset/nine-geckos-act.md deleted file mode 100644 index 164dbbfd5..000000000 --- a/.changeset/nine-geckos-act.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': minor ---- - -Support `<Code inline />` to output inline code HTML (no `pre` tag) diff --git a/.changeset/pretty-bears-deliver.md b/.changeset/pretty-bears-deliver.md deleted file mode 100644 index 7be41ec06..000000000 --- a/.changeset/pretty-bears-deliver.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -'astro': minor ---- - -Implements a new experimental middleware in Astro. - -The middleware is available under the following experimental flag: - -```js -export default defineConfig({ - experimental: { - middleware: true - } -}) -``` - -Or via CLI, using the new argument `--experimental-middleware`. - -Create a file called `middleware.{js,ts}` inside the `src` folder, and -export a `onRequest` function. - -From `astro/middleware`, use the `defineMiddleware` utility to take advantage of type-safety, and use -the `sequence` utility to chain multiple middleware functions. - -Example: - -```ts -import {defineMiddleware, sequence} from "astro/middleware"; - -const redirects = defineMiddleware((context, next) => { - if (context.request.url.endsWith("/old-url")) { - return context.redirect("/new-url") - } - return next(); -}); - -const minify = defineMiddleware(async (context, next) => { - const repsonse = await next(); - const minifiedHtml = await minifyHtml(response.text()); - return new Response(minifiedHtml, { - status: 200, - headers: response.headers - }); -}) - -export const onRequest = sequence(redirects, minify); -``` diff --git a/.changeset/smooth-cows-jog.md b/.changeset/smooth-cows-jog.md deleted file mode 100644 index 8c6d4563c..000000000 --- a/.changeset/smooth-cows-jog.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@astrojs/markdoc': patch -'@astrojs/mdx': patch -'@astrojs/markdown-remark': minor -'astro': minor ---- - -Upgrade shiki to v0.14.1. This updates the shiki theme colors and adds the theme name to the `pre` tag, e.g. `<pre class="astro-code github-dark">`. diff --git a/.changeset/twelve-feet-switch.md b/.changeset/twelve-feet-switch.md deleted file mode 100644 index b581fb4c3..000000000 --- a/.changeset/twelve-feet-switch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Ensure multiple cookies set in dev result in multiple set-cookie headers |