diff options
Diffstat (limited to '.changeset')
24 files changed, 0 insertions, 265 deletions
diff --git a/.changeset/blue-rocks-smoke.md b/.changeset/blue-rocks-smoke.md deleted file mode 100644 index 4863aef1d..000000000 --- a/.changeset/blue-rocks-smoke.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -'astro': patch -'@astrojs/netlify': patch -'@astrojs/node': patch ---- - -Netlify Adapter - -This change adds a Netlify adapter that uses Netlify Functions. You can use it like so: - -```js -import { defineConfig } from 'astro/config'; -import netlify from '@astrojs/netlify/functions'; - -export default defineConfig({ - adapter: netlify() -}); -``` diff --git a/.changeset/brave-rings-jump.md b/.changeset/brave-rings-jump.md deleted file mode 100644 index 1fbb5c90d..000000000 --- a/.changeset/brave-rings-jump.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'astro': minor ---- - -Introduce new `astro add` command to automatically configure integrations. - -```shell -npx astro add -``` diff --git a/.changeset/cyan-pigs-ring.md b/.changeset/cyan-pigs-ring.md deleted file mode 100644 index 9e03aa3c9..000000000 --- a/.changeset/cyan-pigs-ring.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix a bug where tailwind integration wouldn't apply to markdown pages diff --git a/.changeset/eighty-trees-thank.md b/.changeset/eighty-trees-thank.md deleted file mode 100644 index 271111369..000000000 --- a/.changeset/eighty-trees-thank.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'astro': minor ---- - -This PR introduces a new internal CSS parser for `@astrojs/compiler`. See [`withastro/compiler#329`](https://github.com/withastro/compiler/pull/329) for more details. - -This fixes Astro's support for modern CSS syntax like `@container`, `@layer`, and nesting. **Note** While Astro now correctly parses this modern syntax, it does not automatically compile features for browser compatability purposes. diff --git a/.changeset/forty-badgers-relate.md b/.changeset/forty-badgers-relate.md deleted file mode 100644 index ebe258be4..000000000 --- a/.changeset/forty-badgers-relate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix "isSelfAccepting" exception when using the new @astrojs/react integration in development diff --git a/.changeset/fuzzy-lies-nail.md b/.changeset/fuzzy-lies-nail.md deleted file mode 100644 index 07368b458..000000000 --- a/.changeset/fuzzy-lies-nail.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Implement APIs for headers for SSR flag diff --git a/.changeset/hot-plants-help.md b/.changeset/hot-plants-help.md deleted file mode 100644 index 4ea02e579..000000000 --- a/.changeset/hot-plants-help.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -'astro': patch ---- - -Adds support for the Node adapter (SSR) - -This provides the first SSR adapter available using the `integrations` API. It is a Node.js adapter that can be used with the `http` module or any framework that wraps it, like Express. - -In your astro.config.mjs use: - -```js -import nodejs from '@astrojs/node'; - -export default { - adapter: nodejs() -} -``` - -After performing a build there will be a `dist/server/entry.mjs` module that works like a middleware function. You can use with any framework that supports the Node `request` and `response` objects. For example, with Express you can do: - -```js -import express from 'express'; -import { handler as ssrHandler } from '@astrojs/node'; - -const app = express(); -app.use(handler); - -app.listen(8080); -``` diff --git a/.changeset/lemon-needles-count.md b/.changeset/lemon-needles-count.md deleted file mode 100644 index c7770447d..000000000 --- a/.changeset/lemon-needles-count.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@astrojs/markdown-remark': minor -'astro': minor ---- - -Change shiki to our default markdown syntax highlighter. This includes updates to all relevant starter projects that used Prism-specific styles. diff --git a/.changeset/modern-adults-dance.md b/.changeset/modern-adults-dance.md deleted file mode 100644 index ad98bbb68..000000000 --- a/.changeset/modern-adults-dance.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Ensure private, internal APIs are not enumerable diff --git a/.changeset/moody-trees-allow.md b/.changeset/moody-trees-allow.md deleted file mode 100644 index 32b3a2e26..000000000 --- a/.changeset/moody-trees-allow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix missing `postcss-load-config` dependency diff --git a/.changeset/perfect-ravens-count.md b/.changeset/perfect-ravens-count.md deleted file mode 100644 index dfadbd49a..000000000 --- a/.changeset/perfect-ravens-count.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'astro': patch -'@astrojs/prism': patch ---- - -Move the built-in `Prism` component from `astro/components` to `@astrojs/prism/component`. diff --git a/.changeset/pre.json b/.changeset/pre.json deleted file mode 100644 index aba578ff5..000000000 --- a/.changeset/pre.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "mode": "exit", - "tag": "next", - "initialVersions": { - "@example/blog": "0.0.1", - "@example/blog-multiple-authors": "0.0.1", - "@example/component": "0.0.1", - "@example/my-component-demo": "0.0.1", - "@example/my-component": "0.0.1", - "@example/docs": "0.0.1", - "@example/env-vars": "0.0.1", - "@example/framework-alpine": "0.0.1", - "@example/framework-lit": "0.0.1", - "@example/framework-multiple": "0.0.1", - "@example/framework-preact": "0.0.1", - "@example/framework-react": "0.0.1", - "@example/framework-solid": "0.0.1", - "@example/framework-svelte": "0.0.1", - "@example/framework-vue": "0.0.1", - "@example/integrations-playground": "0.0.1", - "@example/minimal": "0.0.1", - "@example/non-html-pages": "0.0.1", - "@example/portfolio": "0.0.1", - "@example/ssr": "0.0.1", - "@example/starter": "0.0.1", - "@example/subpath": "0.0.1", - "@example/with-markdown": "0.0.1", - "@example/with-markdown-plugins": "0.0.2", - "@example/with-markdown-shiki": "0.0.1", - "@example/with-nanostores": "0.0.1", - "@example/with-tailwindcss": "0.0.1", - "@example/with-vite-plugin-pwa": "0.0.1", - "astro": "0.24.3", - "@astrojs/prism": "0.4.0", - "@test/custom-element-renderer": "0.1.0", - "@test/static-build-pkg": "0.0.0", - "create-astro": "0.7.1", - "@astrojs/lit": "0.0.1", - "@astrojs/partytown": "0.0.1", - "@astrojs/preact": "0.0.1", - "@astrojs/react": "0.0.1", - "@astrojs/sitemap": "0.0.1", - "@astrojs/solid-js": "0.0.1", - "@astrojs/svelte": "0.0.1", - "@astrojs/tailwind": "0.0.1", - "@astrojs/turbolinks": "0.0.1", - "@astrojs/vue": "0.0.1", - "@astrojs/markdown-remark": "0.6.4", - "@astrojs/renderer-lit": "0.4.0", - "@astrojs/renderer-preact": "0.5.0", - "@astrojs/renderer-react": "0.5.0", - "@astrojs/renderer-solid": "0.4.0", - "@astrojs/renderer-svelte": "0.5.2", - "@astrojs/renderer-vue": "0.4.0", - "@astrojs/webapi": "0.11.0", - "astro-scripts": "0.0.2", - "@astrojs/node": "0.0.1" - }, - "changesets": [ - "cyan-pigs-ring", - "eighty-trees-thank", - "forty-badgers-relate", - "fuzzy-lies-nail", - "hot-plants-help", - "lemon-needles-count", - "modern-adults-dance", - "moody-trees-allow", - "perfect-ravens-count", - "rude-panthers-tease", - "rude-starfishes-drop", - "rude-trainers-repeat", - "silent-walls-tan", - "silly-sloths-hammer", - "small-horses-protect", - "spotty-houses-stare", - "strong-bears-knock", - "tidy-jobs-beg", - "twenty-kiwis-tease", - "wise-garlics-bathe" - ] -} diff --git a/.changeset/rude-panthers-tease.md b/.changeset/rude-panthers-tease.md deleted file mode 100644 index 58e0c7fdd..000000000 --- a/.changeset/rude-panthers-tease.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/tailwind': patch ---- - -Add support for tailwind config files. These can either be a standard `tailwind.config.js|cjs|mjs`, or a custom filename as specified in your integration config. diff --git a/.changeset/rude-starfishes-drop.md b/.changeset/rude-starfishes-drop.md deleted file mode 100644 index d049655d7..000000000 --- a/.changeset/rude-starfishes-drop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': minor ---- - -Automatically add integration `peerDependencies` to scaffolded `package.json` files diff --git a/.changeset/rude-trainers-repeat.md b/.changeset/rude-trainers-repeat.md deleted file mode 100644 index 4202f395a..000000000 --- a/.changeset/rude-trainers-repeat.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'astro': patch ---- - -Improve granularity of production build logs. This now lists: -- the "data collection" build step, with timeout warnings for larger imports. This is useful for understanding large `import.meta.glob` calls. -- the Vite client bundling step. This logs all Vite production build info to clarify what assets are built alongside your HTML. -- the route generation step, complete with all output HTML files for a given input file. This is especially useful when debugging `getStaticPaths`. -- fixes "0 pages in Infinityms" log when building to SSR
\ No newline at end of file diff --git a/.changeset/silent-walls-tan.md b/.changeset/silent-walls-tan.md deleted file mode 100644 index 1eb3a97a4..000000000 --- a/.changeset/silent-walls-tan.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix island deduplication ignoring props.Re-resolves an issue initially patched in https://github.com/withastro/astro/pull/846 but seemingly lost in the 0.21.0 mega-merge (https://github.com/withastro/astro/commit/d84bfe719a546ad855640338d5ed49ad3aa4ccb4).This change makes the component render step account for all props, even if they don't affect the generated HTML, when deduplicating island mounts. diff --git a/.changeset/silly-sloths-hammer.md b/.changeset/silly-sloths-hammer.md deleted file mode 100644 index 38084452d..000000000 --- a/.changeset/silly-sloths-hammer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/markdown-remark': patch ---- - -Fix a shiki performance issue affecting large sites diff --git a/.changeset/small-horses-protect.md b/.changeset/small-horses-protect.md deleted file mode 100644 index ba6ec4fd7..000000000 --- a/.changeset/small-horses-protect.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'astro': patch -'@astrojs/node': patch ---- - -Improves the build by building to a single file for rendering diff --git a/.changeset/spotty-houses-stare.md b/.changeset/spotty-houses-stare.md deleted file mode 100644 index a3672caf8..000000000 --- a/.changeset/spotty-houses-stare.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Allows dynamic routes in SSR to avoid implementing getStaticPaths diff --git a/.changeset/strong-bears-knock.md b/.changeset/strong-bears-knock.md deleted file mode 100644 index dd432a934..000000000 --- a/.changeset/strong-bears-knock.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Generalize output assets to avoid adblocker false positives diff --git a/.changeset/swift-pets-lick.md b/.changeset/swift-pets-lick.md deleted file mode 100644 index e84c956d4..000000000 --- a/.changeset/swift-pets-lick.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'@astrojs/partytown': patch -'@astrojs/sitemap': patch -'@astrojs/tailwind': patch -'@astrojs/turbolinks': patch -'@astrojs/lit': patch -'@astrojs/preact': patch -'@astrojs/react': patch -'@astrojs/solid-js': patch -'@astrojs/svelte': patch -'@astrojs/vue': patch ---- - -Add README across Astro built-in integrations diff --git a/.changeset/tidy-jobs-beg.md b/.changeset/tidy-jobs-beg.md deleted file mode 100644 index 3ff36bc08..000000000 --- a/.changeset/tidy-jobs-beg.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'@astrojs/lit': patch -'@astrojs/partytown': patch -'@astrojs/preact': patch -'@astrojs/react': patch -'@astrojs/sitemap': patch -'@astrojs/solid-js': patch -'@astrojs/svelte': patch -'@astrojs/tailwind': patch -'@astrojs/turbolinks': patch -'@astrojs/vue': patch ---- - -Adds keywords to the official integrations to support discoverability on Astro's Integrations site diff --git a/.changeset/twenty-kiwis-tease.md b/.changeset/twenty-kiwis-tease.md deleted file mode 100644 index 83f681a61..000000000 --- a/.changeset/twenty-kiwis-tease.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -add missing injected "page" scripts into markdown pages diff --git a/.changeset/wise-garlics-bathe.md b/.changeset/wise-garlics-bathe.md deleted file mode 100644 index 1f041ca25..000000000 --- a/.changeset/wise-garlics-bathe.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'astro': patch -'@astrojs/preact': patch ---- - -Fix `isSelfAccepting` errors when using the Preact integration with the Astro dev server |