summaryrefslogtreecommitdiff
path: root/.changeset
diff options
context:
space:
mode:
Diffstat (limited to '.changeset')
-rw-r--r--.changeset/fair-trees-jump.md6
-rw-r--r--.changeset/few-ants-brake.md5
-rw-r--r--.changeset/giant-crews-tell.md5
-rw-r--r--.changeset/grumpy-readers-draw.md5
-rw-r--r--.changeset/healthy-books-study.md7
-rw-r--r--.changeset/moody-singers-develop.md5
-rw-r--r--.changeset/old-seahorses-fold.md6
-rw-r--r--.changeset/stupid-lions-relax.md5
-rw-r--r--.changeset/tricky-snails-poke.md21
9 files changed, 0 insertions, 65 deletions
diff --git a/.changeset/fair-trees-jump.md b/.changeset/fair-trees-jump.md
deleted file mode 100644
index 336faad84..000000000
--- a/.changeset/fair-trees-jump.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'create-astro': patch
-'astro': patch
----
-
-Default registry logic to fallback to NPM if registry command fails (sorry, Bun users!)
diff --git a/.changeset/few-ants-brake.md b/.changeset/few-ants-brake.md
deleted file mode 100644
index 607c248ae..000000000
--- a/.changeset/few-ants-brake.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@astrojs/image": patch
----
-
-fix: make `Picture` generate valid dev URLs
diff --git a/.changeset/giant-crews-tell.md b/.changeset/giant-crews-tell.md
deleted file mode 100644
index c4fe8b89f..000000000
--- a/.changeset/giant-crews-tell.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix bug when using `define:vars` with a `style` object
diff --git a/.changeset/grumpy-readers-draw.md b/.changeset/grumpy-readers-draw.md
deleted file mode 100644
index 32156bc8b..000000000
--- a/.changeset/grumpy-readers-draw.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"astro": patch
----
-
-Add `Props` generic for `APIRoute` type
diff --git a/.changeset/healthy-books-study.md b/.changeset/healthy-books-study.md
deleted file mode 100644
index e4b51b041..000000000
--- a/.changeset/healthy-books-study.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@astrojs/cloudflare': minor
----
-
-Split Support in Cloudflare
-
-Adds support for configuring `build.split` when using the Cloudflare adapter
diff --git a/.changeset/moody-singers-develop.md b/.changeset/moody-singers-develop.md
deleted file mode 100644
index 4f791a73e..000000000
--- a/.changeset/moody-singers-develop.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix serialization of `undefined` in framework component props
diff --git a/.changeset/old-seahorses-fold.md b/.changeset/old-seahorses-fold.md
deleted file mode 100644
index f5d6cad63..000000000
--- a/.changeset/old-seahorses-fold.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'astro': patch
-'create-astro': patch
----
-
-Update registry logic, improving edge cases (http support, redirects, registries ending with '/')
diff --git a/.changeset/stupid-lions-relax.md b/.changeset/stupid-lions-relax.md
deleted file mode 100644
index 07a6728a9..000000000
--- a/.changeset/stupid-lions-relax.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/image': patch
----
-
-Fix problem where image metadata generation throwed error when provided url started with /@astroimage
diff --git a/.changeset/tricky-snails-poke.md b/.changeset/tricky-snails-poke.md
deleted file mode 100644
index 815942d1a..000000000
--- a/.changeset/tricky-snails-poke.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-'@astrojs/vercel': minor
----
-
-Split support in Vercel Serverless
-
-The Vercel adapter builds to a single function by default. Astro 2.7 added support for splitting your build into separate entry points per page. If you use this configuration the Vercel adapter will generate a separate function for each page. This can help reduce the size of each function so they are only bundling code used on that page.
-
-```js
-// astro.config.mjs
-import { defineConfig } from 'astro/config';
-import vercel from '@astrojs/vercel/serverless';
-
-export default defineConfig({
- output: 'server',
- adapter: vercel(),
- build: {
- split: true
- }
-});
-```