From b8e3efa7bb72e6e436ced6c503a9e7e49f30bb02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Dec 2021 11:49:30 -0500 Subject: [PATCH] [ci] release (#2219) Co-authored-by: github-actions[bot] --- .changeset/heavy-pianos-obey.md | 5 --- .changeset/new-hats-design.md | 17 --------- .changeset/sweet-pots-add.md | 5 --- docs/package.json | 2 +- examples/blog-multiple-authors/package.json | 2 +- examples/blog/package.json | 2 +- examples/component/demo/package.json | 2 +- examples/component/package.json | 2 +- examples/docs/package.json | 2 +- examples/fast-build/package.json | 2 +- examples/framework-alpine/package.json | 2 +- examples/framework-lit/package.json | 4 +-- examples/framework-multiple/package.json | 4 +-- examples/framework-preact/package.json | 2 +- examples/framework-react/package.json | 2 +- examples/framework-solid/package.json | 4 +-- examples/framework-svelte/package.json | 2 +- examples/framework-vue/package.json | 2 +- examples/minimal/package.json | 2 +- examples/portfolio-svelte/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/starter/package.json | 2 +- examples/subpath/package.json | 2 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown/package.json | 2 +- examples/with-nanostores/package.json | 4 +-- examples/with-tailwindcss/package.json | 2 +- examples/with-vite-plugin-pwa/package.json | 2 +- packages/astro-parser/CHANGELOG.md | 6 ++++ packages/astro-parser/package.json | 2 +- packages/astro-prism/CHANGELOG.md | 6 ++++ packages/astro-prism/package.json | 2 +- packages/astro/CHANGELOG.md | 36 ++++++++++++++----- packages/astro/package.json | 16 ++++----- .../builtins/packages/dep/CHANGELOG.md | 8 +++++ .../builtins/packages/dep/package.json | 2 +- .../my-component-lib/CHANGELOG.md | 8 +++++ .../my-component-lib/package.json | 2 +- packages/create-astro/CHANGELOG.md | 6 ++++ packages/create-astro/package.json | 2 +- packages/markdown/remark/CHANGELOG.md | 19 +++++++--- packages/markdown/remark/package.json | 4 +-- packages/renderers/renderer-lit/CHANGELOG.md | 6 ++++ packages/renderers/renderer-lit/package.json | 2 +- .../renderers/renderer-preact/CHANGELOG.md | 6 ++++ .../renderers/renderer-preact/package.json | 2 +- .../renderers/renderer-react/CHANGELOG.md | 6 ++++ .../renderers/renderer-react/package.json | 2 +- .../renderers/renderer-solid/CHANGELOG.md | 6 ++++ .../renderers/renderer-solid/package.json | 2 +- .../renderers/renderer-svelte/CHANGELOG.md | 6 ++++ .../renderers/renderer-svelte/package.json | 2 +- packages/renderers/renderer-vue/CHANGELOG.md | 6 ++++ packages/renderers/renderer-vue/package.json | 2 +- www/package.json | 2 +- 55 files changed, 164 insertions(+), 90 deletions(-) delete mode 100644 .changeset/heavy-pianos-obey.md delete mode 100644 .changeset/new-hats-design.md delete mode 100644 .changeset/sweet-pots-add.md create mode 100644 packages/astro/test/fixtures/builtins/packages/dep/CHANGELOG.md create mode 100644 packages/astro/test/fixtures/custom-elements/my-component-lib/CHANGELOG.md diff --git a/.changeset/heavy-pianos-obey.md b/.changeset/heavy-pianos-obey.md deleted file mode 100644 index 291bfa7c6..000000000 --- a/.changeset/heavy-pianos-obey.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Pin vite to v2.6, since that is the version that we have vendored. diff --git a/.changeset/new-hats-design.md b/.changeset/new-hats-design.md deleted file mode 100644 index 7cf73aec1..000000000 --- a/.changeset/new-hats-design.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -'astro': minor -'@astrojs/parser': minor -'@astrojs/prism': minor -'create-astro': minor -'@astrojs/renderer-preact': minor -'@astrojs/renderer-react': minor -'@astrojs/renderer-solid': minor -'@astrojs/renderer-svelte': minor -'@astrojs/renderer-vue': minor -'@astrojs/astro-test-builtins-dep': minor -'@astrojs/test-custom-element-renderer': minor -'@astrojs/markdown-remark': minor -'@astrojs/renderer-lit': minor ---- - -Officially drop support for Node v12. The minimum supported version is now Node v14.15+, diff --git a/.changeset/sweet-pots-add.md b/.changeset/sweet-pots-add.md deleted file mode 100644 index a902acf23..000000000 --- a/.changeset/sweet-pots-add.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': minor ---- - -Replace `fetch` detection via Vite plugin with a more resilient `globalThis` polyfill diff --git a/docs/package.json b/docs/package.json index a0a868f19..b0f94591e 100644 --- a/docs/package.json +++ b/docs/package.json @@ -16,7 +16,7 @@ "lint:linkcheck:remote": "blc -ro --user-agent 'broken-link-checker/0.7.8' 'https://docs.astro.build/'" }, "devDependencies": { - "astro": "^0.21.12", + "astro": "^0.22.0", "broken-link-checker": "^0.7.8", "npm-run-all": "^4.1.5", "prettier": "^2.4.1", diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index be4d5c389..e01644f29 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 7abfb5469..a053b25dd 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index 575002652..62edb686b 100644 --- a/examples/component/demo/package.json +++ b/examples/component/demo/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.22.0" } } diff --git a/examples/component/package.json b/examples/component/package.json index 84fe15ec4..35c8f76c1 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -12,6 +12,6 @@ "serve": "astro --project-root demo preview" }, "devDependencies": { - "astro": "^0.21.11" + "astro": "^0.22.0" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index 33105db0e..9133c16c8 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,6 +12,6 @@ "@docsearch/react": "^1.0.0-alpha.28" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/fast-build/package.json b/examples/fast-build/package.json index 4abd5fc13..c28c1d80b 100644 --- a/examples/fast-build/package.json +++ b/examples/fast-build/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6", + "astro": "^0.22.0", "unocss": "^0.15.5", "vite-imagetools": "^4.0.1" } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index ad3875198..c0af70c20 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 43b2769bf..b072219df 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/renderer-lit": "^0.2.1", - "astro": "^0.21.13" + "@astrojs/renderer-lit": "^0.3.0", + "astro": "^0.22.0" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index a83881429..860306462 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/renderer-solid": "^0.2.1", - "astro": "^0.21.13" + "@astrojs/renderer-solid": "^0.3.0", + "astro": "^0.22.0" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 339cec6e5..d47e9dd25 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index f1ea5c076..d515bf5b1 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index f1ce217f1..01249fc7b 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/renderer-solid": "^0.2.1", - "astro": "^0.21.13" + "@astrojs/renderer-solid": "^0.3.0", + "astro": "^0.22.0" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 37d9756be..836143073 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 971f6df3f..74d613846 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 9a36f9b4a..69b7af2ab 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/portfolio-svelte/package.json b/examples/portfolio-svelte/package.json index c84db47cc..d60396bb6 100644 --- a/examples/portfolio-svelte/package.json +++ b/examples/portfolio-svelte/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index aa885b361..96e40d1c2 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/starter/package.json b/examples/starter/package.json index c70348543..1fec48480 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index 6c4f48dff..705a12cdf 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index d309b023c..fcaf8fd0b 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13", + "astro": "^0.22.0", "rehype-add-classes": "^1.0.0", "rehype-autolink-headings": "^6.1.0", "rehype-slug": "^5.0.0", diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index 79a0d2f4b..b01c807d3 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 9668365f1..a7a793568 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -16,7 +16,7 @@ "solid-nanostores": "0.0.6" }, "devDependencies": { - "@astrojs/renderer-solid": "^0.2.1", - "astro": "^0.21.13" + "@astrojs/renderer-solid": "^0.3.0", + "astro": "^0.22.0" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index db753e636..4fd97ddd6 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13", + "astro": "^0.22.0", "autoprefixer": "^10.4.0", "tailwindcss": "^3.0.5" } diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index 37c3becba..2337ce21f 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.21.13", + "astro": "^0.22.0", "vite-plugin-pwa": "0.11.5" } } diff --git a/packages/astro-parser/CHANGELOG.md b/packages/astro-parser/CHANGELOG.md index ec2641bd7..0bec5dc02 100644 --- a/packages/astro-parser/CHANGELOG.md +++ b/packages/astro-parser/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/parser +## 0.22.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + ## 0.20.3 ## 0.20.2 diff --git a/packages/astro-parser/package.json b/packages/astro-parser/package.json index bf237646b..6fd3e3df0 100644 --- a/packages/astro-parser/package.json +++ b/packages/astro-parser/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/parser", - "version": "0.20.3", + "version": "0.22.0", "type": "commonjs", "author": "withastro", "license": "MIT", diff --git a/packages/astro-prism/CHANGELOG.md b/packages/astro-prism/CHANGELOG.md index 1dc845aef..70f85351a 100644 --- a/packages/astro-prism/CHANGELOG.md +++ b/packages/astro-prism/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/prism +## 0.4.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + ## 0.3.0 ### Patch Changes diff --git a/packages/astro-prism/package.json b/packages/astro-prism/package.json index ad6c920de..4d1936fd3 100644 --- a/packages/astro-prism/package.json +++ b/packages/astro-prism/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/prism", - "version": "0.3.0", + "version": "0.4.0", "description": "Supports Prism highlighting in Astro projects", "author": "withastro", "license": "MIT", diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 414c1b9aa..89e727e1e 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,25 @@ # astro +## 0.22.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + +* [`c5a7305f`](https://github.com/withastro/astro/commit/c5a7305f04222743c99d70b3ea061a1d31a67efa) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Replace `fetch` detection via Vite plugin with a more resilient `globalThis` polyfill + +### Patch Changes + +- [#2240](https://github.com/withastro/astro/pull/2240) [`e07c1cbd`](https://github.com/withastro/astro/commit/e07c1cbd7ea46c57d637f981aaed43a733a846b1) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Pin vite to v2.6, since that is the version that we have vendored. + +- Updated dependencies [[`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539)]: + - @astrojs/prism@0.4.0 + - @astrojs/renderer-preact@0.4.0 + - @astrojs/renderer-react@0.4.0 + - @astrojs/renderer-svelte@0.3.0 + - @astrojs/renderer-vue@0.3.0 + - @astrojs/markdown-remark@0.6.0 + ## 0.21.13 ### Patch Changes @@ -1009,10 +1029,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' }]], + }, }; ``` @@ -1032,10 +1052,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 e16dc7d1a..41866e781 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.21.13", + "version": "0.22.0", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", @@ -58,12 +58,12 @@ "dependencies": { "@astrojs/compiler": "^0.6.0", "@astrojs/language-server": "^0.8.2", - "@astrojs/markdown-remark": "^0.5.0", - "@astrojs/prism": "0.3.0", - "@astrojs/renderer-preact": "^0.3.1", - "@astrojs/renderer-react": "0.3.1", - "@astrojs/renderer-svelte": "0.2.3", - "@astrojs/renderer-vue": "0.2.1", + "@astrojs/markdown-remark": "^0.6.0", + "@astrojs/prism": "0.4.0", + "@astrojs/renderer-preact": "^0.4.0", + "@astrojs/renderer-react": "0.4.0", + "@astrojs/renderer-svelte": "0.3.0", + "@astrojs/renderer-vue": "0.3.0", "@astropub/webapi": "^0.7.1", "@babel/core": "^7.15.8", "@babel/traverse": "^7.15.4", @@ -112,7 +112,7 @@ "zod": "^3.8.1" }, "devDependencies": { - "@astrojs/parser": "^0.20.3", + "@astrojs/parser": "^0.22.0", "@babel/types": "^7.15.6", "@types/chai": "^4.2.22", "@types/connect": "^3.4.35", diff --git a/packages/astro/test/fixtures/builtins/packages/dep/CHANGELOG.md b/packages/astro/test/fixtures/builtins/packages/dep/CHANGELOG.md new file mode 100644 index 000000000..6eff4ae8c --- /dev/null +++ b/packages/astro/test/fixtures/builtins/packages/dep/CHANGELOG.md @@ -0,0 +1,8 @@ +# @astrojs/astro-test-builtins-dep + +## 0.1.0 +### Minor Changes + + + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, diff --git a/packages/astro/test/fixtures/builtins/packages/dep/package.json b/packages/astro/test/fixtures/builtins/packages/dep/package.json index c5ce27f5e..d8c725906 100644 --- a/packages/astro/test/fixtures/builtins/packages/dep/package.json +++ b/packages/astro/test/fixtures/builtins/packages/dep/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/astro-test-builtins-dep", - "version": "0.0.1", + "version": "0.1.0", "private": true, "module": "main.js", "main": "main.js" diff --git a/packages/astro/test/fixtures/custom-elements/my-component-lib/CHANGELOG.md b/packages/astro/test/fixtures/custom-elements/my-component-lib/CHANGELOG.md new file mode 100644 index 000000000..7432658fd --- /dev/null +++ b/packages/astro/test/fixtures/custom-elements/my-component-lib/CHANGELOG.md @@ -0,0 +1,8 @@ +# @astrojs/test-custom-element-renderer + +## 0.1.0 +### Minor Changes + + + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, diff --git a/packages/astro/test/fixtures/custom-elements/my-component-lib/package.json b/packages/astro/test/fixtures/custom-elements/my-component-lib/package.json index 61f761210..614baf827 100644 --- a/packages/astro/test/fixtures/custom-elements/my-component-lib/package.json +++ b/packages/astro/test/fixtures/custom-elements/my-component-lib/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/test-custom-element-renderer", - "version": "0.0.1", + "version": "0.1.0", "private": true, "main": "index.js", "type": "module", diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index 5d084cd27..410ba8df1 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro +## 0.7.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + ## 0.6.10 ### Patch Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index ddbb09318..7e000581d 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "0.6.10", + "version": "0.7.0", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md index 50e7b8d45..dea12676d 100644 --- a/packages/markdown/remark/CHANGELOG.md +++ b/packages/markdown/remark/CHANGELOG.md @@ -1,5 +1,16 @@ # @astrojs/markdown-remark +## 0.6.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + +### Patch Changes + +- Updated dependencies [[`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539)]: + - @astrojs/prism@0.4.0 + ## 0.5.0 ### Minor Changes @@ -94,10 +105,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 7aa98acb2..6a0a69b45 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-remark", - "version": "0.5.0", + "version": "0.6.0", "type": "module", "author": "withastro", "license": "MIT", @@ -22,7 +22,7 @@ "dev": "astro-scripts dev \"src/**/*.ts\"" }, "dependencies": { - "@astrojs/prism": "^0.3.0", + "@astrojs/prism": "^0.4.0", "assert": "^2.0.0", "github-slugger": "^1.4.0", "gray-matter": "^4.0.3", diff --git a/packages/renderers/renderer-lit/CHANGELOG.md b/packages/renderers/renderer-lit/CHANGELOG.md index 105ad95a4..71fbcf935 100644 --- a/packages/renderers/renderer-lit/CHANGELOG.md +++ b/packages/renderers/renderer-lit/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/renderer-lit +## 0.3.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + ## 0.2.1 ### Patch Changes diff --git a/packages/renderers/renderer-lit/package.json b/packages/renderers/renderer-lit/package.json index 4f4b667d7..06a9cdebb 100644 --- a/packages/renderers/renderer-lit/package.json +++ b/packages/renderers/renderer-lit/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/renderer-lit", - "version": "0.2.1", + "version": "0.3.0", "description": "Use Lit components within Astro", "type": "module", "author": "withastro", diff --git a/packages/renderers/renderer-preact/CHANGELOG.md b/packages/renderers/renderer-preact/CHANGELOG.md index 11e0e3a5a..9c008e1f1 100644 --- a/packages/renderers/renderer-preact/CHANGELOG.md +++ b/packages/renderers/renderer-preact/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/renderer-preact +## 0.4.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + ## 0.3.2 ### Patch Changes diff --git a/packages/renderers/renderer-preact/package.json b/packages/renderers/renderer-preact/package.json index b8d87af60..03d351755 100644 --- a/packages/renderers/renderer-preact/package.json +++ b/packages/renderers/renderer-preact/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/renderer-preact", "description": "Use Preact components within Astro", - "version": "0.3.2", + "version": "0.4.0", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/renderers/renderer-react/CHANGELOG.md b/packages/renderers/renderer-react/CHANGELOG.md index 028506d71..f6806b07d 100644 --- a/packages/renderers/renderer-react/CHANGELOG.md +++ b/packages/renderers/renderer-react/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/renderer-react +## 0.4.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + ## 0.3.1 ### Patch Changes diff --git a/packages/renderers/renderer-react/package.json b/packages/renderers/renderer-react/package.json index 09efe37cf..c8e02ad2f 100644 --- a/packages/renderers/renderer-react/package.json +++ b/packages/renderers/renderer-react/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/renderer-react", "description": "Use React components within Astro", - "version": "0.3.1", + "version": "0.4.0", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/renderers/renderer-solid/CHANGELOG.md b/packages/renderers/renderer-solid/CHANGELOG.md index 9b80e516e..ee130a862 100644 --- a/packages/renderers/renderer-solid/CHANGELOG.md +++ b/packages/renderers/renderer-solid/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/renderer-solid +## 0.3.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + ## 0.2.1 ### Patch Changes diff --git a/packages/renderers/renderer-solid/package.json b/packages/renderers/renderer-solid/package.json index f143b90ef..91bef4a18 100644 --- a/packages/renderers/renderer-solid/package.json +++ b/packages/renderers/renderer-solid/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/renderer-solid", - "version": "0.2.1", + "version": "0.3.0", "description": "Use Solid components within Astro", "type": "module", "author": "withastro", diff --git a/packages/renderers/renderer-svelte/CHANGELOG.md b/packages/renderers/renderer-svelte/CHANGELOG.md index 59208c683..0db9d6aa5 100644 --- a/packages/renderers/renderer-svelte/CHANGELOG.md +++ b/packages/renderers/renderer-svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/renderer-svelte +## 0.3.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + ## 0.2.3 ### Patch Changes diff --git a/packages/renderers/renderer-svelte/package.json b/packages/renderers/renderer-svelte/package.json index 132bfcbaa..4456cd802 100644 --- a/packages/renderers/renderer-svelte/package.json +++ b/packages/renderers/renderer-svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/renderer-svelte", - "version": "0.2.3", + "version": "0.3.0", "description": "Use Svelte components within Astro", "type": "module", "author": "withastro", diff --git a/packages/renderers/renderer-vue/CHANGELOG.md b/packages/renderers/renderer-vue/CHANGELOG.md index ae84f6900..b9a0d3b4f 100644 --- a/packages/renderers/renderer-vue/CHANGELOG.md +++ b/packages/renderers/renderer-vue/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/renderer-vue +## 0.3.0 + +### Minor Changes + +- [#2202](https://github.com/withastro/astro/pull/2202) [`45cea6ae`](https://github.com/withastro/astro/commit/45cea6aec5a310fed4cb8da0d96670d6b99a2539) Thanks [@jonathantneal](https://github.com/jonathantneal)! - Officially drop support for Node v12. The minimum supported version is now Node v14.15+, + ## 0.2.1 ### Patch Changes diff --git a/packages/renderers/renderer-vue/package.json b/packages/renderers/renderer-vue/package.json index 29d331e06..e1980b384 100644 --- a/packages/renderers/renderer-vue/package.json +++ b/packages/renderers/renderer-vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/renderer-vue", - "version": "0.2.1", + "version": "0.3.0", "description": "Use Vue components within Astro", "type": "module", "author": "withastro", diff --git a/www/package.json b/www/package.json index c72269d39..36e0fab9f 100644 --- a/www/package.json +++ b/www/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.13" + "astro": "^0.22.0" } }