From d0826893851936540da5f2af64dc1b8378e234af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Mar 2022 20:27:46 -0700 Subject: [PATCH] [ci] release (next) (#2851) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 7 +- examples/blog-multiple-authors/package.json | 4 +- examples/blog/package.json | 4 +- examples/component/demo/package.json | 2 +- examples/component/package.json | 2 +- examples/docs/package.json | 6 +- examples/env-vars/package.json | 2 +- examples/framework-alpine/package.json | 2 +- examples/framework-lit/package.json | 4 +- examples/framework-multiple/package.json | 14 +- examples/framework-preact/package.json | 4 +- examples/framework-react/package.json | 4 +- examples/framework-solid/package.json | 4 +- examples/framework-svelte/package.json | 4 +- examples/framework-vue/package.json | 4 +- examples/integrations-playground/package.json | 14 +- examples/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio/package.json | 4 +- examples/ssr/package.json | 4 +- examples/starter/package.json | 2 +- examples/subpath/package.json | 4 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown-shiki/package.json | 2 +- examples/with-markdown/package.json | 10 +- examples/with-nanostores/package.json | 12 +- examples/with-tailwindcss/package.json | 4 +- examples/with-vite-plugin-pwa/package.json | 2 +- packages/astro/CHANGELOG.md | 66 ++++++---- packages/astro/package.json | 2 +- packages/create-astro/CHANGELOG.md | 6 + packages/create-astro/package.json | 2 +- packages/integrations/lit/CHANGELOG.md | 7 + packages/integrations/lit/package.json | 2 +- packages/integrations/partytown/CHANGELOG.md | 7 + packages/integrations/partytown/package.json | 2 +- packages/integrations/preact/CHANGELOG.md | 7 + packages/integrations/preact/package.json | 2 +- packages/integrations/react/CHANGELOG.md | 7 + packages/integrations/react/package.json | 2 +- packages/integrations/sitemap/CHANGELOG.md | 7 + packages/integrations/sitemap/package.json | 2 +- packages/integrations/solid/CHANGELOG.md | 7 + packages/integrations/solid/package.json | 2 +- packages/integrations/svelte/CHANGELOG.md | 7 + packages/integrations/svelte/package.json | 2 +- packages/integrations/tailwind/CHANGELOG.md | 9 ++ packages/integrations/tailwind/package.json | 2 +- packages/integrations/turbolinks/CHANGELOG.md | 7 + packages/integrations/turbolinks/package.json | 2 +- packages/integrations/vue/CHANGELOG.md | 7 + packages/integrations/vue/package.json | 2 +- pnpm-lock.yaml | 124 +++++++++--------- 53 files changed, 257 insertions(+), 166 deletions(-) create mode 100644 packages/integrations/lit/CHANGELOG.md create mode 100644 packages/integrations/partytown/CHANGELOG.md create mode 100644 packages/integrations/preact/CHANGELOG.md create mode 100644 packages/integrations/react/CHANGELOG.md create mode 100644 packages/integrations/sitemap/CHANGELOG.md create mode 100644 packages/integrations/solid/CHANGELOG.md create mode 100644 packages/integrations/svelte/CHANGELOG.md create mode 100644 packages/integrations/tailwind/CHANGELOG.md create mode 100644 packages/integrations/turbolinks/CHANGELOG.md create mode 100644 packages/integrations/vue/CHANGELOG.md diff --git a/.changeset/pre.json b/.changeset/pre.json index c6c33d08faa8..67e3b0b4f11e 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -57,10 +57,15 @@ }, "changesets": [ "eighty-trees-thank", + "forty-badgers-relate", "fuzzy-lies-nail", "lemon-needles-count", "moody-trees-allow", + "rude-panthers-tease", + "rude-starfishes-drop", "silent-walls-tan", - "spotty-houses-stare" + "spotty-houses-stare", + "tidy-jobs-beg", + "twenty-kiwis-tease" ] } diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index 26277fb7e9da..d44467024a50 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.1", - "astro": "^0.25.0-next.1", + "@astrojs/preact": "^0.0.2-next.0", + "astro": "^0.25.0-next.2", "sass": "^1.49.9" }, "dependencies": { diff --git a/examples/blog/package.json b/examples/blog/package.json index 2fa4136cf18e..e01cb13b64f9 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.0-next.1", - "@astrojs/preact": "^0.0.1" + "astro": "^0.25.0-next.2", + "@astrojs/preact": "^0.0.2-next.0" }, "dependencies": { "preact": "^10.6.6" diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index dd134d06416c..7c7cee527ba2 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.1" + "astro": "^0.25.0-next.2" } } diff --git a/examples/component/package.json b/examples/component/package.json index eb089aa8e6b5..2643dd7b49cd 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.1" + "astro": "^0.25.0-next.2" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index f820cb09f11e..6867e596d0e0 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.1", - "@astrojs/react": "^0.0.1", - "astro": "^0.25.0-next.1" + "@astrojs/preact": "^0.0.2-next.0", + "@astrojs/react": "^0.0.2-next.0", + "astro": "^0.25.0-next.2" } } diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json index 35f6a52ef3c1..4c8be03fc7e5 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.1" + "astro": "^0.25.0-next.2" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 902c0b9d31bd..8d09faec2c7c 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.1" + "astro": "^0.25.0-next.2" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index afeba6a0cb99..2fa3c27228e2 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.1", - "astro": "^0.25.0-next.1" + "@astrojs/lit": "^0.0.2-next.0", + "astro": "^0.25.0-next.2" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 3b099921f4e1..e2a3b09282a0 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.1", - "@astrojs/preact": "^0.0.1", - "@astrojs/react": "^0.0.1", - "@astrojs/solid-js": "^0.0.1", - "@astrojs/svelte": "^0.0.1", - "@astrojs/vue": "^0.0.1", - "astro": "^0.25.0-next.1" + "@astrojs/lit": "^0.0.2-next.0", + "@astrojs/preact": "^0.0.2-next.0", + "@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.2" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 2a438d06c78c..57b14ffda529 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.1", - "astro": "^0.25.0-next.1" + "@astrojs/preact": "^0.0.2-next.0", + "astro": "^0.25.0-next.2" }, "dependencies": { "preact": "^10.6.6" diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index f92667ea3f1f..58df19f53bcf 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.1", - "astro": "^0.25.0-next.1" + "@astrojs/react": "^0.0.2-next.0", + "astro": "^0.25.0-next.2" }, "dependencies": { "react": "^17.0.2", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index f2047d93394b..65ca2c9cc564 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.1", - "astro": "^0.25.0-next.1" + "@astrojs/solid-js": "^0.0.2-next.0", + "astro": "^0.25.0-next.2" }, "dependencies": { "solid-js": "^1.3.13" diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 7b9d2b25bcf9..07501ed0070e 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.1", - "astro": "^0.25.0-next.1" + "@astrojs/svelte": "^0.0.2-next.0", + "astro": "^0.25.0-next.2" }, "dependencies": { "svelte": "^3.46.4" diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index a7bd3d960389..e08fb8f3c54b 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.1", - "astro": "^0.25.0-next.1" + "@astrojs/vue": "^0.0.2-next.0", + "astro": "^0.25.0-next.2" }, "dependencies": { "vue": "^3.2.31" diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json index c1bf7a3c04f1..4b42f50c59a8 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.1", - "@astrojs/partytown": "^0.0.1", - "@astrojs/react": "^0.0.1", - "@astrojs/sitemap": "^0.0.1", - "@astrojs/tailwind": "^0.0.1", - "@astrojs/turbolinks": "^0.0.1", - "astro": "^0.25.0-next.1" + "@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.2" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 19ede91e5fa7..8a925f7a6281 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.0-next.1" + "astro": "^0.25.0-next.2" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index b945a26bb50e..34ee37ce4ec2 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.1" + "astro": "^0.25.0-next.2" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 0f032df7d2c1..11a1a0dc7329 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/preact": "^0.0.1", - "astro": "^0.25.0-next.1", + "@astrojs/preact": "^0.0.2-next.0", + "astro": "^0.25.0-next.2", "sass": "^1.49.9" }, "dependencies": { diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 6fcee773dc61..44eebe3a12e5 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,8 +12,8 @@ "server": "node server/server.mjs" }, "devDependencies": { - "@astrojs/svelte": "^0.0.1", - "astro": "^0.25.0-next.1", + "@astrojs/svelte": "^0.0.2-next.0", + "astro": "^0.25.0-next.2", "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 63193dc1f706..1336997e1f58 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.25.0-next.1" + "astro": "^0.25.0-next.2" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index 0abe3a645dc9..7eb4f03dbeed 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/react": "^0.0.1", - "astro": "^0.25.0-next.1", + "@astrojs/react": "^0.0.2-next.0", + "astro": "^0.25.0-next.2", "sass": "^1.49.9" }, "dependencies": { diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 217c8bfd8af9..96f19b296751 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.7.0-next.0", - "astro": "^0.25.0-next.1", + "astro": "^0.25.0-next.2", "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 79cdb1f4cd37..79598c471435 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.7.0-next.0", - "astro": "^0.25.0-next.1" + "astro": "^0.25.0-next.2" } } diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index 3d7a61e2a40d..6093cbbedec2 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -10,11 +10,11 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.7.0-next.0", - "@astrojs/preact": "^0.0.1", - "@astrojs/react": "^0.0.1", - "@astrojs/svelte": "^0.0.1", - "@astrojs/vue": "^0.0.1", - "astro": "^0.25.0-next.1" + "@astrojs/preact": "^0.0.2-next.0", + "@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.2" }, "dependencies": { "preact": "^10.6.6", diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index e344c8113aed..1c1cfc8a06ac 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.1", - "@astrojs/react": "^0.0.1", - "@astrojs/solid-js": "^0.0.1", - "@astrojs/svelte": "^0.0.1", - "@astrojs/vue": "^0.0.1", - "astro": "^0.25.0-next.1" + "@astrojs/preact": "^0.0.2-next.0", + "@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.2" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index a0309972f987..06ec335c4713 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.1", - "astro": "^0.25.0-next.1", + "@astrojs/tailwind": "^0.0.2-next.0", + "astro": "^0.25.0-next.2", "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 d4b3b7cd6e2c..cf002aa9bc45 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.1", + "astro": "^0.25.0-next.2", "vite-plugin-pwa": "0.11.11", "workbox-window": "^6.5.1" } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 71d35ce543d0..112c6cbec904 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,13 @@ # astro +## 0.25.0-next.2 + +### Patch Changes + +- [#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 + +* [#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 + ## 0.25.0-next.1 ### Patch Changes @@ -52,7 +60,7 @@ import { defineConfig } from 'astro/config'; export default defineConfig({ - renderers: [], + renderers: [], }); ``` @@ -90,9 +98,9 @@ ```json { - "scripts": { - "build": "astro build --legacy-build" - } + "scripts": { + "build": "astro build --legacy-build" + } } ``` @@ -112,7 +120,7 @@ ```ts if (Astro.slots.has('default')) { - const content = await Astro.slots.render('default'); + const content = await Astro.slots.render('default'); } ``` @@ -196,7 +204,7 @@ ```ts if (Astro.slots.has('default')) { - const content = await Astro.slots.render('default'); + const content = await Astro.slots.render('default'); } ``` @@ -220,9 +228,9 @@ ```json { - "scripts": { - "build": "astro build --legacy-build" - } + "scripts": { + "build": "astro build --legacy-build" + } } ``` @@ -334,12 +342,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/', + }), + }; } ``` @@ -501,12 +509,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/', + }), + }; } ``` @@ -1861,10 +1869,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' }]], + }, }; ``` @@ -1884,10 +1892,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 3664d9035093..54efee8de6ee 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.25.0-next.1", + "version": "0.25.0-next.2", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index 57ff1fecae20..f36d3499c1de 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro +## 0.8.0-next.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.7.1 ### Patch Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index e46400362b25..1f2089e2906c 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "0.7.1", + "version": "0.8.0-next.0", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/integrations/lit/CHANGELOG.md b/packages/integrations/lit/CHANGELOG.md new file mode 100644 index 000000000000..dc6d5953b859 --- /dev/null +++ b/packages/integrations/lit/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/lit + +## 0.0.2-next.0 + +### Patch Changes + +- [#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 diff --git a/packages/integrations/lit/package.json b/packages/integrations/lit/package.json index ed2116c0841d..7225fad12924 100644 --- a/packages/integrations/lit/package.json +++ b/packages/integrations/lit/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/lit", - "version": "0.0.1", + "version": "0.0.2-next.0", "description": "Use Lit components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/partytown/CHANGELOG.md b/packages/integrations/partytown/CHANGELOG.md new file mode 100644 index 000000000000..19ba4f80c6e3 --- /dev/null +++ b/packages/integrations/partytown/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/partytown + +## 0.0.2-next.0 + +### Patch Changes + +- [#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 diff --git a/packages/integrations/partytown/package.json b/packages/integrations/partytown/package.json index 6d878893ae88..60be71dbe981 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.1", + "version": "0.0.2-next.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/preact/CHANGELOG.md b/packages/integrations/preact/CHANGELOG.md new file mode 100644 index 000000000000..d932b1d9df17 --- /dev/null +++ b/packages/integrations/preact/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/preact + +## 0.0.2-next.0 + +### Patch Changes + +- [#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 diff --git a/packages/integrations/preact/package.json b/packages/integrations/preact/package.json index 5a6e263cd248..aeae45e11291 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.1", + "version": "0.0.2-next.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/react/CHANGELOG.md b/packages/integrations/react/CHANGELOG.md new file mode 100644 index 000000000000..90e168e93a15 --- /dev/null +++ b/packages/integrations/react/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/react + +## 0.0.2-next.0 + +### Patch Changes + +- [#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 diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json index 41b17e2a7779..3204ae77361b 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.1", + "version": "0.0.2-next.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/sitemap/CHANGELOG.md b/packages/integrations/sitemap/CHANGELOG.md new file mode 100644 index 000000000000..e46ed837a50e --- /dev/null +++ b/packages/integrations/sitemap/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/sitemap + +## 0.0.2-next.0 + +### Patch Changes + +- [#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 diff --git a/packages/integrations/sitemap/package.json b/packages/integrations/sitemap/package.json index 07c799da7487..eb280d626b7a 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.1", + "version": "0.0.2-next.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/solid/CHANGELOG.md b/packages/integrations/solid/CHANGELOG.md new file mode 100644 index 000000000000..a8aa09c63c8b --- /dev/null +++ b/packages/integrations/solid/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/solid-js + +## 0.0.2-next.0 + +### Patch Changes + +- [#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 diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json index 3dbe9293e8ea..03d6a2047602 100644 --- a/packages/integrations/solid/package.json +++ b/packages/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/solid-js", - "version": "0.0.1", + "version": "0.0.2-next.0", "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 new file mode 100644 index 000000000000..16b666cb2f55 --- /dev/null +++ b/packages/integrations/svelte/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/svelte + +## 0.0.2-next.0 + +### Patch Changes + +- [#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 diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index 2cff7ff7ec61..3c160e10ad61 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "0.0.1", + "version": "0.0.2-next.0", "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 new file mode 100644 index 000000000000..2b80c4f6bf90 --- /dev/null +++ b/packages/integrations/tailwind/CHANGELOG.md @@ -0,0 +1,9 @@ +# @astrojs/tailwind + +## 0.0.2-next.0 + +### 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. + +* [#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 diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json index cbbd6621dc9c..cee05d732204 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.1", + "version": "0.0.2-next.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/turbolinks/CHANGELOG.md b/packages/integrations/turbolinks/CHANGELOG.md new file mode 100644 index 000000000000..a36b55685551 --- /dev/null +++ b/packages/integrations/turbolinks/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/turbolinks + +## 0.0.2-next.0 + +### Patch Changes + +- [#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 diff --git a/packages/integrations/turbolinks/package.json b/packages/integrations/turbolinks/package.json index b2de8349d682..30fd791c3f3b 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.1", + "version": "0.0.2-next.0", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md new file mode 100644 index 000000000000..db07324f37a6 --- /dev/null +++ b/packages/integrations/vue/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/vue + +## 0.0.2-next.0 + +### Patch Changes + +- [#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 diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index c7ff50e39a6c..def467ffa5d3 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "0.0.1", + "version": "0.0.2-next.0", "description": "Use Vue components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 110496489f85..865ae49b464e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,8 +43,8 @@ importers: examples/blog: specifiers: - '@astrojs/preact': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/preact': ^0.0.2-next.0 + astro: ^0.25.0-next.2 preact: ^10.6.6 dependencies: preact: 10.6.6 @@ -54,8 +54,8 @@ importers: examples/blog-multiple-authors: specifiers: - '@astrojs/preact': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/preact': ^0.0.2-next.0 + astro: ^0.25.0-next.2 preact: ^10.6.6 sass: ^1.49.9 dependencies: @@ -67,14 +67,14 @@ importers: examples/component: specifiers: - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 devDependencies: astro: link:../../packages/astro examples/component/demo: specifiers: '@example/my-component': workspace:* - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 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.1 - '@astrojs/react': ^0.0.1 + '@astrojs/preact': ^0.0.2-next.0 + '@astrojs/react': ^0.0.2-next.0 '@docsearch/css': ^3.0.0 '@docsearch/react': ^3.0.0 '@types/react': ^17.0.41 - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 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.1 + astro: ^0.25.0-next.2 devDependencies: astro: link:../../packages/astro examples/framework-alpine: specifiers: - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 devDependencies: astro: link:../../packages/astro examples/framework-lit: specifiers: - '@astrojs/lit': ^0.0.1 + '@astrojs/lit': ^0.0.2-next.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 lit: ^2.2.1 dependencies: '@webcomponents/template-shadowroot': 0.1.0 @@ -134,14 +134,14 @@ importers: examples/framework-multiple: specifiers: - '@astrojs/lit': ^0.0.1 - '@astrojs/preact': ^0.0.1 - '@astrojs/react': ^0.0.1 - '@astrojs/solid-js': ^0.0.1 - '@astrojs/svelte': ^0.0.1 - '@astrojs/vue': ^0.0.1 + '@astrojs/lit': ^0.0.2-next.0 + '@astrojs/preact': ^0.0.2-next.0 + '@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 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 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.1 - astro: ^0.25.0-next.1 + '@astrojs/preact': ^0.0.2-next.0 + astro: ^0.25.0-next.2 preact: ^10.6.6 dependencies: preact: 10.6.6 @@ -180,8 +180,8 @@ importers: examples/framework-react: specifiers: - '@astrojs/react': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/react': ^0.0.2-next.0 + astro: ^0.25.0-next.2 react: ^17.0.2 react-dom: ^17.0.2 dependencies: @@ -193,8 +193,8 @@ importers: examples/framework-solid: specifiers: - '@astrojs/solid-js': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/solid-js': ^0.0.2-next.0 + astro: ^0.25.0-next.2 solid-js: ^1.3.13 dependencies: solid-js: 1.3.13 @@ -204,8 +204,8 @@ importers: examples/framework-svelte: specifiers: - '@astrojs/svelte': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/svelte': ^0.0.2-next.0 + astro: ^0.25.0-next.2 svelte: ^3.46.4 dependencies: svelte: 3.46.4 @@ -215,8 +215,8 @@ importers: examples/framework-vue: specifiers: - '@astrojs/vue': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/vue': ^0.0.2-next.0 + astro: ^0.25.0-next.2 vue: ^3.2.31 dependencies: vue: 3.2.31 @@ -226,14 +226,14 @@ importers: examples/integrations-playground: specifiers: - '@astrojs/lit': ^0.0.1 - '@astrojs/partytown': ^0.0.1 - '@astrojs/react': ^0.0.1 - '@astrojs/sitemap': ^0.0.1 - '@astrojs/tailwind': ^0.0.1 - '@astrojs/turbolinks': ^0.0.1 + '@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 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 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.1 + astro: ^0.25.0-next.2 devDependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 devDependencies: astro: link:../../packages/astro examples/portfolio: specifiers: - '@astrojs/preact': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/preact': ^0.0.2-next.0 + astro: ^0.25.0-next.2 preact: ^10.6.6 sass: ^1.49.9 dependencies: @@ -286,8 +286,8 @@ importers: examples/ssr: specifiers: - '@astrojs/svelte': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/svelte': ^0.0.2-next.0 + astro: ^0.25.0-next.2 concurrently: ^7.0.0 lightcookie: ^1.0.25 svelte: ^3.46.4 @@ -305,14 +305,14 @@ importers: examples/starter: specifiers: - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 devDependencies: astro: link:../../packages/astro examples/subpath: specifiers: - '@astrojs/react': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/react': ^0.0.2-next.0 + astro: ^0.25.0-next.2 react: ^17.0.2 react-dom: ^17.0.2 sass: ^1.49.9 @@ -327,11 +327,11 @@ importers: examples/with-markdown: specifiers: '@astrojs/markdown-remark': ^0.7.0-next.0 - '@astrojs/preact': ^0.0.1 - '@astrojs/react': ^0.0.1 - '@astrojs/svelte': ^0.0.1 - '@astrojs/vue': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/preact': ^0.0.2-next.0 + '@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.2 preact: ^10.6.6 react: ^17.0.2 react-dom: ^17.0.2 @@ -354,7 +354,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^0.7.0-next.0 - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -372,22 +372,22 @@ importers: examples/with-markdown-shiki: specifiers: '@astrojs/markdown-remark': ^0.7.0-next.0 - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 devDependencies: '@astrojs/markdown-remark': link:../../packages/markdown/remark astro: link:../../packages/astro examples/with-nanostores: specifiers: - '@astrojs/preact': ^0.0.1 - '@astrojs/react': ^0.0.1 - '@astrojs/solid-js': ^0.0.1 - '@astrojs/svelte': ^0.0.1 - '@astrojs/vue': ^0.0.1 + '@astrojs/preact': ^0.0.2-next.0 + '@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 '@nanostores/preact': ^0.1.3 '@nanostores/react': ^0.1.5 '@nanostores/vue': ^0.4.1 - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 nanostores: ^0.5.12 preact: ^10.6.6 react: ^17.0.2 @@ -414,8 +414,8 @@ importers: examples/with-tailwindcss: specifiers: - '@astrojs/tailwind': ^0.0.1 - astro: ^0.25.0-next.1 + '@astrojs/tailwind': ^0.0.2-next.0 + astro: ^0.25.0-next.2 autoprefixer: ^10.4.4 canvas-confetti: ^1.5.1 postcss: ^8.4.12 @@ -430,7 +430,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^0.25.0-next.1 + astro: ^0.25.0-next.2 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.1 devDependencies: