diff --git a/.changeset/blue-rocks-smoke.md b/.changeset/blue-rocks-smoke.md deleted file mode 100644 index 4863aef1d1ed..000000000000 --- 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 1fbb5c90d633..000000000000 --- 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 9e03aa3c9526..000000000000 --- 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 2711113692c7..000000000000 --- 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 ebe258be4ef5..000000000000 --- 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 07368b45845d..000000000000 --- 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 4ea02e579349..000000000000 --- 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 c7770447dcd6..000000000000 --- 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 ad98bbb6873b..000000000000 --- 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 32b3a2e26970..000000000000 --- 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 dfadbd49ab39..000000000000 --- 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 aba578ff5c53..000000000000 --- 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 58e0c7fdd280..000000000000 --- 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 d049655d7755..000000000000 --- 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 4202f395a5e6..000000000000 --- 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 1eb3a97a43a4..000000000000 --- 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 38084452dc69..000000000000 --- 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 ba6ec4fd7d0e..000000000000 --- 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 a3672caf89cb..000000000000 --- 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 dd432a9341b2..000000000000 --- 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 e84c956d45d7..000000000000 --- 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 3ff36bc08bd8..000000000000 --- 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 83f681a61cd8..000000000000 --- 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 1f041ca25425..000000000000 --- 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 diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index ebf45fb34a54..3c0fd827d451 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/preact": "^0.0.2-next.1", - "astro": "^0.25.0-next.3", + "@astrojs/preact": "^0.0.2", + "astro": "^0.25.0", "sass": "^1.49.9" }, "dependencies": { diff --git a/examples/blog/package.json b/examples/blog/package.json index 85cdec5fd20d..3bf0217bb4f2 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.0-next.3", - "@astrojs/preact": "^0.0.2-next.1" + "astro": "^0.25.0", + "@astrojs/preact": "^0.0.2" }, "dependencies": { "preact": "^10.6.6" diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index 3532933a15f8..373f45f02f9b 100644 --- a/examples/component/demo/package.json +++ b/examples/component/demo/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@example/my-component": "workspace:*", - "astro": "^0.25.0-next.3" + "astro": "^0.25.0" } } diff --git a/examples/component/package.json b/examples/component/package.json index 12f29621e00c..d58bab5462ba 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -8,6 +8,6 @@ "serve": "astro --project-root demo preview" }, "devDependencies": { - "astro": "^0.25.0-next.3" + "astro": "^0.25.0" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index 8bf287c9ac6b..d1c95b2d2a84 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -18,8 +18,8 @@ "react-dom": "^17.0.2" }, "devDependencies": { - "@astrojs/preact": "^0.0.2-next.1", - "@astrojs/react": "^0.0.2-next.0", - "astro": "^0.25.0-next.3" + "@astrojs/preact": "^0.0.2", + "@astrojs/react": "^0.0.2", + "astro": "^0.25.0" } } diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json index 2cc5a5609e31..cc84ee4a0e96 100644 --- a/examples/env-vars/package.json +++ b/examples/env-vars/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.0-next.3" + "astro": "^0.25.0" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 2f794d7006f0..2dfd7b4b1e5f 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.0-next.3" + "astro": "^0.25.0" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 151a77bf1439..0ee4f13a1a42 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/lit": "^0.0.2-next.0", - "astro": "^0.25.0-next.3" + "@astrojs/lit": "^0.0.2", + "astro": "^0.25.0" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index d6ba15f85e6f..45837eabfa61 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -9,13 +9,13 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/lit": "^0.0.2-next.0", - "@astrojs/preact": "^0.0.2-next.1", - "@astrojs/react": "^0.0.2-next.0", - "@astrojs/solid-js": "^0.0.2-next.0", - "@astrojs/svelte": "^0.0.2-next.0", - "@astrojs/vue": "^0.0.2-next.0", - "astro": "^0.25.0-next.3" + "@astrojs/lit": "^0.0.2", + "@astrojs/preact": "^0.0.2", + "@astrojs/react": "^0.0.2", + "@astrojs/solid-js": "^0.0.2", + "@astrojs/svelte": "^0.0.2", + "@astrojs/vue": "^0.0.2", + "astro": "^0.25.0" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 14bf251cfd57..fdc17c5c5217 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/preact": "^0.0.2-next.1", - "astro": "^0.25.0-next.3" + "@astrojs/preact": "^0.0.2", + "astro": "^0.25.0" }, "dependencies": { "preact": "^10.6.6" diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 4fed29622799..081034d326cb 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/react": "^0.0.2-next.0", - "astro": "^0.25.0-next.3" + "@astrojs/react": "^0.0.2", + "astro": "^0.25.0" }, "dependencies": { "react": "^17.0.2", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index c64629dfe30f..2a138feb8913 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/solid-js": "^0.0.2-next.0", - "astro": "^0.25.0-next.3" + "@astrojs/solid-js": "^0.0.2", + "astro": "^0.25.0" }, "dependencies": { "solid-js": "^1.3.13" diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 803bd849a6ec..604134f32eb7 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/svelte": "^0.0.2-next.0", - "astro": "^0.25.0-next.3" + "@astrojs/svelte": "^0.0.2", + "astro": "^0.25.0" }, "dependencies": { "svelte": "^3.46.4" diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 644904dd7416..7746608d1f9e 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/vue": "^0.0.2-next.0", - "astro": "^0.25.0-next.3" + "@astrojs/vue": "^0.0.2", + "astro": "^0.25.0" }, "dependencies": { "vue": "^3.2.31" diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json index 814beecf8da4..0ce98f14cef2 100644 --- a/examples/integrations-playground/package.json +++ b/examples/integrations-playground/package.json @@ -9,13 +9,13 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/lit": "^0.0.2-next.0", - "@astrojs/partytown": "^0.0.2-next.0", - "@astrojs/react": "^0.0.2-next.0", - "@astrojs/sitemap": "^0.0.2-next.0", - "@astrojs/tailwind": "^0.0.2-next.0", - "@astrojs/turbolinks": "^0.0.2-next.0", - "astro": "^0.25.0-next.3" + "@astrojs/lit": "^0.0.2", + "@astrojs/partytown": "^0.0.2", + "@astrojs/react": "^0.0.2", + "@astrojs/sitemap": "^0.0.2", + "@astrojs/tailwind": "^0.0.2", + "@astrojs/turbolinks": "^0.0.2", + "astro": "^0.25.0" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 413db1f072e2..cacaa563f462 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.0-next.3" + "astro": "^0.25.0" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 7d6dcdc4f105..b701fec5f0af 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.0-next.3" + "astro": "^0.25.0" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 524ae0f087f9..4bce4a5508da 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/preact": "^0.0.2-next.1", - "astro": "^0.25.0-next.3", + "@astrojs/preact": "^0.0.2", + "astro": "^0.25.0", "sass": "^1.49.9" }, "dependencies": { diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 240157e47534..c7ad1f4449a4 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -11,9 +11,9 @@ "server": "node server/server.mjs" }, "devDependencies": { - "@astrojs/svelte": "^0.0.2-next.0", - "@astrojs/node": "^0.0.2-next.0", - "astro": "^0.25.0-next.3", + "@astrojs/svelte": "^0.0.2", + "@astrojs/node": "^0.0.2", + "astro": "^0.25.0", "concurrently": "^7.0.0", "lightcookie": "^1.0.25", "unocss": "^0.15.6", diff --git a/examples/starter/package.json b/examples/starter/package.json index 6352ed9703db..72a6821df856 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.0-next.3" + "astro": "^0.25.0" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index 9e5c6cd4d7af..6d3013bca9ee 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/react": "^0.0.2-next.0", - "astro": "^0.25.0-next.3", + "@astrojs/react": "^0.0.2", + "astro": "^0.25.0", "sass": "^1.49.9" }, "dependencies": { diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 846f6eca3df9..b5ca2e4f8c71 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/markdown-remark": "^0.7.0-next.1", - "astro": "^0.25.0-next.3", + "@astrojs/markdown-remark": "^0.7.0", + "astro": "^0.25.0", "hast-util-select": "5.0.1", "rehype-autolink-headings": "^6.1.1", "rehype-slug": "^5.0.1", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index 4b5ef7028939..9b49d18fcb45 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/markdown-remark": "^0.7.0-next.1", - "astro": "^0.25.0-next.3" + "@astrojs/markdown-remark": "^0.7.0", + "astro": "^0.25.0" } } diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index af1805489ff0..95f573891e1d 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -9,12 +9,12 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/markdown-remark": "^0.7.0-next.1", - "@astrojs/preact": "^0.0.2-next.1", - "@astrojs/react": "^0.0.2-next.0", - "@astrojs/svelte": "^0.0.2-next.0", - "@astrojs/vue": "^0.0.2-next.0", - "astro": "^0.25.0-next.3" + "@astrojs/markdown-remark": "^0.7.0", + "@astrojs/preact": "^0.0.2", + "@astrojs/react": "^0.0.2", + "@astrojs/svelte": "^0.0.2", + "@astrojs/vue": "^0.0.2", + "astro": "^0.25.0" }, "dependencies": { "preact": "^10.6.6", diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 79fa7708d200..0dbb660105fd 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -20,11 +20,11 @@ "vue": "^3.2.31" }, "devDependencies": { - "@astrojs/preact": "^0.0.2-next.1", - "@astrojs/react": "^0.0.2-next.0", - "@astrojs/solid-js": "^0.0.2-next.0", - "@astrojs/svelte": "^0.0.2-next.0", - "@astrojs/vue": "^0.0.2-next.0", - "astro": "^0.25.0-next.3" + "@astrojs/preact": "^0.0.2", + "@astrojs/react": "^0.0.2", + "@astrojs/solid-js": "^0.0.2", + "@astrojs/svelte": "^0.0.2", + "@astrojs/vue": "^0.0.2", + "astro": "^0.25.0" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index fe61d2367b3f..b2e4e407d246 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/tailwind": "^0.0.2-next.0", - "astro": "^0.25.0-next.3", + "@astrojs/tailwind": "^0.0.2", + "astro": "^0.25.0", "autoprefixer": "^10.4.4", "canvas-confetti": "^1.5.1", "postcss": "^8.4.12", diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index e07b09b4eb40..836f4f092280 100644 --- a/examples/with-vite-plugin-pwa/package.json +++ b/examples/with-vite-plugin-pwa/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.0-next.3", + "astro": "^0.25.0", "vite-plugin-pwa": "0.11.11", "workbox-window": "^6.5.2" } diff --git a/packages/astro-prism/CHANGELOG.md b/packages/astro-prism/CHANGELOG.md index 7964ac989918..4d6e8f056dce 100644 --- a/packages/astro-prism/CHANGELOG.md +++ b/packages/astro-prism/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/prism +## 0.4.1 + +### Patch Changes + +- [#2878](https://github.com/withastro/astro/pull/2878) [`2db97f10`](https://github.com/withastro/astro/commit/2db97f10dc50f9498413181b78c477fe8833895b) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Move the built-in `Prism` component from `astro/components` to `@astrojs/prism/component`. + ## 0.4.1-next.0 ### Patch Changes diff --git a/packages/astro-prism/package.json b/packages/astro-prism/package.json index 8a4278250bd8..4f0ae28f502b 100644 --- a/packages/astro-prism/package.json +++ b/packages/astro-prism/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/prism", - "version": "0.4.1-next.0", + "version": "0.4.1", "description": "Supports Prism highlighting in Astro projects", "author": "withastro", "license": "MIT", diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 1a628ed969c5..2b2f2c1b22f0 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,96 @@ # astro +## 0.25.0 + +### Minor Changes + +- [#2849](https://github.com/withastro/astro/pull/2849) [`72ef7ae6`](https://github.com/withastro/astro/commit/72ef7ae64a6d0fd17077bf6920ce11613116b659) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Introduce new `astro add` command to automatically configure integrations. + + ```shell + npx astro add + ``` + +* [#2833](https://github.com/withastro/astro/pull/2833) [`79545412`](https://github.com/withastro/astro/commit/7954541291a3dd7adbc1d5610e0c2e615d3dde46) Thanks [@natemoo-re](https://github.com/natemoo-re)! - 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. + +- [#2824](https://github.com/withastro/astro/pull/2824) [`0a3d3e51`](https://github.com/withastro/astro/commit/0a3d3e51a66af80fa949ba0f5e2104439d2be634) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Change shiki to our default markdown syntax highlighter. This includes updates to all relevant starter projects that used Prism-specific styles. + +### Patch Changes + +- [#2879](https://github.com/withastro/astro/pull/2879) [`80034c6c`](https://github.com/withastro/astro/commit/80034c6cbc89761618847e6df43fd49560a05aa9) Thanks [@matthewp](https://github.com/matthewp)! - 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(), + }); + ``` + +* [#2871](https://github.com/withastro/astro/pull/2871) [`5029382a`](https://github.com/withastro/astro/commit/5029382a8cab17f048372ee878d0778c89998009) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Fix a bug where tailwind integration wouldn't apply to markdown pages + +- [#2852](https://github.com/withastro/astro/pull/2852) [`96372e6b`](https://github.com/withastro/astro/commit/96372e6beb976b57a8c52fd7c65f126899325160) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix "isSelfAccepting" exception when using the new @astrojs/react integration in development + +* [#2798](https://github.com/withastro/astro/pull/2798) [`4c25a1c2`](https://github.com/withastro/astro/commit/4c25a1c2eacf897427a7d6dac3bf476ef56799de) Thanks [@matthewp](https://github.com/matthewp)! - Implement APIs for headers for SSR flag + +- [#2855](https://github.com/withastro/astro/pull/2855) [`5e52814d`](https://github.com/withastro/astro/commit/5e52814d97a5723dbe7ebb32fbe040a7a4c0ea77) Thanks [@matthewp](https://github.com/matthewp)! - 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); + ``` + +* [#2859](https://github.com/withastro/astro/pull/2859) [`c781b12f`](https://github.com/withastro/astro/commit/c781b12f87398d51a6ecf5dcb8b35afb08591c29) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Ensure private, internal APIs are not enumerable + +- [#2835](https://github.com/withastro/astro/pull/2835) [`77ebab8b`](https://github.com/withastro/astro/commit/77ebab8bb27d67bc45a5af160d6b545521897802) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fix missing `postcss-load-config` dependency + +* [#2878](https://github.com/withastro/astro/pull/2878) [`2db97f10`](https://github.com/withastro/astro/commit/2db97f10dc50f9498413181b78c477fe8833895b) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Move the built-in `Prism` component from `astro/components` to `@astrojs/prism/component`. + +- [#2857](https://github.com/withastro/astro/pull/2857) [`1061d647`](https://github.com/withastro/astro/commit/1061d6477af328e93c9a727e70900ae20c0116c8) Thanks [@bholmesdev](https://github.com/bholmesdev)! - 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 + +* [#2825](https://github.com/withastro/astro/pull/2825) [`1cd7184c`](https://github.com/withastro/astro/commit/1cd7184ca6fa6e60a69918e461f42c055e8a795e) Thanks [@hlynursmari1](https://github.com/hlynursmari1)! - 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. + +- [#2873](https://github.com/withastro/astro/pull/2873) [`e4025d1f`](https://github.com/withastro/astro/commit/e4025d1f530310d6ab951109f4f53878a307471a) Thanks [@matthewp](https://github.com/matthewp)! - Improves the build by building to a single file for rendering + +* [#2815](https://github.com/withastro/astro/pull/2815) [`7b9d042d`](https://github.com/withastro/astro/commit/7b9d042dde0c6ae74225de208222e0addf5f4989) Thanks [@matthewp](https://github.com/matthewp)! - Allows dynamic routes in SSR to avoid implementing getStaticPaths + +- [#2875](https://github.com/withastro/astro/pull/2875) [`55712277`](https://github.com/withastro/astro/commit/5571227718442e1ec38f4553863b6160b74df722) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Generalize output assets to avoid adblocker false positives + +* [#2848](https://github.com/withastro/astro/pull/2848) [`981e2a83`](https://github.com/withastro/astro/commit/981e2a839b5a0292513bf2009216250f2a8730eb) Thanks [@FredKSchott](https://github.com/FredKSchott)! - add missing injected "page" scripts into markdown pages + +- [#2872](https://github.com/withastro/astro/pull/2872) [`098f6f6b`](https://github.com/withastro/astro/commit/098f6f6b06396441c576dc689d8552629ef260e1) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix `isSelfAccepting` errors when using the Preact integration with the Astro dev server + +- Updated dependencies [[`0a3d3e51`](https://github.com/withastro/astro/commit/0a3d3e51a66af80fa949ba0f5e2104439d2be634), [`2db97f10`](https://github.com/withastro/astro/commit/2db97f10dc50f9498413181b78c477fe8833895b), [`d763ec18`](https://github.com/withastro/astro/commit/d763ec183ea391ad79ca16bf2b2e76848fc1180c)]: + - @astrojs/markdown-remark@0.7.0 + - @astrojs/prism@0.4.1 + ## 0.25.0-next.3 ### Patch Changes @@ -16,7 +107,7 @@ import nodejs from '@astrojs/node'; export default { - adapter: nodejs(), + adapter: nodejs(), }; ``` @@ -112,7 +203,7 @@ import { defineConfig } from 'astro/config'; export default defineConfig({ - renderers: [], + renderers: [], }); ``` @@ -150,9 +241,9 @@ ```json { - "scripts": { - "build": "astro build --legacy-build" - } + "scripts": { + "build": "astro build --legacy-build" + } } ``` @@ -172,7 +263,7 @@ ```ts if (Astro.slots.has('default')) { - const content = await Astro.slots.render('default'); + const content = await Astro.slots.render('default'); } ``` @@ -256,7 +347,7 @@ ```ts if (Astro.slots.has('default')) { - const content = await Astro.slots.render('default'); + const content = await Astro.slots.render('default'); } ``` @@ -280,9 +371,9 @@ ```json { - "scripts": { - "build": "astro build --legacy-build" - } + "scripts": { + "build": "astro build --legacy-build" + } } ``` @@ -394,12 +485,12 @@ ```typescript // src/pages/company.json.ts export async function get() { - return { - body: JSON.stringify({ - name: 'Astro Technology Company', - url: 'https://astro.build/', - }), - }; + return { + body: JSON.stringify({ + name: 'Astro Technology Company', + url: 'https://astro.build/', + }), + }; } ``` @@ -561,12 +652,12 @@ ```typescript // src/pages/company.json.ts export async function get() { - return { - body: JSON.stringify({ - name: 'Astro Technology Company', - url: 'https://astro.build/', - }), - }; + return { + body: JSON.stringify({ + name: 'Astro Technology Company', + url: 'https://astro.build/', + }), + }; } ``` @@ -1921,10 +2012,10 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve ```js export default { - markdownOptions: { - remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]], - rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]], - }, + markdownOptions: { + remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]], + rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]], + }, }; ``` @@ -1944,10 +2035,10 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve ```js export default { - name: '@matthewp/my-renderer', - server: './server.js', - client: './client.js', - hydrationPolyfills: ['./my-polyfill.js'], + name: '@matthewp/my-renderer', + server: './server.js', + client: './client.js', + hydrationPolyfills: ['./my-polyfill.js'], }; ``` diff --git a/packages/astro/package.json b/packages/astro/package.json index da89cddd9a14..afcf72a77257 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.25.0-next.3", + "version": "0.25.0", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", @@ -75,8 +75,8 @@ "dependencies": { "@astrojs/compiler": "^0.13.1", "@astrojs/language-server": "^0.8.10", - "@astrojs/markdown-remark": "^0.7.0-next.1", - "@astrojs/prism": "0.4.1-next.0", + "@astrojs/markdown-remark": "^0.7.0", + "@astrojs/prism": "0.4.1", "@astrojs/webapi": "^0.11.0", "@babel/core": "^7.17.8", "@babel/generator": "^7.17.7", diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index f36d3499c1de..689c7c80996f 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro +## 0.8.0 + +### Minor Changes + +- [#2843](https://github.com/withastro/astro/pull/2843) [`1fdb63b5`](https://github.com/withastro/astro/commit/1fdb63b5d000d17edca77e870ce721e616a9c64a) Thanks [@JuanM04](https://github.com/JuanM04)! - Automatically add integration `peerDependencies` to scaffolded `package.json` files + ## 0.8.0-next.0 ### Minor Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index 8ed4ff5ce335..3714ddbddf65 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "0.8.0-next.0", + "version": "0.8.0", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/integrations/lit/CHANGELOG.md b/packages/integrations/lit/CHANGELOG.md index dc6d5953b859..70e84ebf24f6 100644 --- a/packages/integrations/lit/CHANGELOG.md +++ b/packages/integrations/lit/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/lit +## 0.0.2 + +### Patch Changes + +- [#2885](https://github.com/withastro/astro/pull/2885) [`6b004363`](https://github.com/withastro/astro/commit/6b004363f99f27e581d1e2d53a2ebff39d7afb8a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add README across Astro built-in integrations + +* [#2847](https://github.com/withastro/astro/pull/2847) [`3b621f7a`](https://github.com/withastro/astro/commit/3b621f7a613b45983b090794fa7c015f23ed6140) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds keywords to the official integrations to support discoverability on Astro's Integrations site + ## 0.0.2-next.0 ### Patch Changes diff --git a/packages/integrations/lit/package.json b/packages/integrations/lit/package.json index e5ca546104c0..89d2ea714cc8 100644 --- a/packages/integrations/lit/package.json +++ b/packages/integrations/lit/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/lit", - "version": "0.0.2-next.0", + "version": "0.0.2", "description": "Use Lit components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md new file mode 100644 index 000000000000..62e59551015e --- /dev/null +++ b/packages/integrations/netlify/CHANGELOG.md @@ -0,0 +1,18 @@ +# @astrojs/netlify + +## 0.0.2 + +### Patch Changes + +- [#2879](https://github.com/withastro/astro/pull/2879) [`80034c6c`](https://github.com/withastro/astro/commit/80034c6cbc89761618847e6df43fd49560a05aa9) Thanks [@matthewp](https://github.com/matthewp)! - 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/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json index e3f1fd0ec471..7fbeac138f74 100644 --- a/packages/integrations/netlify/package.json +++ b/packages/integrations/netlify/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/netlify", "description": "Deploy your site to Netlify", - "version": "0.0.1", + "version": "0.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/node/CHANGELOG.md b/packages/integrations/node/CHANGELOG.md index 31593ed2b947..cef3d7515f92 100644 --- a/packages/integrations/node/CHANGELOG.md +++ b/packages/integrations/node/CHANGELOG.md @@ -1,5 +1,24 @@ # @astrojs/node +## 0.0.2 + +### Patch Changes + +- [#2879](https://github.com/withastro/astro/pull/2879) [`80034c6c`](https://github.com/withastro/astro/commit/80034c6cbc89761618847e6df43fd49560a05aa9) Thanks [@matthewp](https://github.com/matthewp)! - 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(), + }); + ``` + +* [#2873](https://github.com/withastro/astro/pull/2873) [`e4025d1f`](https://github.com/withastro/astro/commit/e4025d1f530310d6ab951109f4f53878a307471a) Thanks [@matthewp](https://github.com/matthewp)! - Improves the build by building to a single file for rendering + ## 0.0.2-next.0 ### Patch Changes diff --git a/packages/integrations/node/package.json b/packages/integrations/node/package.json index 5ca0cbc78371..e6ab9cd7d6ec 100644 --- a/packages/integrations/node/package.json +++ b/packages/integrations/node/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/node", "description": "Deploy your site to a Node.js server", - "version": "0.0.2-next.0", + "version": "0.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/partytown/CHANGELOG.md b/packages/integrations/partytown/CHANGELOG.md index 19ba4f80c6e3..52c5ed511757 100644 --- a/packages/integrations/partytown/CHANGELOG.md +++ b/packages/integrations/partytown/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/partytown +## 0.0.2 + +### Patch Changes + +- [#2885](https://github.com/withastro/astro/pull/2885) [`6b004363`](https://github.com/withastro/astro/commit/6b004363f99f27e581d1e2d53a2ebff39d7afb8a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add README across Astro built-in integrations + +* [#2847](https://github.com/withastro/astro/pull/2847) [`3b621f7a`](https://github.com/withastro/astro/commit/3b621f7a613b45983b090794fa7c015f23ed6140) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds keywords to the official integrations to support discoverability on Astro's Integrations site + ## 0.0.2-next.0 ### Patch Changes diff --git a/packages/integrations/partytown/package.json b/packages/integrations/partytown/package.json index e415e012cbb5..3e9a4d79fa1e 100644 --- a/packages/integrations/partytown/package.json +++ b/packages/integrations/partytown/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/partytown", "description": "Astro + Partytown integration", - "version": "0.0.2-next.0", + "version": "0.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md index 4933ac63c3a6..ca6c1bc2c164 100644 --- a/packages/integrations/preact/CHANGELOG.md +++ b/packages/integrations/preact/CHANGELOG.md @@ -1,5 +1,15 @@ # @astrojs/preact +## 0.0.2 + +### Patch Changes + +- [#2885](https://github.com/withastro/astro/pull/2885) [`6b004363`](https://github.com/withastro/astro/commit/6b004363f99f27e581d1e2d53a2ebff39d7afb8a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add README across Astro built-in integrations + +* [#2847](https://github.com/withastro/astro/pull/2847) [`3b621f7a`](https://github.com/withastro/astro/commit/3b621f7a613b45983b090794fa7c015f23ed6140) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds keywords to the official integrations to support discoverability on Astro's Integrations site + +- [#2872](https://github.com/withastro/astro/pull/2872) [`098f6f6b`](https://github.com/withastro/astro/commit/098f6f6b06396441c576dc689d8552629ef260e1) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix `isSelfAccepting` errors when using the Preact integration with the Astro dev server + ## 0.0.2-next.1 ### Patch Changes diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index ee91a493024d..74f2f6edcfee 100644 --- a/packages/integrations/preact/package.json +++ b/packages/integrations/preact/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/preact", "description": "Use Preact components within Astro", - "version": "0.0.2-next.1", + "version": "0.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md index 90e168e93a15..3fc5d03502c7 100644 --- a/packages/integrations/react/CHANGELOG.md +++ b/packages/integrations/react/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/react +## 0.0.2 + +### Patch Changes + +- [#2885](https://github.com/withastro/astro/pull/2885) [`6b004363`](https://github.com/withastro/astro/commit/6b004363f99f27e581d1e2d53a2ebff39d7afb8a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add README across Astro built-in integrations + +* [#2847](https://github.com/withastro/astro/pull/2847) [`3b621f7a`](https://github.com/withastro/astro/commit/3b621f7a613b45983b090794fa7c015f23ed6140) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds keywords to the official integrations to support discoverability on Astro's Integrations site + ## 0.0.2-next.0 ### Patch Changes diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index fa9c939b9758..64c79afe2a14 100644 --- a/packages/integrations/react/package.json +++ b/packages/integrations/react/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/react", "description": "Use React components within Astro", - "version": "0.0.2-next.0", + "version": "0.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/sitemap/CHANGELOG.md b/packages/integrations/sitemap/CHANGELOG.md index e46ed837a50e..0ad92093df4d 100644 --- a/packages/integrations/sitemap/CHANGELOG.md +++ b/packages/integrations/sitemap/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/sitemap +## 0.0.2 + +### Patch Changes + +- [#2885](https://github.com/withastro/astro/pull/2885) [`6b004363`](https://github.com/withastro/astro/commit/6b004363f99f27e581d1e2d53a2ebff39d7afb8a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add README across Astro built-in integrations + +* [#2847](https://github.com/withastro/astro/pull/2847) [`3b621f7a`](https://github.com/withastro/astro/commit/3b621f7a613b45983b090794fa7c015f23ed6140) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds keywords to the official integrations to support discoverability on Astro's Integrations site + ## 0.0.2-next.0 ### Patch Changes diff --git a/packages/integrations/sitemap/package.json b/packages/integrations/sitemap/package.json index 34d30375065b..857322859e84 100644 --- a/packages/integrations/sitemap/package.json +++ b/packages/integrations/sitemap/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/sitemap", "description": "Generate a sitemap for Astro", - "version": "0.0.2-next.0", + "version": "0.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md index a8aa09c63c8b..6f717e1df00c 100644 --- a/packages/integrations/solid/CHANGELOG.md +++ b/packages/integrations/solid/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/solid-js +## 0.0.2 + +### Patch Changes + +- [#2885](https://github.com/withastro/astro/pull/2885) [`6b004363`](https://github.com/withastro/astro/commit/6b004363f99f27e581d1e2d53a2ebff39d7afb8a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add README across Astro built-in integrations + +* [#2847](https://github.com/withastro/astro/pull/2847) [`3b621f7a`](https://github.com/withastro/astro/commit/3b621f7a613b45983b090794fa7c015f23ed6140) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds keywords to the official integrations to support discoverability on Astro's Integrations site + ## 0.0.2-next.0 ### Patch Changes diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json index 289abf617314..1e8cf919af94 100644 --- a/packages/integrations/solid/package.json +++ b/packages/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/solid-js", - "version": "0.0.2-next.0", + "version": "0.0.2", "description": "Use Solid components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md index 16b666cb2f55..acdf35e4c566 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/svelte +## 0.0.2 + +### Patch Changes + +- [#2885](https://github.com/withastro/astro/pull/2885) [`6b004363`](https://github.com/withastro/astro/commit/6b004363f99f27e581d1e2d53a2ebff39d7afb8a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add README across Astro built-in integrations + +* [#2847](https://github.com/withastro/astro/pull/2847) [`3b621f7a`](https://github.com/withastro/astro/commit/3b621f7a613b45983b090794fa7c015f23ed6140) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds keywords to the official integrations to support discoverability on Astro's Integrations site + ## 0.0.2-next.0 ### Patch Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index 71a7a20a6a61..f38db4f32dcc 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "0.0.2-next.0", + "version": "0.0.2", "description": "Use Svelte components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/tailwind/CHANGELOG.md b/packages/integrations/tailwind/CHANGELOG.md index 2b80c4f6bf90..0d8ce6c98ac9 100644 --- a/packages/integrations/tailwind/CHANGELOG.md +++ b/packages/integrations/tailwind/CHANGELOG.md @@ -1,5 +1,15 @@ # @astrojs/tailwind +## 0.0.2 + +### Patch Changes + +- [#2831](https://github.com/withastro/astro/pull/2831) [`5315c3f7`](https://github.com/withastro/astro/commit/5315c3f7bc0649f9788713f689f484e223bc0ca6) Thanks [@bholmesdev](https://github.com/bholmesdev)! - 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. + +* [#2885](https://github.com/withastro/astro/pull/2885) [`6b004363`](https://github.com/withastro/astro/commit/6b004363f99f27e581d1e2d53a2ebff39d7afb8a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add README across Astro built-in integrations + +- [#2847](https://github.com/withastro/astro/pull/2847) [`3b621f7a`](https://github.com/withastro/astro/commit/3b621f7a613b45983b090794fa7c015f23ed6140) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds keywords to the official integrations to support discoverability on Astro's Integrations site + ## 0.0.2-next.0 ### Patch Changes diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json index 318f939518bb..6ecdbdbf4441 100644 --- a/packages/integrations/tailwind/package.json +++ b/packages/integrations/tailwind/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/tailwind", "description": "Tailwind + Astro Integrations", - "version": "0.0.2-next.0", + "version": "0.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/turbolinks/CHANGELOG.md b/packages/integrations/turbolinks/CHANGELOG.md index a36b55685551..3603fd47a931 100644 --- a/packages/integrations/turbolinks/CHANGELOG.md +++ b/packages/integrations/turbolinks/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/turbolinks +## 0.0.2 + +### Patch Changes + +- [#2885](https://github.com/withastro/astro/pull/2885) [`6b004363`](https://github.com/withastro/astro/commit/6b004363f99f27e581d1e2d53a2ebff39d7afb8a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add README across Astro built-in integrations + +* [#2847](https://github.com/withastro/astro/pull/2847) [`3b621f7a`](https://github.com/withastro/astro/commit/3b621f7a613b45983b090794fa7c015f23ed6140) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds keywords to the official integrations to support discoverability on Astro's Integrations site + ## 0.0.2-next.0 ### Patch Changes diff --git a/packages/integrations/turbolinks/package.json b/packages/integrations/turbolinks/package.json index 9c605979af2f..60564d543185 100644 --- a/packages/integrations/turbolinks/package.json +++ b/packages/integrations/turbolinks/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/turbolinks", "description": "Turbolinks + Astro Integrations", - "version": "0.0.2-next.0", + "version": "0.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md index db07324f37a6..e8ac6f2e0c1e 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/vue +## 0.0.2 + +### Patch Changes + +- [#2885](https://github.com/withastro/astro/pull/2885) [`6b004363`](https://github.com/withastro/astro/commit/6b004363f99f27e581d1e2d53a2ebff39d7afb8a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add README across Astro built-in integrations + +* [#2847](https://github.com/withastro/astro/pull/2847) [`3b621f7a`](https://github.com/withastro/astro/commit/3b621f7a613b45983b090794fa7c015f23ed6140) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds keywords to the official integrations to support discoverability on Astro's Integrations site + ## 0.0.2-next.0 ### Patch Changes diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index b3a416bf4d2c..e25e2d744911 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "0.0.2-next.0", + "version": "0.0.2", "description": "Use Vue components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md index 041e8b3efa20..feb483923efb 100644 --- a/packages/markdown/remark/CHANGELOG.md +++ b/packages/markdown/remark/CHANGELOG.md @@ -1,5 +1,18 @@ # @astrojs/markdown-remark +## 0.7.0 + +### Minor Changes + +- [#2824](https://github.com/withastro/astro/pull/2824) [`0a3d3e51`](https://github.com/withastro/astro/commit/0a3d3e51a66af80fa949ba0f5e2104439d2be634) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Change shiki to our default markdown syntax highlighter. This includes updates to all relevant starter projects that used Prism-specific styles. + +### Patch Changes + +- [#2870](https://github.com/withastro/astro/pull/2870) [`d763ec18`](https://github.com/withastro/astro/commit/d763ec183ea391ad79ca16bf2b2e76848fc1180c) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Fix a shiki performance issue affecting large sites + +- Updated dependencies [[`2db97f10`](https://github.com/withastro/astro/commit/2db97f10dc50f9498413181b78c477fe8833895b)]: + - @astrojs/prism@0.4.1 + ## 0.7.0-next.1 ### Patch Changes @@ -174,10 +187,10 @@ ```js export default { - markdownOptions: { - remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]], - rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]], - }, + markdownOptions: { + remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]], + rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]], + }, }; ``` diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json index ac6e90c2405a..cfee47f76399 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-remark", - "version": "0.7.0-next.1", + "version": "0.7.0", "type": "module", "author": "withastro", "license": "MIT", @@ -23,7 +23,7 @@ "dev": "astro-scripts dev \"src/**/*.ts\"" }, "dependencies": { - "@astrojs/prism": "^0.4.1-next.0", + "@astrojs/prism": "^0.4.1", "assert": "^2.0.0", "github-slugger": "^1.4.0", "gray-matter": "^4.0.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 29351650e257..7a9b0bc86bdf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,8 +43,8 @@ importers: examples/blog: specifiers: - '@astrojs/preact': ^0.0.2-next.1 - astro: ^0.25.0-next.3 + '@astrojs/preact': ^0.0.2 + astro: ^0.25.0 preact: ^10.6.6 dependencies: preact: 10.6.6 @@ -54,8 +54,8 @@ importers: examples/blog-multiple-authors: specifiers: - '@astrojs/preact': ^0.0.2-next.1 - astro: ^0.25.0-next.3 + '@astrojs/preact': ^0.0.2 + astro: ^0.25.0 preact: ^10.6.6 sass: ^1.49.9 dependencies: @@ -67,14 +67,14 @@ importers: examples/component: specifiers: - astro: ^0.25.0-next.3 + astro: ^0.25.0 devDependencies: astro: link:../../packages/astro examples/component/demo: specifiers: '@example/my-component': workspace:* - astro: ^0.25.0-next.3 + astro: ^0.25.0 devDependencies: '@example/my-component': link:../packages/my-component astro: link:../../../packages/astro @@ -85,12 +85,12 @@ importers: examples/docs: specifiers: '@algolia/client-search': ^4.13.0 - '@astrojs/preact': ^0.0.2-next.1 - '@astrojs/react': ^0.0.2-next.0 + '@astrojs/preact': ^0.0.2 + '@astrojs/react': ^0.0.2 '@docsearch/css': ^3.0.0 '@docsearch/react': ^3.0.0 '@types/react': ^17.0.43 - astro: ^0.25.0-next.3 + astro: ^0.25.0 preact: ^10.6.6 react: ^17.0.2 react-dom: ^17.0.2 @@ -109,21 +109,21 @@ importers: examples/env-vars: specifiers: - astro: ^0.25.0-next.3 + astro: ^0.25.0 devDependencies: astro: link:../../packages/astro examples/framework-alpine: specifiers: - astro: ^0.25.0-next.3 + astro: ^0.25.0 devDependencies: astro: link:../../packages/astro examples/framework-lit: specifiers: - '@astrojs/lit': ^0.0.2-next.0 + '@astrojs/lit': ^0.0.2 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^0.25.0-next.3 + astro: ^0.25.0 lit: ^2.2.1 dependencies: '@webcomponents/template-shadowroot': 0.1.0 @@ -134,14 +134,14 @@ importers: examples/framework-multiple: specifiers: - '@astrojs/lit': ^0.0.2-next.0 - '@astrojs/preact': ^0.0.2-next.1 - '@astrojs/react': ^0.0.2-next.0 - '@astrojs/solid-js': ^0.0.2-next.0 - '@astrojs/svelte': ^0.0.2-next.0 - '@astrojs/vue': ^0.0.2-next.0 + '@astrojs/lit': ^0.0.2 + '@astrojs/preact': ^0.0.2 + '@astrojs/react': ^0.0.2 + '@astrojs/solid-js': ^0.0.2 + '@astrojs/svelte': ^0.0.2 + '@astrojs/vue': ^0.0.2 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^0.25.0-next.3 + astro: ^0.25.0 lit: ^2.2.1 preact: ^10.6.6 react: ^17.0.2 @@ -169,8 +169,8 @@ importers: examples/framework-preact: specifiers: - '@astrojs/preact': ^0.0.2-next.1 - astro: ^0.25.0-next.3 + '@astrojs/preact': ^0.0.2 + astro: ^0.25.0 preact: ^10.6.6 dependencies: preact: 10.6.6 @@ -180,8 +180,8 @@ importers: examples/framework-react: specifiers: - '@astrojs/react': ^0.0.2-next.0 - astro: ^0.25.0-next.3 + '@astrojs/react': ^0.0.2 + astro: ^0.25.0 react: ^17.0.2 react-dom: ^17.0.2 dependencies: @@ -193,8 +193,8 @@ importers: examples/framework-solid: specifiers: - '@astrojs/solid-js': ^0.0.2-next.0 - astro: ^0.25.0-next.3 + '@astrojs/solid-js': ^0.0.2 + astro: ^0.25.0 solid-js: ^1.3.13 dependencies: solid-js: 1.3.13 @@ -204,8 +204,8 @@ importers: examples/framework-svelte: specifiers: - '@astrojs/svelte': ^0.0.2-next.0 - astro: ^0.25.0-next.3 + '@astrojs/svelte': ^0.0.2 + astro: ^0.25.0 svelte: ^3.46.4 dependencies: svelte: 3.46.4 @@ -215,8 +215,8 @@ importers: examples/framework-vue: specifiers: - '@astrojs/vue': ^0.0.2-next.0 - astro: ^0.25.0-next.3 + '@astrojs/vue': ^0.0.2 + astro: ^0.25.0 vue: ^3.2.31 dependencies: vue: 3.2.31 @@ -226,14 +226,14 @@ importers: examples/integrations-playground: specifiers: - '@astrojs/lit': ^0.0.2-next.0 - '@astrojs/partytown': ^0.0.2-next.0 - '@astrojs/react': ^0.0.2-next.0 - '@astrojs/sitemap': ^0.0.2-next.0 - '@astrojs/tailwind': ^0.0.2-next.0 - '@astrojs/turbolinks': ^0.0.2-next.0 + '@astrojs/lit': ^0.0.2 + '@astrojs/partytown': ^0.0.2 + '@astrojs/react': ^0.0.2 + '@astrojs/sitemap': ^0.0.2 + '@astrojs/tailwind': ^0.0.2 + '@astrojs/turbolinks': ^0.0.2 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^0.25.0-next.3 + astro: ^0.25.0 lit: ^2.2.1 preact: ^10.6.6 react: ^17.0.2 @@ -261,20 +261,20 @@ importers: examples/minimal: specifiers: - astro: ^0.25.0-next.3 + astro: ^0.25.0 devDependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^0.25.0-next.3 + astro: ^0.25.0 devDependencies: astro: link:../../packages/astro examples/portfolio: specifiers: - '@astrojs/preact': ^0.0.2-next.1 - astro: ^0.25.0-next.3 + '@astrojs/preact': ^0.0.2 + astro: ^0.25.0 preact: ^10.6.6 sass: ^1.49.9 dependencies: @@ -286,9 +286,9 @@ importers: examples/ssr: specifiers: - '@astrojs/node': ^0.0.2-next.0 - '@astrojs/svelte': ^0.0.2-next.0 - astro: ^0.25.0-next.3 + '@astrojs/node': ^0.0.2 + '@astrojs/svelte': ^0.0.2 + astro: ^0.25.0 concurrently: ^7.0.0 lightcookie: ^1.0.25 svelte: ^3.46.4 @@ -307,14 +307,14 @@ importers: examples/starter: specifiers: - astro: ^0.25.0-next.3 + astro: ^0.25.0 devDependencies: astro: link:../../packages/astro examples/subpath: specifiers: - '@astrojs/react': ^0.0.2-next.0 - astro: ^0.25.0-next.3 + '@astrojs/react': ^0.0.2 + astro: ^0.25.0 react: ^17.0.2 react-dom: ^17.0.2 sass: ^1.49.9 @@ -328,12 +328,12 @@ importers: examples/with-markdown: specifiers: - '@astrojs/markdown-remark': ^0.7.0-next.1 - '@astrojs/preact': ^0.0.2-next.1 - '@astrojs/react': ^0.0.2-next.0 - '@astrojs/svelte': ^0.0.2-next.0 - '@astrojs/vue': ^0.0.2-next.0 - astro: ^0.25.0-next.3 + '@astrojs/markdown-remark': ^0.7.0 + '@astrojs/preact': ^0.0.2 + '@astrojs/react': ^0.0.2 + '@astrojs/svelte': ^0.0.2 + '@astrojs/vue': ^0.0.2 + astro: ^0.25.0 preact: ^10.6.6 react: ^17.0.2 react-dom: ^17.0.2 @@ -355,8 +355,8 @@ importers: examples/with-markdown-plugins: specifiers: - '@astrojs/markdown-remark': ^0.7.0-next.1 - astro: ^0.25.0-next.3 + '@astrojs/markdown-remark': ^0.7.0 + astro: ^0.25.0 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -373,23 +373,23 @@ importers: examples/with-markdown-shiki: specifiers: - '@astrojs/markdown-remark': ^0.7.0-next.1 - astro: ^0.25.0-next.3 + '@astrojs/markdown-remark': ^0.7.0 + astro: ^0.25.0 devDependencies: '@astrojs/markdown-remark': link:../../packages/markdown/remark astro: link:../../packages/astro examples/with-nanostores: specifiers: - '@astrojs/preact': ^0.0.2-next.1 - '@astrojs/react': ^0.0.2-next.0 - '@astrojs/solid-js': ^0.0.2-next.0 - '@astrojs/svelte': ^0.0.2-next.0 - '@astrojs/vue': ^0.0.2-next.0 + '@astrojs/preact': ^0.0.2 + '@astrojs/react': ^0.0.2 + '@astrojs/solid-js': ^0.0.2 + '@astrojs/svelte': ^0.0.2 + '@astrojs/vue': ^0.0.2 '@nanostores/preact': ^0.1.3 '@nanostores/react': ^0.1.5 '@nanostores/vue': ^0.4.1 - astro: ^0.25.0-next.3 + astro: ^0.25.0 nanostores: ^0.5.12 preact: ^10.6.6 react: ^17.0.2 @@ -416,8 +416,8 @@ importers: examples/with-tailwindcss: specifiers: - '@astrojs/tailwind': ^0.0.2-next.0 - astro: ^0.25.0-next.3 + '@astrojs/tailwind': ^0.0.2 + astro: ^0.25.0 autoprefixer: ^10.4.4 canvas-confetti: ^1.5.1 postcss: ^8.4.12 @@ -432,7 +432,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^0.25.0-next.3 + astro: ^0.25.0 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.2 devDependencies: @@ -444,8 +444,8 @@ importers: specifiers: '@astrojs/compiler': ^0.13.1 '@astrojs/language-server': ^0.8.10 - '@astrojs/markdown-remark': ^0.7.0-next.1 - '@astrojs/prism': 0.4.1-next.0 + '@astrojs/markdown-remark': ^0.7.0 + '@astrojs/prism': 0.4.1 '@astrojs/webapi': ^0.11.0 '@babel/core': ^7.17.8 '@babel/generator': ^7.17.7 @@ -1350,7 +1350,7 @@ importers: packages/markdown/remark: specifiers: - '@astrojs/prism': ^0.4.1-next.0 + '@astrojs/prism': ^0.4.1 '@types/github-slugger': ^1.3.0 '@types/prismjs': ^1.26.0 assert: ^2.0.0