diff options
Diffstat (limited to '.changeset')
50 files changed, 0 insertions, 458 deletions
diff --git a/.changeset/angry-swans-fry.md b/.changeset/angry-swans-fry.md deleted file mode 100644 index ce5c513d5..000000000 --- a/.changeset/angry-swans-fry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Redesign Dev Overlay main screen to show more information, such as the coolest integrations, your current Astro version and more. diff --git a/.changeset/beige-jokes-report.md b/.changeset/beige-jokes-report.md deleted file mode 100644 index ecb97328b..000000000 --- a/.changeset/beige-jokes-report.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@astrojs/mdx': major -'@astrojs/markdown-remark': major -'astro': major ---- - -Updates the unified, remark, and rehype dependencies to latest. Make sure to update your custom remark and rehype plugins as well to be compatible with the latest versions. - -**Potentially breaking change:** The default value of `markdown.remarkRehype.footnoteBackLabel` is changed from `"Back to content"` to `"Back to reference 1"`. See the `mdast-util-to-hast` [commit](https://github.com/syntax-tree/mdast-util-to-hast/commit/56c88e45690be138fad9f0bf367b939d09816863) for more information. diff --git a/.changeset/big-cooks-notice.md b/.changeset/big-cooks-notice.md deleted file mode 100644 index 9a0586c73..000000000 --- a/.changeset/big-cooks-notice.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@astrojs/vercel': major -'@astrojs/node': major ---- - -The internals of the integration have been updated to support Astro 4.0. Make sure to upgrade your Astro version as Astro 3.0 is no longer supported. diff --git a/.changeset/brown-jars-lick.md b/.changeset/brown-jars-lick.md deleted file mode 100644 index 0d824e445..000000000 --- a/.changeset/brown-jars-lick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes an issue where links with the same pathname as the current page, but different search params, were not prefetched. diff --git a/.changeset/calm-baboons-watch.md b/.changeset/calm-baboons-watch.md deleted file mode 100644 index a0e8259e9..000000000 --- a/.changeset/calm-baboons-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': minor ---- - -Update CLI logging experience diff --git a/.changeset/chatty-poems-doubt.md b/.changeset/chatty-poems-doubt.md deleted file mode 100644 index 32bc05c9d..000000000 --- a/.changeset/chatty-poems-doubt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes an issue where html annotations relevant only to the dev server were included in the production build. diff --git a/.changeset/clever-beds-notice.md b/.changeset/clever-beds-notice.md deleted file mode 100644 index 6be65bde1..000000000 --- a/.changeset/clever-beds-notice.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'astro': major ---- - -Removes support for returning simple objects from endpoints (deprecated since Astro 3.0). You should return a `Response` instead. - -`ResponseWithEncoding` is also removed. You can refactor the code to return a response with an array buffer instead, which is encoding agnostic. - -The types for middlewares have also been revised. To type a middleware function, you should now use `MiddlewareHandler` instead of `MiddlewareResponseHandler`. If you used `defineMiddleware()` to type the function, no changes are needed. diff --git a/.changeset/curvy-sheep-lick.md b/.changeset/curvy-sheep-lick.md deleted file mode 100644 index d369d129d..000000000 --- a/.changeset/curvy-sheep-lick.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'astro': patch ---- - -Consistently emit fallback routes in the correct folders, and emit routes that -consider `trailingSlash` diff --git a/.changeset/famous-eels-trade.md b/.changeset/famous-eels-trade.md deleted file mode 100644 index 2c3d24898..000000000 --- a/.changeset/famous-eels-trade.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Ensure the dev-overlay-window is anchored to the bottom diff --git a/.changeset/fluffy-dolls-sleep.md b/.changeset/fluffy-dolls-sleep.md deleted file mode 100644 index 02b698f1e..000000000 --- a/.changeset/fluffy-dolls-sleep.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -'astro': minor ---- - -Adds a new way to configure the `i18n.locales` array. - -Developers can now assign a custom URL path prefix that can span multiple language codes: - -```js -// astro.config.mjs -export default defineConfig({ - experimental: { - i18n: { - defaultLocale: "english", - locales: [ - "de", - { path: "english", codes: ["en", "en-US"]}, - "fr", - ], - routingStrategy: "prefix-always" - } - } -}) -``` - -With the above configuration, the URL prefix of the default locale will be `/english/`. When computing `Astro.preferredLocale`, Astro will use the `codes`. diff --git a/.changeset/gentle-cobras-wash.md b/.changeset/gentle-cobras-wash.md deleted file mode 100644 index 1a9245524..000000000 --- a/.changeset/gentle-cobras-wash.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -'astro': minor ---- - -Adds the `astro preferences` command to manage user preferences. User preferences are specific to individual Astro users, unlike the `astro.config.mjs` file which changes behavior for everyone working on a project. - -User preferences are scoped to the current project by default, stored in a local `.astro/settings.json` file. Using the `--global` flag, user preferences can also be applied to every Astro project on the current machine. Global user preferences are stored in an operating system-specific location. - -```sh -# Disable the dev overlay for the current user in the current project -npm run astro preferences disable devOverlay -# Disable the dev overlay for the current user in all Astro projects on this machine -npm run astro preferences --global disable devOverlay - -# Check if the dev overlay is enabled for the current user -npm run astro preferences list devOverlay -``` diff --git a/.changeset/giant-snails-perform.md b/.changeset/giant-snails-perform.md deleted file mode 100644 index e44a0b730..000000000 --- a/.changeset/giant-snails-perform.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/vercel': major ---- - -Removes deprecated `analytics` option. Use the `webAnalytics` option instead. diff --git a/.changeset/gold-grapes-jump.md b/.changeset/gold-grapes-jump.md deleted file mode 100644 index d3da8b72e..000000000 --- a/.changeset/gold-grapes-jump.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': minor ---- - -Reworks Vite's logger to use Astro's logger to correctly log HMR messages diff --git a/.changeset/gorgeous-squids-walk.md b/.changeset/gorgeous-squids-walk.md deleted file mode 100644 index 79599013c..000000000 --- a/.changeset/gorgeous-squids-walk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Improves display for `astro preferences list` command diff --git a/.changeset/green-impalas-fetch.md b/.changeset/green-impalas-fetch.md deleted file mode 100644 index 02b77375f..000000000 --- a/.changeset/green-impalas-fetch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix SVG icons not showing properly in the extended dropdown menu of the dev overlay diff --git a/.changeset/green-parrots-brake.md b/.changeset/green-parrots-brake.md deleted file mode 100644 index f2d9db4be..000000000 --- a/.changeset/green-parrots-brake.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'astro': major ---- - -Removes additional deprecated APIs: - -- The Astro preview server now returns a 404 status instead of a 301 redirect when requesting assets from the public directory without a base. -- Removes special handling when referencing the `astro/client-image` type. You should use the `astro/client` type instead. -- Removes deprecated built-in `rss` support in `getStaticPaths`. You should use `@astrojs/rss` instead. -- Removes deprecated `Astro.request.params` support. You should use `Astro.params` instead. diff --git a/.changeset/grumpy-seas-switch.md b/.changeset/grumpy-seas-switch.md deleted file mode 100644 index 85cf0e22f..000000000 --- a/.changeset/grumpy-seas-switch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Improve high contrast mode with the Dev Overlay diff --git a/.changeset/grumpy-turtles-tickle.md b/.changeset/grumpy-turtles-tickle.md deleted file mode 100644 index 75f8f0eec..000000000 --- a/.changeset/grumpy-turtles-tickle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Improve highlight/tooltip positioning when in fixed positions diff --git a/.changeset/khaki-fans-sell.md b/.changeset/khaki-fans-sell.md deleted file mode 100644 index f6d84bdae..000000000 --- a/.changeset/khaki-fans-sell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/markdown-remark': patch ---- - -Fixes `RemarkRehype` type's `handler` and `handlers` properties diff --git a/.changeset/lemon-crews-juggle.md b/.changeset/lemon-crews-juggle.md deleted file mode 100644 index d838bdbaa..000000000 --- a/.changeset/lemon-crews-juggle.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'astro': major ---- - -Renames Dev Overlay to Dev Toolbar - -The previously named experimental Dev Overlay is now known as the Astro Dev Toolbar. Plugins have been renamed as Toolbar Apps. This updates our references to reflect. - -To not break existing APIs, aliases for the Toolbar-based names have been created. The previous API names will continue to function but will be deprecated in the future. All documentation has been updated to reflect Toolbar-based names. diff --git a/.changeset/light-ties-poke.md b/.changeset/light-ties-poke.md deleted file mode 100644 index 97eceace4..000000000 --- a/.changeset/light-ties-poke.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@astrojs/svelte': major -'@astrojs/react': patch -'@astrojs/vue': patch -'astro': major ---- - -Adds Vite 5 support. There are no breaking changes from Astro. Check the [Vite migration guide](https://vitejs.dev/guide/migration.html) for details of the breaking changes from Vite instead. diff --git a/.changeset/little-beers-sit.md b/.changeset/little-beers-sit.md deleted file mode 100644 index 97dd63873..000000000 --- a/.changeset/little-beers-sit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/markdoc': minor ---- - -Removes internal `propagators` handling for Astro 3 diff --git a/.changeset/mighty-rats-flow.md b/.changeset/mighty-rats-flow.md deleted file mode 100644 index 8fbec88ba..000000000 --- a/.changeset/mighty-rats-flow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Update the look and feel of the dev overlay diff --git a/.changeset/modern-candles-sip.md b/.changeset/modern-candles-sip.md deleted file mode 100644 index 31e75c412..000000000 --- a/.changeset/modern-candles-sip.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': patch ---- - -Stop clearing the console on start diff --git a/.changeset/nervous-beans-peel.md b/.changeset/nervous-beans-peel.md deleted file mode 100644 index aaf464db0..000000000 --- a/.changeset/nervous-beans-peel.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'astro': minor ---- - -Improves consistency between navigations with and without `<ViewTransitions>`. See [#9279](https://github.com/withastro/astro/pull/9279) for more details. - diff --git a/.changeset/ninety-weeks-juggle.md b/.changeset/ninety-weeks-juggle.md deleted file mode 100644 index a78fda846..000000000 --- a/.changeset/ninety-weeks-juggle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Adds properties of the submit button (name, value) to the form data of a view transition diff --git a/.changeset/odd-rivers-happen.md b/.changeset/odd-rivers-happen.md deleted file mode 100644 index 2490084bc..000000000 --- a/.changeset/odd-rivers-happen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': major ---- - -Removes the opt-in `handleForms` property for `<ViewTransitions />`. Form submissions are now handled by default and can be disabled by setting `data-astro-reload` on relevant `<form />` elements. diff --git a/.changeset/orange-candles-sip.md b/.changeset/orange-candles-sip.md deleted file mode 100644 index 442e386b7..000000000 --- a/.changeset/orange-candles-sip.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'astro': patch ---- - -Adds new accessibility audits to the Dev Toolbar's built-in Audits app. - -The audits Astro performs are non-exhaustive and only capable of detecting a handful of common accessibility issues. Please take care to perform a thorough, **manual** audit of your site to ensure compliance with the [Web Content Accessibility Guidelines (WCAG) international standard](https://www.w3.org/WAI/standards-guidelines/wcag/) _before_ publishing your site. - -🧡 Huge thanks to the [Svelte](https://github.com/sveltejs/svelte) team for providing the basis of these accessibility audits! diff --git a/.changeset/plenty-candles-help.md b/.changeset/plenty-candles-help.md deleted file mode 100644 index e7ddf8cb4..000000000 --- a/.changeset/plenty-candles-help.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -'astro': major ---- - -Removes support for Shiki custom language's `path` property. The language JSON file should be imported and passed to the option instead. - -```diff -// astro.config.js -+ import customLang from './custom.tmLanguage.json' - -export default defineConfig({ - markdown: { - shikiConfig: { - langs: [ -- { path: './custom.tmLanguage.json' }, -+ customLang, - ], - }, - }, -}) -``` diff --git a/.changeset/pre.json b/.changeset/pre.json deleted file mode 100644 index 49f4fbbf3..000000000 --- a/.changeset/pre.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "mode": "exit", - "tag": "beta", - "initialVersions": { - "astro": "3.5.5", - "@astrojs/prism": "3.0.0", - "@astrojs/rss": "3.0.0", - "create-astro": "4.5.1", - "@astrojs/alpinejs": "0.3.1", - "@astrojs/cloudflare": "0.0.0", - "@astrojs/lit": "3.0.3", - "@astrojs/markdoc": "0.7.2", - "@astrojs/mdx": "1.1.5", - "@astrojs/netlify": "0.0.0", - "@astrojs/node": "6.0.4", - "@astrojs/partytown": "2.0.2", - "@astrojs/preact": "3.0.1", - "@astrojs/react": "3.0.5", - "@astrojs/sitemap": "3.0.3", - "@astrojs/solid-js": "3.0.2", - "@astrojs/svelte": "4.0.4", - "@astrojs/tailwind": "5.0.2", - "@astrojs/vercel": "5.2.0", - "@astrojs/vue": "3.0.4", - "@astrojs/internal-helpers": "0.2.1", - "@astrojs/markdown-remark": "3.5.0", - "@astrojs/telemetry": "3.0.4", - "@astrojs/underscore-redirects": "0.3.3", - "@astrojs/upgrade": "0.0.1" - }, - "changesets": [ - "angry-swans-fry", - "beige-jokes-report", - "big-cooks-notice", - "brown-jars-lick", - "calm-baboons-watch", - "chatty-poems-doubt", - "clever-beds-notice", - "curvy-sheep-lick", - "famous-eels-trade", - "fluffy-dolls-sleep", - "gentle-cobras-wash", - "giant-snails-perform", - "gold-grapes-jump", - "gorgeous-squids-walk", - "green-impalas-fetch", - "green-parrots-brake", - "grumpy-seas-switch", - "grumpy-turtles-tickle", - "khaki-fans-sell", - "lemon-crews-juggle", - "light-ties-poke", - "little-beers-sit", - "mighty-rats-flow", - "modern-candles-sip", - "nervous-beans-peel", - "ninety-weeks-juggle", - "odd-rivers-happen", - "orange-candles-sip", - "plenty-candles-help", - "rude-hairs-whisper", - "sharp-starfishes-compete", - "shiny-trees-sip", - "short-deers-whisper", - "silent-phones-divide", - "slimy-jeans-peel", - "slow-hornets-try", - "smart-cats-camp", - "smooth-gifts-train", - "sour-games-burn", - "spicy-starfishes-shake", - "tasty-dryers-bathe", - "tasty-parents-own", - "tender-eagles-learn", - "three-chairs-sip", - "tricky-dragons-explain", - "weak-wolves-bow", - "wicked-sloths-develop", - "wild-apricots-rescue", - "wild-boats-wait" - ] -} diff --git a/.changeset/rude-hairs-whisper.md b/.changeset/rude-hairs-whisper.md deleted file mode 100644 index a9d7baa4d..000000000 --- a/.changeset/rude-hairs-whisper.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': minor ---- - -Renames the `entryPoint` property of the `injectRoute` integrations API to `entrypoint` for consistency. A warning will be shown prompting you to update your code when using the old name. diff --git a/.changeset/sharp-starfishes-compete.md b/.changeset/sharp-starfishes-compete.md deleted file mode 100644 index 0eb4f413b..000000000 --- a/.changeset/sharp-starfishes-compete.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -'astro': major ---- - -This change only affects maintainers of third-party adapters. In the Integration API, the `app.render()` method of the `App` class has been simplified. - -Instead of two optional arguments, it now takes a single optional argument that is an object with two optional properties: `routeData` and `locals`. -```diff - app.render(request) - -- app.render(request, routeData) -+ app.render(request, { routeData }) - -- app.render(request, routeData, locals) -+ app.render(request, { routeData, locals }) - -- app.render(request, undefined, locals) -+ app.render(request, { locals }) -``` -The current signature is deprecated but will continue to function until next major version. diff --git a/.changeset/shiny-trees-sip.md b/.changeset/shiny-trees-sip.md deleted file mode 100644 index 991c7aa92..000000000 --- a/.changeset/shiny-trees-sip.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/markdown-remark': major ---- - -Removes deprecated APIs. All Astro packages had been refactored to not use these APIs. diff --git a/.changeset/short-deers-whisper.md b/.changeset/short-deers-whisper.md deleted file mode 100644 index 03e0f4480..000000000 --- a/.changeset/short-deers-whisper.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Removes vendored Vite's `importMeta.d.ts` file in favour of Vite 5's new `vite/types/import-meta.d.ts` export diff --git a/.changeset/silent-phones-divide.md b/.changeset/silent-phones-divide.md deleted file mode 100644 index afd58853a..000000000 --- a/.changeset/silent-phones-divide.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'astro': patch ---- - -Remove aria-query package - -This is another CJS-only package that breaks usage. diff --git a/.changeset/slimy-jeans-peel.md b/.changeset/slimy-jeans-peel.md deleted file mode 100644 index c4ba769e3..000000000 --- a/.changeset/slimy-jeans-peel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/vercel': major ---- - -Removes the deprecated `@astrojs/vercel/edge` export. You should use `@astrojs/vercel/serverless` instead with the `edgeMiddleware` option. diff --git a/.changeset/slow-hornets-try.md b/.changeset/slow-hornets-try.md deleted file mode 100644 index 970e7f491..000000000 --- a/.changeset/slow-hornets-try.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/rss': major ---- - -Removes the `drafts` option as the feature is deprecated in Astro 3.0 diff --git a/.changeset/smart-cats-camp.md b/.changeset/smart-cats-camp.md deleted file mode 100644 index 96f290362..000000000 --- a/.changeset/smart-cats-camp.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix routing prefixes when `prefixDefaultLocale` is `true` diff --git a/.changeset/smooth-gifts-train.md b/.changeset/smooth-gifts-train.md deleted file mode 100644 index 95ebda97e..000000000 --- a/.changeset/smooth-gifts-train.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Exports type for Dev Toolbar App under correct name diff --git a/.changeset/sour-games-burn.md b/.changeset/sour-games-burn.md deleted file mode 100644 index f0d596603..000000000 --- a/.changeset/sour-games-burn.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"astro": patch ---- - -Refactors virtual modules exports. This should not break your project unless you import Astro's internal modules, including: - -- `astro/middleware/namespace` -- `astro/transitions` -- `astro/transitions/router` -- `astro/transitions/events` -- `astro/transitions/types` -- `astro/prefetch` -- `astro/i18n` diff --git a/.changeset/spicy-starfishes-shake.md b/.changeset/spicy-starfishes-shake.md deleted file mode 100644 index a283f4d37..000000000 --- a/.changeset/spicy-starfishes-shake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Ensure overlay x-ray z-index is higher than the island diff --git a/.changeset/tasty-dryers-bathe.md b/.changeset/tasty-dryers-bathe.md deleted file mode 100644 index 438597e13..000000000 --- a/.changeset/tasty-dryers-bathe.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -'@astrojs/upgrade': minor ---- - -Initial release! - -`@astrojs/upgrade` is an automated command-line tool for upgrading Astro and your official Astro integrations together. - -Inside of your existing `astro` project, run the following command to install the `latest` version of your integrations. - -**With NPM:** - -```bash -npx @astrojs/upgrade -``` - -**With Yarn:** - -```bash -yarn dlx @astrojs/upgrade -``` - -**With PNPM:** - -```bash -pnpm dlx @astrojs/upgrade -``` diff --git a/.changeset/tasty-parents-own.md b/.changeset/tasty-parents-own.md deleted file mode 100644 index 3ab6ca510..000000000 --- a/.changeset/tasty-parents-own.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Adds instructions on how to hide the dev overlay diff --git a/.changeset/tender-eagles-learn.md b/.changeset/tender-eagles-learn.md deleted file mode 100644 index b1f98c2f6..000000000 --- a/.changeset/tender-eagles-learn.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'astro': patch ---- - -Removes the 'a11y-role-has-required-aria-props' audit rule - -This audit rule depends on a CommonJS module. To prevent blocking the 4.0 release the rule is being removed temporarily. diff --git a/.changeset/three-chairs-sip.md b/.changeset/three-chairs-sip.md deleted file mode 100644 index 68bdc0a61..000000000 --- a/.changeset/three-chairs-sip.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': minor ---- - -Update error log formatting diff --git a/.changeset/tricky-dragons-explain.md b/.changeset/tricky-dragons-explain.md deleted file mode 100644 index 78ecb1e95..000000000 --- a/.changeset/tricky-dragons-explain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a number of small user experience bugs with the dev overlay diff --git a/.changeset/weak-wolves-bow.md b/.changeset/weak-wolves-bow.md deleted file mode 100644 index 484544cd1..000000000 --- a/.changeset/weak-wolves-bow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': major ---- - -Removes deprecated `app.match()` option, `matchNotFound` diff --git a/.changeset/wicked-sloths-develop.md b/.changeset/wicked-sloths-develop.md deleted file mode 100644 index 806e02707..000000000 --- a/.changeset/wicked-sloths-develop.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'astro': major ---- - -Removes deprecated features from Astro 3.0 - -- Adapters are now required to pass `supportedAstroFeatures` to specify a list of features they support. -- The `build.split` and `build.excludeMiddleware` options are removed. Use `functionPerRoute` and `edgeMiddleware` from adapters instead. -- The `markdown.drafts` option and draft feature is removed. Use content collections instead. -- Lowercase endpoint names are no longer supported. Use uppercase endpoint names instead. -- `getHeaders()` exported from markdown files is removed. Use `getHeadings()` instead. diff --git a/.changeset/wild-apricots-rescue.md b/.changeset/wild-apricots-rescue.md deleted file mode 100644 index c4a7deea3..000000000 --- a/.changeset/wild-apricots-rescue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/svelte': major ---- - -Drops support for Svelte 3 as `@sveltejs/vite-plugin-svelte` is updated to `3.0.0` which does not support Svelte 3 diff --git a/.changeset/wild-boats-wait.md b/.changeset/wild-boats-wait.md deleted file mode 100644 index 6300e839e..000000000 --- a/.changeset/wild-boats-wait.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Returns the updated config in the integration `astro:config:setup` hook's `updateConfig()` API |