From 7114aee20886d2ff22b41d8c6db22a88eb458c8e Mon Sep 17 00:00:00 2001 From: "Fred K. Bot" <108291165+fredkbot@users.noreply.github.com> Date: Fri, 2 Sep 2022 13:50:59 -0700 Subject: [PATCH] [ci] release (#4604) Co-authored-by: github-actions[bot] --- .changeset/tough-zoos-bathe.md | 5 -- examples/basics/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/env-vars/package.json | 2 +- examples/framework-alpine/package.json | 2 +- examples/framework-lit/package.json | 2 +- examples/framework-multiple/package.json | 2 +- examples/framework-preact/package.json | 2 +- examples/framework-react/package.json | 2 +- examples/framework-solid/package.json | 2 +- examples/framework-svelte/package.json | 2 +- examples/framework-vue/package.json | 2 +- examples/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 2 +- examples/subpath/package.json | 2 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown-shiki/package.json | 2 +- examples/with-mdx/package.json | 2 +- examples/with-nanostores/package.json | 2 +- examples/with-tailwindcss/package.json | 2 +- examples/with-vite-plugin-pwa/package.json | 2 +- examples/with-vitest/package.json | 2 +- packages/astro/CHANGELOG.md | 6 +++ packages/astro/package.json | 2 +- pnpm-lock.yaml | 52 ++++++++++----------- 30 files changed, 59 insertions(+), 58 deletions(-) delete mode 100644 .changeset/tough-zoos-bathe.md diff --git a/.changeset/tough-zoos-bathe.md b/.changeset/tough-zoos-bathe.md deleted file mode 100644 index 9e16bba6f..000000000 --- a/.changeset/tough-zoos-bathe.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix error when no JSX renderer configured diff --git a/examples/basics/package.json b/examples/basics/package.json index adc9ec00e..d4d44b91f 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4" + "astro": "^1.1.5" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 2c4bd1c88..0ccc1d178 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "@astrojs/mdx": "^0.11.1", "@astrojs/rss": "^1.0.0", "@astrojs/sitemap": "^1.0.0" diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index fc3f5081a..118b218b7 100644 --- a/examples/component/demo/package.json +++ b/examples/component/demo/package.json @@ -11,6 +11,6 @@ }, "devDependencies": { "@example/my-component": "workspace:*", - "astro": "^1.1.4" + "astro": "^1.1.5" } } diff --git a/examples/component/package.json b/examples/component/package.json index f0f92362d..f8fb37630 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -8,6 +8,6 @@ "serve": "astro --root demo preview" }, "dependencies": { - "astro": "^1.1.4" + "astro": "^1.1.5" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index b1e9492c5..0c0add7dc 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "preact": "^10.7.3", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json index 05f023421..921db409e 100644 --- a/examples/env-vars/package.json +++ b/examples/env-vars/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4" + "astro": "^1.1.5" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 6e6a523f4..f5f2f3071 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "alpinejs": "^3.10.2", "@astrojs/alpinejs": "^0.1.1", "@types/alpinejs": "^3.7.0" diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index a2d9a68bc..aa9cdae26 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "lit": "^2.2.5", "@astrojs/lit": "^1.0.0", "@webcomponents/template-shadowroot": "^0.1.0" diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 8669b8293..edab8d742 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "preact": "^10.7.3", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 59bdde2ab..9fe5859b4 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "preact": "^10.7.3", "@astrojs/preact": "^1.0.2" } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 184cbec6f..cccfbf0ce 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "react": "^18.1.0", "react-dom": "^18.1.0", "@astrojs/react": "^1.1.0", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index e26ea93a3..40484e92f 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "solid-js": "^1.4.3", "@astrojs/solid-js": "^1.1.0" } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 45d1b193c..9b64aba73 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -12,6 +12,6 @@ "dependencies": { "svelte": "^3.48.0", "@astrojs/svelte": "^1.0.0", - "astro": "^1.1.4" + "astro": "^1.1.5" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index e6deef933..ca8b3b075 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "vue": "^3.2.37", "@astrojs/vue": "^1.0.0" } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index a34e98f63..115162510 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4" + "astro": "^1.1.5" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 3c76008a1..1c02146f9 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4" + "astro": "^1.1.5" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index d9376a44f..80548ef9d 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -12,7 +12,7 @@ "dependencies": { "preact": "^10.7.3", "@astrojs/preact": "^1.0.2", - "astro": "^1.1.4", + "astro": "^1.1.5", "sass": "^1.52.2" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 50437bdf8..b9d96f4c7 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,7 +12,7 @@ }, "devDependencies": {}, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "svelte": "^3.48.0", "@astrojs/svelte": "^1.0.0", "@astrojs/node": "^1.0.1", diff --git a/examples/subpath/package.json b/examples/subpath/package.json index 08254c646..225a13489 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "react": "^18.1.0", "react-dom": "^18.1.0", "@astrojs/react": "^1.1.0" diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 0147b7a4c..eca0da00b 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "@astrojs/markdown-remark": "^1.1.0", "hast-util-select": "5.0.1", "rehype-autolink-headings": "^6.1.1", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index 3605d5352..860e310c6 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4" + "astro": "^1.1.5" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index bf8d9e56a..94b99ee43 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "preact": "^10.6.5", "@astrojs/preact": "^1.0.2", "@astrojs/mdx": "^0.11.1" diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 9c601957f..6391fca67 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "preact": "^10.7.3", "@astrojs/preact": "^1.0.2", "nanostores": "^0.5.12", diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 4d506f9fc..f44677545 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "@astrojs/tailwind": "^1.0.0", "autoprefixer": "^10.4.7", "canvas-confetti": "^1.5.1", diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index fc3a34a3b..c2a3d1745 100644 --- a/examples/with-vite-plugin-pwa/package.json +++ b/examples/with-vite-plugin-pwa/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "vite-plugin-pwa": "0.11.11", "workbox-window": "^6.5.3" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 360669df9..ba93c3bc9 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^1.1.4", + "astro": "^1.1.5", "vitest": "^0.20.3" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 6e33aefcd..fdaea4381 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,11 @@ # astro +## 1.1.5 + +### Patch Changes + +- [#4603](https://github.com/withastro/astro/pull/4603) [`36dee7169`](https://github.com/withastro/astro/commit/36dee7169be7f595825d3dfecb04e61cea1b2fe4) Thanks [@matthewp](https://github.com/matthewp)! - Fix error when no JSX renderer configured + ## 1.1.4 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 6a5aebf01..6ec238651 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.1.4", + "version": "1.1.5", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8730f1175..1ac4cf767 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -56,7 +56,7 @@ importers: examples/basics: specifiers: - astro: ^1.1.4 + astro: ^1.1.5 dependencies: astro: link:../../packages/astro @@ -65,7 +65,7 @@ importers: '@astrojs/mdx': ^0.11.1 '@astrojs/rss': ^1.0.0 '@astrojs/sitemap': ^1.0.0 - astro: ^1.1.4 + astro: ^1.1.5 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx '@astrojs/rss': link:../../packages/astro-rss @@ -74,14 +74,14 @@ importers: examples/component: specifiers: - astro: ^1.1.4 + astro: ^1.1.5 dependencies: astro: link:../../packages/astro examples/component/demo: specifiers: '@example/my-component': workspace:* - astro: ^1.1.4 + astro: ^1.1.5 devDependencies: '@example/my-component': link:../packages/my-component astro: link:../../../packages/astro @@ -99,7 +99,7 @@ importers: '@types/node': ^18.0.0 '@types/react': ^17.0.45 '@types/react-dom': ^18.0.0 - astro: ^1.1.4 + astro: ^1.1.5 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -119,7 +119,7 @@ importers: examples/env-vars: specifiers: - astro: ^1.1.4 + astro: ^1.1.5 dependencies: astro: link:../../packages/astro @@ -128,7 +128,7 @@ importers: '@astrojs/alpinejs': ^0.1.1 '@types/alpinejs': ^3.7.0 alpinejs: ^3.10.2 - astro: ^1.1.4 + astro: ^1.1.5 dependencies: '@astrojs/alpinejs': link:../../packages/integrations/alpinejs '@types/alpinejs': 3.7.0 @@ -139,7 +139,7 @@ importers: specifiers: '@astrojs/lit': ^1.0.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.1.4 + astro: ^1.1.5 lit: ^2.2.5 dependencies: '@astrojs/lit': link:../../packages/integrations/lit @@ -154,7 +154,7 @@ importers: '@astrojs/solid-js': ^1.1.0 '@astrojs/svelte': ^1.0.0 '@astrojs/vue': ^1.0.0 - astro: ^1.1.4 + astro: ^1.1.5 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -178,7 +178,7 @@ importers: examples/framework-preact: specifiers: '@astrojs/preact': ^1.0.2 - astro: ^1.1.4 + astro: ^1.1.5 preact: ^10.7.3 dependencies: '@astrojs/preact': link:../../packages/integrations/preact @@ -190,7 +190,7 @@ importers: '@astrojs/react': ^1.1.0 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.1.4 + astro: ^1.1.5 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -204,7 +204,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^1.1.0 - astro: ^1.1.4 + astro: ^1.1.5 solid-js: ^1.4.3 dependencies: '@astrojs/solid-js': link:../../packages/integrations/solid @@ -214,7 +214,7 @@ importers: examples/framework-svelte: specifiers: '@astrojs/svelte': ^1.0.0 - astro: ^1.1.4 + astro: ^1.1.5 svelte: ^3.48.0 dependencies: '@astrojs/svelte': link:../../packages/integrations/svelte @@ -224,7 +224,7 @@ importers: examples/framework-vue: specifiers: '@astrojs/vue': ^1.0.0 - astro: ^1.1.4 + astro: ^1.1.5 vue: ^3.2.37 dependencies: '@astrojs/vue': link:../../packages/integrations/vue @@ -233,20 +233,20 @@ importers: examples/minimal: specifiers: - astro: ^1.1.4 + astro: ^1.1.5 dependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.1.4 + astro: ^1.1.5 dependencies: astro: link:../../packages/astro examples/portfolio: specifiers: '@astrojs/preact': ^1.0.2 - astro: ^1.1.4 + astro: ^1.1.5 preact: ^10.7.3 sass: ^1.52.2 dependencies: @@ -259,7 +259,7 @@ importers: specifiers: '@astrojs/node': ^1.0.1 '@astrojs/svelte': ^1.0.0 - astro: ^1.1.4 + astro: ^1.1.5 concurrently: ^7.2.1 lightcookie: ^1.0.25 svelte: ^3.48.0 @@ -278,7 +278,7 @@ importers: examples/subpath: specifiers: '@astrojs/react': ^1.1.0 - astro: ^1.1.4 + astro: ^1.1.5 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -290,7 +290,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^1.1.0 - astro: ^1.1.4 + astro: ^1.1.5 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -307,7 +307,7 @@ importers: examples/with-markdown-shiki: specifiers: - astro: ^1.1.4 + astro: ^1.1.5 dependencies: astro: link:../../packages/astro @@ -315,7 +315,7 @@ importers: specifiers: '@astrojs/mdx': ^0.11.1 '@astrojs/preact': ^1.0.2 - astro: ^1.1.4 + astro: ^1.1.5 preact: ^10.6.5 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx @@ -327,7 +327,7 @@ importers: specifiers: '@astrojs/preact': ^1.0.2 '@nanostores/preact': ^0.1.3 - astro: ^1.1.4 + astro: ^1.1.5 nanostores: ^0.5.12 preact: ^10.7.3 dependencies: @@ -340,7 +340,7 @@ importers: examples/with-tailwindcss: specifiers: '@astrojs/tailwind': ^1.0.0 - astro: ^1.1.4 + astro: ^1.1.5 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -355,7 +355,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.1.4 + astro: ^1.1.5 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 dependencies: @@ -365,7 +365,7 @@ importers: examples/with-vitest: specifiers: - astro: ^1.1.4 + astro: ^1.1.5 vitest: ^0.20.3 dependencies: astro: link:../../packages/astro