diff options
Diffstat (limited to '.changeset')
-rw-r--r-- | .changeset/clean-planets-retire.md | 5 | ||||
-rw-r--r-- | .changeset/cold-schools-yell.md | 34 | ||||
-rw-r--r-- | .changeset/famous-numbers-smell.md | 5 | ||||
-rw-r--r-- | .changeset/fast-glasses-remain.md | 5 | ||||
-rw-r--r-- | .changeset/fresh-pots-draw.md | 17 | ||||
-rw-r--r-- | .changeset/gentle-rocks-enjoy.md | 5 | ||||
-rw-r--r-- | .changeset/little-onions-relax.md | 5 | ||||
-rw-r--r-- | .changeset/olive-jeans-reply.md | 5 | ||||
-rw-r--r-- | .changeset/quick-wolves-drive.md | 5 | ||||
-rw-r--r-- | .changeset/small-rules-relax.md | 11 | ||||
-rw-r--r-- | .changeset/wild-bees-sneeze.md | 5 |
11 files changed, 0 insertions, 102 deletions
diff --git a/.changeset/clean-planets-retire.md b/.changeset/clean-planets-retire.md deleted file mode 100644 index 063c83d7e..000000000 --- a/.changeset/clean-planets-retire.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/cloudflare': patch ---- - -Include generated files starting with a dot in \_routes.json diff --git a/.changeset/cold-schools-yell.md b/.changeset/cold-schools-yell.md deleted file mode 100644 index 7d6b4f381..000000000 --- a/.changeset/cold-schools-yell.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -'astro': minor ---- - -Support adding integrations dynamically - -Astro integrations can now themselves dynamically add and configure additional integrations during set-up. This makes it possible for integration authors to bundle integrations more intelligently for their users. - -In the following example, a custom integration checks whether `@astrojs/sitemap` is already configured. If not, the integration adds Astro’s sitemap integration, passing any desired configuration options: - -```ts -import sitemap from '@astrojs/sitemap'; -import type { AstroIntegration } from 'astro'; - -const MyIntegration = (): AstroIntegration => { - return { - name: 'my-integration', - - 'astro:config:setup': ({ config, updateConfig }) => { - // Look for sitemap in user-configured integrations. - const userSitemap = config.integrations.find( - ({ name }) => name === '@astrojs/sitemap' - ); - - if (!userSitemap) { - // If sitemap wasn’t found, add it. - updateConfig({ - integrations: [sitemap({ /* opts */ }], - }); - } - }, - }; -}; -``` diff --git a/.changeset/famous-numbers-smell.md b/.changeset/famous-numbers-smell.md deleted file mode 100644 index be778992a..000000000 --- a/.changeset/famous-numbers-smell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixed an issue where configured redirects with dynamic routes did not work in dev mode. diff --git a/.changeset/fast-glasses-remain.md b/.changeset/fast-glasses-remain.md deleted file mode 100644 index 5a7361b90..000000000 --- a/.changeset/fast-glasses-remain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix logLevel passed to Vite build diff --git a/.changeset/fresh-pots-draw.md b/.changeset/fresh-pots-draw.md deleted file mode 100644 index dde314c42..000000000 --- a/.changeset/fresh-pots-draw.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -'astro': minor ---- - -View transitions can now be triggered from JavaScript! - -Import the client-side router from "astro:transitions/client" and enjoy your new remote control for navigation: - -```js -import { navigate } from 'astro:transitions/client'; - -// Navigate to the selected option automatically. -document.querySelector('select').onchange = (ev) => { - let href = ev.target.value; - navigate(href); -}; -``` diff --git a/.changeset/gentle-rocks-enjoy.md b/.changeset/gentle-rocks-enjoy.md deleted file mode 100644 index 4131672ca..000000000 --- a/.changeset/gentle-rocks-enjoy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Fix NoImageMetadata image path error message diff --git a/.changeset/little-onions-relax.md b/.changeset/little-onions-relax.md deleted file mode 100644 index 820b0a40e..000000000 --- a/.changeset/little-onions-relax.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix asset optimization failing when outDir is outside the project directory diff --git a/.changeset/olive-jeans-reply.md b/.changeset/olive-jeans-reply.md deleted file mode 100644 index f71942226..000000000 --- a/.changeset/olive-jeans-reply.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/cloudflare': patch ---- - -Refactor codebase to enhance code readability and structure, to prioritize maintainability for long-term. diff --git a/.changeset/quick-wolves-drive.md b/.changeset/quick-wolves-drive.md deleted file mode 100644 index 73c44265c..000000000 --- a/.changeset/quick-wolves-drive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Support content collections with % in filename diff --git a/.changeset/small-rules-relax.md b/.changeset/small-rules-relax.md deleted file mode 100644 index 244944c26..000000000 --- a/.changeset/small-rules-relax.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'astro': minor ---- - -Route Announcer in `<ViewTransitions />` - -The View Transitions router now does route announcement. When transitioning between pages with a traditional MPA approach, assistive technologies will announce the page title when the page finishes loading. This does not automatically happen during client-side routing, so visitors relying on these technologies to announce routes are not aware when a page has changed. - -The view transitions route announcer runs after the `astro:page-load` event, looking for the page `<title>` to announce. If one cannot be found, the announcer falls back to the first `<h1>` it finds, or otherwise announces the pathname. We recommend you always include a `<title>` in each page for accessibility. - -See the [View Transitions docs](https://docs.astro.build/en/guides/view-transitions/) for more on how accessibility is handled. diff --git a/.changeset/wild-bees-sneeze.md b/.changeset/wild-bees-sneeze.md deleted file mode 100644 index 2f66136cf..000000000 --- a/.changeset/wild-bees-sneeze.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixed an issue where a response with status code 404 led to an endless loop of implicit rerouting in dev mode. |