From 1862a500b874b8af113846324399d230c3c9928e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 28 Jun 2022 14:03:38 +0000 Subject: [PATCH] [ci] release --- .changeset/khaki-ligers-glow.md | 5 -- .changeset/lovely-radios-grin.md | 19 ----- .changeset/lucky-apes-yell.md | 5 -- .changeset/perfect-drinks-fold.md | 5 -- .changeset/spotty-islands-raise.md | 6 -- .changeset/strange-laws-kick.md | 6 -- .changeset/tidy-dots-own.md | 5 -- examples/basics/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/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/integrations-playground/package.json | 6 +- examples/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 2 +- examples/starter/package.json | 2 +- examples/subpath/package.json | 2 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown-shiki/package.json | 2 +- examples/with-markdown/package.json | 2 +- examples/with-nanostores/package.json | 2 +- examples/with-tailwindcss/package.json | 4 +- examples/with-vite-plugin-pwa/package.json | 2 +- packages/astro/CHANGELOG.md | 13 ++++ packages/astro/package.json | 4 +- packages/integrations/deno/CHANGELOG.md | 6 ++ packages/integrations/deno/package.json | 2 +- packages/integrations/netlify/CHANGELOG.md | 6 ++ packages/integrations/netlify/package.json | 2 +- packages/integrations/prefetch/CHANGELOG.md | 22 ++++++ packages/integrations/prefetch/package.json | 2 +- packages/integrations/sitemap/CHANGELOG.md | 6 ++ packages/integrations/sitemap/package.json | 2 +- packages/integrations/tailwind/CHANGELOG.md | 6 ++ packages/integrations/tailwind/package.json | 2 +- packages/telemetry/CHANGELOG.md | 6 ++ packages/telemetry/package.json | 2 +- pnpm-lock.yaml | 73 ++++++++----------- 50 files changed, 136 insertions(+), 131 deletions(-) delete mode 100644 .changeset/khaki-ligers-glow.md delete mode 100644 .changeset/lovely-radios-grin.md delete mode 100644 .changeset/lucky-apes-yell.md delete mode 100644 .changeset/perfect-drinks-fold.md delete mode 100644 .changeset/spotty-islands-raise.md delete mode 100644 .changeset/strange-laws-kick.md delete mode 100644 .changeset/tidy-dots-own.md create mode 100644 packages/integrations/prefetch/CHANGELOG.md diff --git a/.changeset/khaki-ligers-glow.md b/.changeset/khaki-ligers-glow.md deleted file mode 100644 index 1022514daa163..0000000000000 --- a/.changeset/khaki-ligers-glow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/tailwind': patch ---- - -Marks the Tailwind integration config as optional to fix TypeScript validation warnings diff --git a/.changeset/lovely-radios-grin.md b/.changeset/lovely-radios-grin.md deleted file mode 100644 index 6bf7ad719ff1e..0000000000000 --- a/.changeset/lovely-radios-grin.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -'@astrojs/prefetch': patch ---- - -Adds a new `@astrojs/prefetch` integration with the goal of adding near-instant page navigation for Astro projects. HTML and CSS for visible links marked with `rel="prefetch"` will be preloaded in the browser when the browser is idle. - -__astro.config.mjs__ -```js -import prefetch from '@astrojs/prefetch'; -export default { - // ... - integrations: [prefetch()], -} -``` - -```html - -All Products -``` diff --git a/.changeset/lucky-apes-yell.md b/.changeset/lucky-apes-yell.md deleted file mode 100644 index ea244403e5747..0000000000000 --- a/.changeset/lucky-apes-yell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Update "astro add" output to remove confusing multi-select prompt. diff --git a/.changeset/perfect-drinks-fold.md b/.changeset/perfect-drinks-fold.md deleted file mode 100644 index 2af9edabaf61e..0000000000000 --- a/.changeset/perfect-drinks-fold.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Update the help output to improve formatting diff --git a/.changeset/spotty-islands-raise.md b/.changeset/spotty-islands-raise.md deleted file mode 100644 index f8246006de127..0000000000000 --- a/.changeset/spotty-islands-raise.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@astrojs/deno': patch -'@astrojs/netlify': patch ---- - -Fix: append shim to top of built file to avoid "can't read process of undefined" issues diff --git a/.changeset/strange-laws-kick.md b/.changeset/strange-laws-kick.md deleted file mode 100644 index 5a7ec191dd959..0000000000000 --- a/.changeset/strange-laws-kick.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"astro": patch -"@astrojs/telemetry": minor ---- - -Update telemetry to support a more anonymized project id. `anonymousProjectId` is now hashed based on anonymous git data instead of your git remote URL. diff --git a/.changeset/tidy-dots-own.md b/.changeset/tidy-dots-own.md deleted file mode 100644 index a9367dc2ab484..0000000000000 --- a/.changeset/tidy-dots-own.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/sitemap': patch ---- - -fix: if `serialize` function returns `undefined` for the passed entry, such entry will be excluded from sitemap diff --git a/examples/basics/package.json b/examples/basics/package.json index a0295bc6e7235..055321a4a1f83 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" } } diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index 426dc59d2a7e7..f0ab361734e12 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.2.0", - "astro": "^1.0.0-beta.57", + "astro": "^1.0.0-beta.58", "sass": "^1.52.2" }, "dependencies": { diff --git a/examples/blog/package.json b/examples/blog/package.json index 7994b7b2062f1..6a723991a84f2 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.2.0", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" }, "dependencies": { "preact": "^10.7.3" diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index 1fae61292f4a6..f081361152faf 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.57" + "astro": "^1.0.0-beta.58" } } diff --git a/examples/component/package.json b/examples/component/package.json index 23460b1333d81..73f91acd83f38 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.57" + "astro": "^1.0.0-beta.58" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index 281c374baf5a0..5d1ea6dcf9f51 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -20,6 +20,6 @@ "devDependencies": { "@astrojs/preact": "^0.2.0", "@astrojs/react": "^0.2.0", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" } } diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json index 34194f025365a..83cde00f86a31 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.57" + "astro": "^1.0.0-beta.58" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 9ff43bb8d4c93..9c0ce8008a6b2 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.57" + "astro": "^1.0.0-beta.58" }, "dependencies": { "alpinejs": "^3.10.2" diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index b9f5085eaedc4..5fe2599e72568 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/lit": "^0.3.0", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 102fb2b9e68be..c0825fce0a5d2 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -15,7 +15,7 @@ "@astrojs/solid-js": "^0.2.0", "@astrojs/svelte": "^0.2.0", "@astrojs/vue": "^0.2.0", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index e4e7f84b6dea8..f3a20567112e1 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.2.0", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" }, "dependencies": { "preact": "^10.7.3" diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index c951c35239d3c..f137ba62d406e 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -12,7 +12,7 @@ "@astrojs/react": "^0.2.0", "@types/react": "^18.0.10", "@types/react-dom": "^18.0.5", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" }, "dependencies": { "react": "^18.1.0", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index ac9e4919bede4..c006078db9e87 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/solid-js": "^0.2.0", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" }, "dependencies": { "solid-js": "^1.4.3" diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 0502ee30c10e3..fe6703dfd23f9 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/svelte": "^0.2.0", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" }, "dependencies": { "svelte": "^3.48.0" diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index b4ff277b819ec..faf6bc2376f09 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/vue": "^0.2.0", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" }, "dependencies": { "vue": "^3.2.37" diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json index 8d4c3f04b0475..2847d7f989506 100644 --- a/examples/integrations-playground/package.json +++ b/examples/integrations-playground/package.json @@ -12,11 +12,11 @@ "@astrojs/lit": "^0.3.0", "@astrojs/partytown": "^0.1.5", "@astrojs/react": "^0.2.0", - "@astrojs/sitemap": "^0.2.2", + "@astrojs/sitemap": "^0.2.3", "@astrojs/solid-js": "0.2.0", - "@astrojs/tailwind": "^0.2.1", + "@astrojs/tailwind": "^0.2.2", "@astrojs/turbolinks": "^0.1.3", - "astro": "^1.0.0-beta.57", + "astro": "^1.0.0-beta.58", "solid-js": "^1.4.3" }, "dependencies": { diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 6bec9c0acb438..ff811de0fe10f 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index d3a51e119c458..a9bd34d645a48 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.57" + "astro": "^1.0.0-beta.58" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 5376afc7a9381..3f7f9460a6b51 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.2.0", - "astro": "^1.0.0-beta.57", + "astro": "^1.0.0-beta.58", "sass": "^1.52.2" }, "dependencies": { diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 3814829dbc68a..d54cfce830f18 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@astrojs/node": "^0.1.2", "@astrojs/svelte": "^0.2.0", - "astro": "^1.0.0-beta.57", + "astro": "^1.0.0-beta.58", "concurrently": "^7.2.1", "lightcookie": "^1.0.25", "unocss": "^0.15.6", diff --git a/examples/starter/package.json b/examples/starter/package.json index 8ea6703c0cc8a..473229e8c212b 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index 277662639cbfe..1f78d689c8022 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/react": "^0.2.0", - "astro": "^1.0.0-beta.57", + "astro": "^1.0.0-beta.58", "sass": "^1.52.2" }, "dependencies": { diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 063a572c71ccb..eb1306220b256 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.11.3", - "astro": "^1.0.0-beta.57", + "astro": "^1.0.0-beta.58", "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 1e9ad49026a97..b41241b453533 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.11.3", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" } } diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index 16b0583cd5ef1..c1333c67821f3 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -14,7 +14,7 @@ "@astrojs/react": "^0.2.0", "@astrojs/svelte": "^0.2.0", "@astrojs/vue": "^0.2.0", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" }, "dependencies": { "preact": "^10.7.3", diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index b6201319e516b..6d8e6616b5c4c 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -25,6 +25,6 @@ "@astrojs/solid-js": "^0.2.0", "@astrojs/svelte": "^0.2.0", "@astrojs/vue": "^0.2.0", - "astro": "^1.0.0-beta.57" + "astro": "^1.0.0-beta.58" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index a3d089a7b6a2b..0cc23134abc65 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/tailwind": "^0.2.1", - "astro": "^1.0.0-beta.57", + "@astrojs/tailwind": "^0.2.2", + "astro": "^1.0.0-beta.58", "autoprefixer": "^10.4.7", "canvas-confetti": "^1.5.1", "postcss": "^8.4.14", diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index eba6235e534cf..0875a8388b275 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.57", + "astro": "^1.0.0-beta.58", "vite-plugin-pwa": "0.11.11", "workbox-window": "^6.5.3" } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 6ac87893464a4..01887c0c0b94f 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,18 @@ # astro +## 1.0.0-beta.58 + +### Patch Changes + +- [#3715](https://github.com/withastro/astro/pull/3715) [`4d6d8644`](https://github.com/withastro/astro/commit/4d6d8644e623522ca6c19dbb2078865b17044c38) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update "astro add" output to remove confusing multi-select prompt. + +* [#3715](https://github.com/withastro/astro/pull/3715) [`4d6d8644`](https://github.com/withastro/astro/commit/4d6d8644e623522ca6c19dbb2078865b17044c38) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update the help output to improve formatting + +- [#3713](https://github.com/withastro/astro/pull/3713) [`ebd7e7ad`](https://github.com/withastro/astro/commit/ebd7e7ad81e5245deffa331f11e5196ff1b21d84) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update telemetry to support a more anonymized project id. `anonymousProjectId` is now hashed based on anonymous git data instead of your git remote URL. + +- Updated dependencies [[`ebd7e7ad`](https://github.com/withastro/astro/commit/ebd7e7ad81e5245deffa331f11e5196ff1b21d84)]: + - @astrojs/telemetry@0.2.0 + ## 1.0.0-beta.57 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 0b07f671135e6..ce7a305e85780 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.0.0-beta.57", + "version": "1.0.0-beta.58", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", @@ -84,7 +84,7 @@ "@astrojs/language-server": "^0.13.4", "@astrojs/markdown-remark": "^0.11.3", "@astrojs/prism": "0.4.1", - "@astrojs/telemetry": "^0.1.3", + "@astrojs/telemetry": "^0.2.0", "@astrojs/webapi": "^0.12.0", "@babel/core": "^7.18.2", "@babel/generator": "^7.18.2", diff --git a/packages/integrations/deno/CHANGELOG.md b/packages/integrations/deno/CHANGELOG.md index 828e84574c959..d1ac6241e7ade 100644 --- a/packages/integrations/deno/CHANGELOG.md +++ b/packages/integrations/deno/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/node +## 0.1.7 + +### Patch Changes + +- [#3734](https://github.com/withastro/astro/pull/3734) [`4acd245d`](https://github.com/withastro/astro/commit/4acd245d8f59871eb9c0083ae1a0fe7aa70c84f5) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: append shim to top of built file to avoid "can't read process of undefined" issues + ## 0.1.6 ### Patch Changes diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json index df164f2dd6307..6d2a799335f81 100644 --- a/packages/integrations/deno/package.json +++ b/packages/integrations/deno/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/deno", "description": "Deploy your site to a Deno server", - "version": "0.1.6", + "version": "0.1.7", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md index f1e4c59e5b503..36a92b1a46782 100644 --- a/packages/integrations/netlify/CHANGELOG.md +++ b/packages/integrations/netlify/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/netlify +## 0.4.7 + +### Patch Changes + +- [#3734](https://github.com/withastro/astro/pull/3734) [`4acd245d`](https://github.com/withastro/astro/commit/4acd245d8f59871eb9c0083ae1a0fe7aa70c84f5) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: append shim to top of built file to avoid "can't read process of undefined" issues + ## 0.4.6 ### Patch Changes diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json index 53f1767828a59..0edfb632b34be 100644 --- a/packages/integrations/netlify/package.json +++ b/packages/integrations/netlify/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/netlify", "description": "Deploy your site to Netlify", - "version": "0.4.6", + "version": "0.4.7", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/prefetch/CHANGELOG.md b/packages/integrations/prefetch/CHANGELOG.md new file mode 100644 index 0000000000000..82fa0154d5f7c --- /dev/null +++ b/packages/integrations/prefetch/CHANGELOG.md @@ -0,0 +1,22 @@ +# @astrojs/prefetch + +## 0.0.2 + +### Patch Changes + +- [#3736](https://github.com/withastro/astro/pull/3736) [`bd4dac0e`](https://github.com/withastro/astro/commit/bd4dac0e1a8598045f10c42faf08abff96ed6766) Thanks [@tony-sull](https://github.com/tony-sull)! - Adds a new `@astrojs/prefetch` integration with the goal of adding near-instant page navigation for Astro projects. HTML and CSS for visible links marked with `rel="prefetch"` will be preloaded in the browser when the browser is idle. + + **astro.config.mjs** + + ```js + import prefetch from '@astrojs/prefetch'; + export default { + // ... + integrations: [prefetch()], + }; + ``` + + ```html + + All Products + ``` diff --git a/packages/integrations/prefetch/package.json b/packages/integrations/prefetch/package.json index 2fdf7cf2c7976..29d277fed409d 100644 --- a/packages/integrations/prefetch/package.json +++ b/packages/integrations/prefetch/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/prefetch", "description": "Faster page navigations by prefetching links when the browser is idle.", - "version": "0.0.1", + "version": "0.0.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/sitemap/CHANGELOG.md b/packages/integrations/sitemap/CHANGELOG.md index 47d1c40efe05b..ae5c40f0ad63f 100644 --- a/packages/integrations/sitemap/CHANGELOG.md +++ b/packages/integrations/sitemap/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/sitemap +## 0.2.3 + +### Patch Changes + +- [#3723](https://github.com/withastro/astro/pull/3723) [`52f75369`](https://github.com/withastro/astro/commit/52f75369efe5a0a1b320478984c90b6727d52159) Thanks [@alextim](https://github.com/alextim)! - fix: if `serialize` function returns `undefined` for the passed entry, such entry will be excluded from sitemap + ## 0.2.2 ### Patch Changes diff --git a/packages/integrations/sitemap/package.json b/packages/integrations/sitemap/package.json index 47e0e0ef067ce..0bb6284f6e635 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.2.2", + "version": "0.2.3", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/tailwind/CHANGELOG.md b/packages/integrations/tailwind/CHANGELOG.md index 6e1b827f8cdc6..2c497719a2dab 100644 --- a/packages/integrations/tailwind/CHANGELOG.md +++ b/packages/integrations/tailwind/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/tailwind +## 0.2.2 + +### Patch Changes + +- [#3732](https://github.com/withastro/astro/pull/3732) [`6360f474`](https://github.com/withastro/astro/commit/6360f474fb8cecaf4fe27e9184058b57da1df72a) Thanks [@inwardmovement](https://github.com/inwardmovement)! - Marks the Tailwind integration config as optional to fix TypeScript validation warnings + ## 0.2.1 ### Patch Changes diff --git a/packages/integrations/tailwind/package.json b/packages/integrations/tailwind/package.json index 68c0bbd65a31e..2c200b77204f6 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.2.1", + "version": "0.2.2", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/telemetry/CHANGELOG.md b/packages/telemetry/CHANGELOG.md index c6e53875a5af3..ae248b391e90b 100644 --- a/packages/telemetry/CHANGELOG.md +++ b/packages/telemetry/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/telemetry +## 0.2.0 + +### Minor Changes + +- [#3713](https://github.com/withastro/astro/pull/3713) [`ebd7e7ad`](https://github.com/withastro/astro/commit/ebd7e7ad81e5245deffa331f11e5196ff1b21d84) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update telemetry to support a more anonymized project id. `anonymousProjectId` is now hashed based on anonymous git data instead of your git remote URL. + ## 0.1.3 ### Patch Changes diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json index 56d6e8ffd8263..2890a67e649a6 100644 --- a/packages/telemetry/package.json +++ b/packages/telemetry/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/telemetry", - "version": "0.1.3", + "version": "0.2.0", "type": "module", "types": "./dist/types/index.d.ts", "author": "withastro", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 79afdc3075410..4e7c197022a71 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -49,14 +49,14 @@ importers: examples/basics: specifiers: - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 devDependencies: astro: link:../../packages/astro examples/blog: specifiers: '@astrojs/preact': ^0.2.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 preact: ^10.7.3 dependencies: preact: 10.7.3 @@ -67,7 +67,7 @@ importers: examples/blog-multiple-authors: specifiers: '@astrojs/preact': ^0.2.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 preact: ^10.7.3 sass: ^1.52.2 dependencies: @@ -79,14 +79,14 @@ importers: examples/component: specifiers: - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 devDependencies: astro: link:../../packages/astro examples/component/demo: specifiers: '@example/my-component': workspace:* - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 devDependencies: '@example/my-component': link:../packages/my-component astro: link:../../../packages/astro @@ -102,7 +102,7 @@ importers: '@docsearch/css': ^3.1.0 '@docsearch/react': ^3.1.0 '@types/react': ^17.0.45 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -121,14 +121,14 @@ importers: examples/env-vars: specifiers: - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 devDependencies: astro: link:../../packages/astro examples/framework-alpine: specifiers: alpinejs: ^3.10.2 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 dependencies: alpinejs: 3.10.2 devDependencies: @@ -138,7 +138,7 @@ importers: specifiers: '@astrojs/lit': ^0.3.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 lit: ^2.2.5 dependencies: '@webcomponents/template-shadowroot': 0.1.0 @@ -156,7 +156,7 @@ importers: '@astrojs/svelte': ^0.2.0 '@astrojs/vue': ^0.2.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 lit: ^2.2.5 preact: ^10.7.3 react: ^18.1.0 @@ -185,7 +185,7 @@ importers: examples/framework-preact: specifiers: '@astrojs/preact': ^0.2.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 preact: ^10.7.3 dependencies: preact: 10.7.3 @@ -198,7 +198,7 @@ importers: '@astrojs/react': ^0.2.0 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -213,7 +213,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^0.2.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 solid-js: ^1.4.3 dependencies: solid-js: 1.4.3 @@ -224,7 +224,7 @@ importers: examples/framework-svelte: specifiers: '@astrojs/svelte': ^0.2.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 svelte: ^3.48.0 dependencies: svelte: 3.48.0 @@ -235,7 +235,7 @@ importers: examples/framework-vue: specifiers: '@astrojs/vue': ^0.2.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 vue: ^3.2.37 dependencies: vue: 3.2.37 @@ -248,12 +248,12 @@ importers: '@astrojs/lit': ^0.3.0 '@astrojs/partytown': ^0.1.5 '@astrojs/react': ^0.2.0 - '@astrojs/sitemap': ^0.2.2 + '@astrojs/sitemap': ^0.2.3 '@astrojs/solid-js': 0.2.0 - '@astrojs/tailwind': ^0.2.1 + '@astrojs/tailwind': ^0.2.2 '@astrojs/turbolinks': ^0.1.3 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 lit: ^2.2.5 preact: ^10.7.3 react: ^18.1.0 @@ -282,20 +282,20 @@ importers: examples/minimal: specifiers: - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 devDependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 devDependencies: astro: link:../../packages/astro examples/portfolio: specifiers: '@astrojs/preact': ^0.2.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 preact: ^10.7.3 sass: ^1.52.2 dependencies: @@ -309,7 +309,7 @@ importers: specifiers: '@astrojs/node': ^0.1.2 '@astrojs/svelte': ^0.2.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 concurrently: ^7.2.1 lightcookie: ^1.0.25 svelte: ^3.48.0 @@ -328,14 +328,14 @@ importers: examples/starter: specifiers: - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 devDependencies: astro: link:../../packages/astro examples/subpath: specifiers: '@astrojs/react': ^0.2.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 react: ^18.1.0 react-dom: ^18.1.0 sass: ^1.52.2 @@ -354,7 +354,7 @@ importers: '@astrojs/react': ^0.2.0 '@astrojs/svelte': ^0.2.0 '@astrojs/vue': ^0.2.0 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -377,7 +377,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^0.11.3 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -395,7 +395,7 @@ importers: examples/with-markdown-shiki: specifiers: '@astrojs/markdown-remark': ^0.11.3 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 devDependencies: '@astrojs/markdown-remark': link:../../packages/markdown/remark astro: link:../../packages/astro @@ -410,7 +410,7 @@ importers: '@nanostores/preact': ^0.1.3 '@nanostores/react': ^0.1.5 '@nanostores/vue': ^0.4.1 - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 nanostores: ^0.5.12 preact: ^10.7.3 react: ^18.1.0 @@ -437,8 +437,8 @@ importers: examples/with-tailwindcss: specifiers: - '@astrojs/tailwind': ^0.2.1 - astro: ^1.0.0-beta.57 + '@astrojs/tailwind': ^0.2.2 + astro: ^1.0.0-beta.58 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -453,7 +453,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.0.0-beta.57 + astro: ^1.0.0-beta.58 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 devDependencies: @@ -467,7 +467,7 @@ importers: '@astrojs/language-server': ^0.13.4 '@astrojs/markdown-remark': ^0.11.3 '@astrojs/prism': 0.4.1 - '@astrojs/telemetry': ^0.1.3 + '@astrojs/telemetry': ^0.2.0 '@astrojs/webapi': ^0.12.0 '@babel/core': ^7.18.2 '@babel/generator': ^7.18.2 @@ -8581,11 +8581,6 @@ packages: /debug/3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true dependencies: ms: 2.1.3 dev: false @@ -11467,8 +11462,6 @@ packages: debug: 3.2.7 iconv-lite: 0.4.24 sax: 1.2.4 - transitivePeerDependencies: - - supports-color dev: false /netmask/2.0.2: @@ -11552,8 +11545,6 @@ packages: rimraf: 2.7.1 semver: 5.7.1 tar: 4.4.19 - transitivePeerDependencies: - - supports-color dev: false /node-releases/2.0.5: