diff --git a/.changeset/beige-gifts-yawn.md b/.changeset/beige-gifts-yawn.md deleted file mode 100644 index 10bcfe8b9..000000000 --- a/.changeset/beige-gifts-yawn.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'astro': patch -'@astrojs/rss': patch ---- - -Introduce new @astrojs/rss package for RSS feed generation! This also adds a new global env variable for your project's configured "site": import.meta.env.SITE. This is consumed by the RSS feed helper to generate the correct canonical URL. diff --git a/.changeset/big-years-type.md b/.changeset/big-years-type.md deleted file mode 100644 index bb68c4c23..000000000 --- a/.changeset/big-years-type.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Internal: removed `shorthash` diff --git a/.changeset/forty-goats-dance.md b/.changeset/forty-goats-dance.md deleted file mode 100644 index 112cbb68e..000000000 --- a/.changeset/forty-goats-dance.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Internal: replaces `serialize-javascript` with `devalue` diff --git a/examples/basics/package.json b/examples/basics/package.json index 8719462e8..e1d8a4aa4 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" } } diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index e3dfb6a3b..7cd716c97 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.1.2", - "astro": "^1.0.0-beta.22", + "astro": "^1.0.0-beta.23", "sass": "^1.50.1" }, "dependencies": { diff --git a/examples/blog/package.json b/examples/blog/package.json index 2317d32db..510da094a 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.1.2", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "preact": "^10.7.1" diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index 2bdf4e65d..9b76fbeef 100644 --- a/examples/component/demo/package.json +++ b/examples/component/demo/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@example/my-component": "workspace:*", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" } } diff --git a/examples/component/package.json b/examples/component/package.json index e678cdc8c..93b14b31e 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -8,6 +8,6 @@ "serve": "astro --root demo preview" }, "devDependencies": { - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index be1ae2ab2..c1221a03a 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -20,6 +20,6 @@ "devDependencies": { "@astrojs/preact": "^0.1.2", "@astrojs/react": "^0.1.1", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" } } diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json index 46f61aeaf..7d705d25c 100644 --- a/examples/env-vars/package.json +++ b/examples/env-vars/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 7b99eef95..db2959eba 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "alpinejs": "^3.10.2" diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 0306b9a61..628cfac9f 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/lit": "^0.1.2", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 971961224..7647fe187 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -15,7 +15,7 @@ "@astrojs/solid-js": "^0.1.2", "@astrojs/svelte": "^0.1.2", "@astrojs/vue": "^0.1.3", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 9c69ee198..c625296c5 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.1.2", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "preact": "^10.7.1" diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index f848227a9..06f0f27a1 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/react": "^0.1.1", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "@types/react": "^18.0.0", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 144efedb2..38be8f824 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/solid-js": "^0.1.2", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "solid-js": "^1.3.16" diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 146a9eb89..ed017bca7 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/svelte": "^0.1.2", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "svelte": "^3.47.0" diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index f835ff137..4cd6c58a3 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/vue": "^0.1.3", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "vue": "^3.2.33" diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json index 71f9de67b..64bfde8df 100644 --- a/examples/integrations-playground/package.json +++ b/examples/integrations-playground/package.json @@ -15,7 +15,7 @@ "@astrojs/sitemap": "^0.1.0", "@astrojs/tailwind": "^0.2.1", "@astrojs/turbolinks": "^0.1.1", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/minimal/package.json b/examples/minimal/package.json index f186cbf76..d98f10212 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 3f936dd0d..9387daa19 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index db77ab274..52e7e7961 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.1.2", - "astro": "^1.0.0-beta.22", + "astro": "^1.0.0-beta.23", "sass": "^1.50.1" }, "dependencies": { diff --git a/examples/ssr/package.json b/examples/ssr/package.json index b2461d03b..b8292b141 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@astrojs/node": "^0.1.1", "@astrojs/svelte": "^0.1.2", - "astro": "^1.0.0-beta.22", + "astro": "^1.0.0-beta.23", "concurrently": "^7.1.0", "lightcookie": "^1.0.25", "unocss": "^0.15.6", diff --git a/examples/starter/package.json b/examples/starter/package.json index 41e6e8aa5..14a67a1db 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index a54ff0ffa..b5ef54344 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/react": "^0.1.1", - "astro": "^1.0.0-beta.22", + "astro": "^1.0.0-beta.23", "sass": "^1.50.1" }, "dependencies": { diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 5578d763e..a1542edd0 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.9.4", - "astro": "^1.0.0-beta.22", + "astro": "^1.0.0-beta.23", "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 6fa5f5077..b68d019b6 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.9.4", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" } } diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index 6d1c0ad64..116bc473c 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -14,7 +14,7 @@ "@astrojs/react": "^0.1.1", "@astrojs/svelte": "^0.1.2", "@astrojs/vue": "^0.1.3", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" }, "dependencies": { "preact": "^10.7.1", diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 8f6f019dc..2bd2be6f4 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -25,6 +25,6 @@ "@astrojs/solid-js": "^0.1.2", "@astrojs/svelte": "^0.1.2", "@astrojs/vue": "^0.1.3", - "astro": "^1.0.0-beta.22" + "astro": "^1.0.0-beta.23" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 587687835..4964aabb7 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/tailwind": "^0.2.1", - "astro": "^1.0.0-beta.22", + "astro": "^1.0.0-beta.23", "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 97260fee3..c83112912 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": "^1.0.0-beta.22", + "astro": "^1.0.0-beta.23", "vite-plugin-pwa": "0.11.11", "workbox-window": "^6.5.3" } diff --git a/packages/astro-rss/CHANGELOG.md b/packages/astro-rss/CHANGELOG.md new file mode 100644 index 000000000..7f3c83a22 --- /dev/null +++ b/packages/astro-rss/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/rss + +## 0.1.1 + +### Patch Changes + +- [#3271](https://github.com/withastro/astro/pull/3271) [`fbfb6190`](https://github.com/withastro/astro/commit/fbfb6190ab5da60a556a3d5c338c8237c376df84) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Introduce new @astrojs/rss package for RSS feed generation! This also adds a new global env variable for your project's configured "site": import.meta.env.SITE. This is consumed by the RSS feed helper to generate the correct canonical URL. diff --git a/packages/astro-rss/package.json b/packages/astro-rss/package.json index d8fa7b9da..e5f8327e0 100644 --- a/packages/astro-rss/package.json +++ b/packages/astro-rss/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/rss", "description": "Add RSS feeds to your Astro projects", - "version": "0.1.0", + "version": "0.1.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 1576a5c88..36cc7bbd3 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,15 @@ # astro +## 1.0.0-beta.23 + +### Patch Changes + +- [#3271](https://github.com/withastro/astro/pull/3271) [`fbfb6190`](https://github.com/withastro/astro/commit/fbfb6190ab5da60a556a3d5c338c8237c376df84) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Introduce new @astrojs/rss package for RSS feed generation! This also adds a new global env variable for your project's configured "site": import.meta.env.SITE. This is consumed by the RSS feed helper to generate the correct canonical URL. + +* [#3281](https://github.com/withastro/astro/pull/3281) [`e2a037be`](https://github.com/withastro/astro/commit/e2a037be944d4c00b4b909b25574ebbc245cc720) Thanks [@JuanM04](https://github.com/JuanM04)! - Internal: removed `shorthash` + +- [#3278](https://github.com/withastro/astro/pull/3278) [`13c1f5ff`](https://github.com/withastro/astro/commit/13c1f5ff6bc18f05be2f9fee32331d89fc58af94) Thanks [@JuanM04](https://github.com/JuanM04)! - Internal: replaces `serialize-javascript` with `devalue` + ## 1.0.0-beta.22 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 6ee6b2ee8..840d3cd6e 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.0.0-beta.22", + "version": "1.0.0-beta.23", "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 b1fadb2a3..9e15c824f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -45,14 +45,14 @@ importers: examples/basics: specifiers: - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 devDependencies: astro: link:../../packages/astro examples/blog: specifiers: '@astrojs/preact': ^0.1.2 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 preact: ^10.7.1 dependencies: preact: 10.7.1 @@ -63,7 +63,7 @@ importers: examples/blog-multiple-authors: specifiers: '@astrojs/preact': ^0.1.2 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 preact: ^10.7.1 sass: ^1.50.1 dependencies: @@ -75,14 +75,14 @@ importers: examples/component: specifiers: - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 devDependencies: astro: link:../../packages/astro examples/component/demo: specifiers: '@example/my-component': workspace:* - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 devDependencies: '@example/my-component': link:../packages/my-component astro: link:../../../packages/astro @@ -98,7 +98,7 @@ importers: '@docsearch/css': ^3.0.0 '@docsearch/react': ^3.0.0 '@types/react': ^17.0.44 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 preact: ^10.7.1 react: ^17.0.2 react-dom: ^17.0.2 @@ -117,14 +117,14 @@ importers: examples/env-vars: specifiers: - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 devDependencies: astro: link:../../packages/astro examples/framework-alpine: specifiers: alpinejs: ^3.10.2 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 dependencies: alpinejs: 3.10.2 devDependencies: @@ -134,7 +134,7 @@ importers: specifiers: '@astrojs/lit': ^0.1.2 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 lit: ^2.2.2 dependencies: '@webcomponents/template-shadowroot': 0.1.0 @@ -152,7 +152,7 @@ importers: '@astrojs/svelte': ^0.1.2 '@astrojs/vue': ^0.1.3 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 lit: ^2.2.2 preact: ^10.7.1 react: ^18.0.0 @@ -181,7 +181,7 @@ importers: examples/framework-preact: specifiers: '@astrojs/preact': ^0.1.2 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 preact: ^10.7.1 dependencies: preact: 10.7.1 @@ -194,7 +194,7 @@ importers: '@astrojs/react': ^0.1.1 '@types/react': ^18.0.0 '@types/react-dom': ^18.0.0 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 react: ^18.0.0 react-dom: ^18.0.0 dependencies: @@ -209,7 +209,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^0.1.2 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 solid-js: ^1.3.16 dependencies: solid-js: 1.3.16 @@ -220,7 +220,7 @@ importers: examples/framework-svelte: specifiers: '@astrojs/svelte': ^0.1.2 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 svelte: ^3.47.0 dependencies: svelte: 3.47.0 @@ -231,7 +231,7 @@ importers: examples/framework-vue: specifiers: '@astrojs/vue': ^0.1.3 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 vue: ^3.2.33 dependencies: vue: 3.2.33 @@ -248,7 +248,7 @@ importers: '@astrojs/tailwind': ^0.2.1 '@astrojs/turbolinks': ^0.1.1 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 lit: ^2.2.2 preact: ^10.7.1 react: ^18.0.0 @@ -276,20 +276,20 @@ importers: examples/minimal: specifiers: - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 devDependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 devDependencies: astro: link:../../packages/astro examples/portfolio: specifiers: '@astrojs/preact': ^0.1.2 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 preact: ^10.7.1 sass: ^1.50.1 dependencies: @@ -303,7 +303,7 @@ importers: specifiers: '@astrojs/node': ^0.1.1 '@astrojs/svelte': ^0.1.2 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 concurrently: ^7.1.0 lightcookie: ^1.0.25 svelte: ^3.47.0 @@ -322,14 +322,14 @@ importers: examples/starter: specifiers: - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 devDependencies: astro: link:../../packages/astro examples/subpath: specifiers: '@astrojs/react': ^0.1.1 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 react: ^18.0.0 react-dom: ^18.0.0 sass: ^1.50.1 @@ -348,7 +348,7 @@ importers: '@astrojs/react': ^0.1.1 '@astrojs/svelte': ^0.1.2 '@astrojs/vue': ^0.1.3 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 preact: ^10.7.1 react: ^18.0.0 react-dom: ^18.0.0 @@ -371,7 +371,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^0.9.4 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -389,7 +389,7 @@ importers: examples/with-markdown-shiki: specifiers: '@astrojs/markdown-remark': ^0.9.4 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 devDependencies: '@astrojs/markdown-remark': link:../../packages/markdown/remark astro: link:../../packages/astro @@ -404,7 +404,7 @@ importers: '@nanostores/preact': ^0.1.3 '@nanostores/react': ^0.1.5 '@nanostores/vue': ^0.4.1 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 nanostores: ^0.5.12 preact: ^10.7.1 react: ^18.0.0 @@ -432,7 +432,7 @@ importers: examples/with-tailwindcss: specifiers: '@astrojs/tailwind': ^0.2.1 - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 autoprefixer: ^10.4.4 canvas-confetti: ^1.5.1 postcss: ^8.4.12 @@ -447,7 +447,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.0.0-beta.22 + astro: ^1.0.0-beta.23 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 devDependencies: