summaryrefslogtreecommitdiff
path: root/.changeset
diff options
context:
space:
mode:
Diffstat (limited to '.changeset')
-rw-r--r--.changeset/bright-eels-cross.md23
-rw-r--r--.changeset/clever-rice-compete.md23
-rw-r--r--.changeset/flat-ladybugs-argue.md13
-rw-r--r--.changeset/grumpy-sloths-fail.md30
-rw-r--r--.changeset/late-mails-beam.md5
-rw-r--r--.changeset/purple-jokes-pay.md5
-rw-r--r--.changeset/quiet-birds-joke.md7
-rw-r--r--.changeset/shy-bats-exist.md11
-rw-r--r--.changeset/slimy-cougars-worry.md7
-rw-r--r--.changeset/stale-oranges-call.md5
-rw-r--r--.changeset/tiny-cows-march.md11
-rw-r--r--.changeset/tiny-gifts-drum.md27
-rw-r--r--.changeset/warm-planes-swim.md11
13 files changed, 0 insertions, 178 deletions
diff --git a/.changeset/bright-eels-cross.md b/.changeset/bright-eels-cross.md
deleted file mode 100644
index 638a5d7c1..000000000
--- a/.changeset/bright-eels-cross.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-'astro': minor
----
-
-Exposes extra APIs for scripting and testing.
-
-### Config helpers
-
-Two new helper functions exported from `astro/config`:
-
-- `mergeConfig()` allows users to merge partially defined Astro configurations on top of a base config while following the merge rules of `updateConfig()` available for integrations.
-- `validateConfig()` allows users to validate that a given value is a valid Astro configuration and fills in default values as necessary.
-
-These helpers are particularly useful for integration authors and for developers writing scripts that need to manipulate Astro configurations programmatically.
-
-### Programmatic build
-
-The `build` API now receives a second optional `BuildOptions` argument where users can specify:
-
-- `devOutput` (default `false`): output a development-based build similar to code transformed in `astro dev`.
-- `teardownCompiler` (default `true`): teardown the compiler WASM instance after build.
-
-These options provide more control when running Astro builds programmatically, especially for testing scenarios or custom build pipelines.
diff --git a/.changeset/clever-rice-compete.md b/.changeset/clever-rice-compete.md
deleted file mode 100644
index 59897964d..000000000
--- a/.changeset/clever-rice-compete.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-'astro': patch
----
-
-Adds experimental responsive image support in Markdown
-
-Previously, the `experimental.responsiveImages` feature could only provide responsive images when using the `<Image />` and `<Picture />` components.
-
-Now, images written with the `![]()` Markdown syntax in Markdown and MDX files will generate responsive images by default when using this experimental feature.
-
-To try this experimental feature, set `experimental.responsiveImages` to true in your `astro.config.mjs` file:
-
-```js
-{
- experimental: {
- responsiveImages: true,
- },
-}
-```
-
-Learn more about using this feature in the [experimental responsive images feature reference](https://docs.astro.build/en/reference/experimental-flags/responsive-images/).
-
-For a complete overview, and to give feedback on this experimental API, see the [Responsive Images RFC](https://github.com/withastro/roadmap/blob/responsive-images/proposals/0053-responsive-images.md). \ No newline at end of file
diff --git a/.changeset/flat-ladybugs-argue.md b/.changeset/flat-ladybugs-argue.md
deleted file mode 100644
index 66238cf68..000000000
--- a/.changeset/flat-ladybugs-argue.md
+++ /dev/null
@@ -1,13 +0,0 @@
----
-'astro': patch
-'@astrojs/cloudflare': patch
-'@astrojs/svelte': patch
-'@astrojs/solid-js': patch
-'@astrojs/react': patch
-'@astrojs/preact': patch
-'@astrojs/markdoc': patch
-'@astrojs/netlify': patch
-'@astrojs/vercel': patch
----
-
-Updates `esbuild` and `vite` to the latest to avoid false positives audits warnings caused by `esbuild`.
diff --git a/.changeset/grumpy-sloths-fail.md b/.changeset/grumpy-sloths-fail.md
deleted file mode 100644
index 1a5e9b272..000000000
--- a/.changeset/grumpy-sloths-fail.md
+++ /dev/null
@@ -1,30 +0,0 @@
----
-'astro': minor
----
-
-Adds a new configuration option `server.allowedHosts` and CLI option `--allowed-hosts`.
-
-Now you can specify the hostnames that the dev and preview servers are allowed to respond to. This is useful for allowing additional subdomains, or running the dev server in a web container.
-
-`allowedHosts` checks the Host header on HTTP requests from browsers and if it doesn't match, it will reject the request to prevent CSRF and XSS attacks.
-
-```shell
-astro dev --allowed-hosts=foo.bar.example.com,bar.example.com
-```
-
-```shell
-astro preview --allowed-hosts=foo.bar.example.com,bar.example.com
-```
-
-```js
-// astro.config.mjs
-import {defineConfig} from "astro/config";
-
-export default defineConfig({
- server: {
- allowedHosts: ['foo.bar.example.com', 'bar.example.com']
- }
-})
-```
-
-This feature is the same as [Vite's `server.allowHosts` configuration](https://vite.dev/config/server-options.html#server-allowedhosts).
diff --git a/.changeset/late-mails-beam.md b/.changeset/late-mails-beam.md
deleted file mode 100644
index 985899636..000000000
--- a/.changeset/late-mails-beam.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/db': patch
----
-
-Expose `ilike` function from `drizzle-orm`
diff --git a/.changeset/purple-jokes-pay.md b/.changeset/purple-jokes-pay.md
deleted file mode 100644
index ddb641371..000000000
--- a/.changeset/purple-jokes-pay.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes an issue where a form field named "attributes" shadows the form.attributes property.
diff --git a/.changeset/quiet-birds-joke.md b/.changeset/quiet-birds-joke.md
deleted file mode 100644
index 37b175850..000000000
--- a/.changeset/quiet-birds-joke.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@astrojs/internal-helpers': minor
----
-
-Adds remote URL filtering utilities
-
-This adds logic to filter remote URLs so that it can be used by both `astro` and `@astrojs/markdown-remark`.
diff --git a/.changeset/shy-bats-exist.md b/.changeset/shy-bats-exist.md
deleted file mode 100644
index 25ac954ef..000000000
--- a/.changeset/shy-bats-exist.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-'astro': minor
----
-
-Adds the ability to process and optimize remote images in Markdown files
-
-Previously, Astro only allowed local images to be optimized when included using `![]()` syntax in plain Markdown files. Astro's image service could only display remote images without any processing.
-
-Now, Astro's image service can also optimize remote images written in standard Markdown syntax. This allows you to enjoy the benefits of Astro's image processing when your images are stored externally, for example in a CMS or digital asset manager.
-
-No additional configuration is required to use this feature! Any existing remote images written in Markdown will now automatically be optimized. To opt-out of this processing, write your images in Markdown using the HTML `<img>` tag instead. Note that images located in your `public/` folder are still never processed.
diff --git a/.changeset/slimy-cougars-worry.md b/.changeset/slimy-cougars-worry.md
deleted file mode 100644
index 3182f83b7..000000000
--- a/.changeset/slimy-cougars-worry.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'astro': patch
----
-
-Fixes incorrect config update when calling `updateConfig` from `astro:build:setup` hook.
-
-The function previously called a custom update config function made for merging an Astro config. Now it calls the appropriate `mergeConfig()` utility exported by Vite that updates functional options correctly.
diff --git a/.changeset/stale-oranges-call.md b/.changeset/stale-oranges-call.md
deleted file mode 100644
index dd21fc492..000000000
--- a/.changeset/stale-oranges-call.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fixes an issue where the dev server was applying second decoding of the URL of the incoming request, causing issues for certain URLs.
diff --git a/.changeset/tiny-cows-march.md b/.changeset/tiny-cows-march.md
deleted file mode 100644
index 95682c85b..000000000
--- a/.changeset/tiny-cows-march.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-'@astrojs/mdx': minor
----
-
-Adds the ability to process and optimize remote images in Markdown syntax in MDX files.
-
-Previously, Astro only allowed local images to be optimized when included using `![]()` syntax. Astro's image service could only display remote images without any processing.
-
-Now, Astro's image service can also optimize remote images written in standard Markdown syntax. This allows you to enjoy the benefits of Astro's image processing when your images are stored externally, for example in a CMS or digital asset manager.
-
-No additional configuration is required to use this feature! Any existing remote images written in Markdown will now automatically be optimized. To opt-out of this processing, write your images in Markdown using the JSX `<img/>` tag instead. Note that images located in your `public/` folder are still never processed.
diff --git a/.changeset/tiny-gifts-drum.md b/.changeset/tiny-gifts-drum.md
deleted file mode 100644
index ca943476b..000000000
--- a/.changeset/tiny-gifts-drum.md
+++ /dev/null
@@ -1,27 +0,0 @@
----
-'@astrojs/vercel': minor
----
-
-Adds support for regular expressions in ISR exclude list
-
-Previously, excluding a page from ISR required explicitly listing it in `isr.exclude`. As websites grew larger, maintaining this list became increasingly difficult, especially for multiple API routes and pages that needed server-side rendering.
-
-To address this, ISR exclusions now support regular expressions, allowing for more flexible and scalable configurations.
-
-```js
-// astro.config.mjs
-import vercel from '@astrojs/vercel/serverless';
-
-export default defineConfig({
- output: 'server',
- adapter: vercel({
- isr: {
- exclude: [
- '/preview', // Excludes a specific route (e.g., pages/preview.astro)
- '/auth/[page]', // Excludes a dynamic route (e.g., pages/auth/[page].astro)
- /^\/api\/.+/, // Excludes all routes starting with /api/
- ]
- }
- })
-});
-```
diff --git a/.changeset/warm-planes-swim.md b/.changeset/warm-planes-swim.md
deleted file mode 100644
index f710f1a6e..000000000
--- a/.changeset/warm-planes-swim.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-'@astrojs/markdown-remark': minor
----
-
-Adds remote image optimization in Markdown
-
-Previously, an internal remark plugin only looked for images in `![]()` syntax that referred to a relative file path. This meant that only local images stored in `src/` were passed through to an internal rehype plugin that would transform them for later processing by Astro's image service.
-
-Now, the plugins recognize and transform both local and remote images using this syntax. Only [authorized remote images specified in your config](https://docs.astro.build/en/guides/images/#authorizing-remote-images) are transformed; remote images from other sources will not be processed.
-
-While not configurable at this time, this process outputs two separate metadata fields (`localImagePaths` and `remoteImagePaths`) which allow for the possibility of controlling the behavior of each type of image separately in the future.