diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/astro/CHANGELOG.md | 14 | ||||
-rw-r--r-- | packages/astro/package.json | 6 | ||||
-rw-r--r-- | packages/markdown/remark/CHANGELOG.md | 8 | ||||
-rw-r--r-- | packages/markdown/remark/package.json | 2 | ||||
-rw-r--r-- | packages/telemetry/CHANGELOG.md | 7 | ||||
-rw-r--r-- | packages/telemetry/package.json | 2 |
6 files changed, 34 insertions, 5 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 02147da51..956110ae1 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,19 @@ # astro +## 1.0.0-beta.21 + +### Patch Changes + +- [#3244](https://github.com/withastro/astro/pull/3244) [`48a35e60`](https://github.com/withastro/astro/commit/48a35e6042a6634c836ec333d18801e9d603b328) Thanks [@matthewp](https://github.com/matthewp)! - Consolidates hydration scripts into one + +* [#3256](https://github.com/withastro/astro/pull/3256) [`f76038ac`](https://github.com/withastro/astro/commit/f76038ac7db986a13701fd316e53142b52e011c8) Thanks [@matthewp](https://github.com/matthewp)! - Adds anonymous telemetry data to the cli + +- [#3234](https://github.com/withastro/astro/pull/3234) [`de123b28`](https://github.com/withastro/astro/commit/de123b28b3ff398b800cb598f20326ca85a0fb60) Thanks [@JuanM04](https://github.com/JuanM04)! - Moved some type from `astro` to `@astrojs/markdown-remark` + +- Updated dependencies [[`de123b28`](https://github.com/withastro/astro/commit/de123b28b3ff398b800cb598f20326ca85a0fb60), [`f76038ac`](https://github.com/withastro/astro/commit/f76038ac7db986a13701fd316e53142b52e011c8), [`de123b28`](https://github.com/withastro/astro/commit/de123b28b3ff398b800cb598f20326ca85a0fb60)]: + - @astrojs/markdown-remark@0.9.3 + - @astrojs/telemetry@0.1.0 + ## 1.0.0-beta.20 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 9952a36a6..018194acd 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.0.0-beta.20", + "version": "1.0.0-beta.21", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", @@ -77,9 +77,9 @@ "dependencies": { "@astrojs/compiler": "^0.14.2", "@astrojs/language-server": "^0.13.4", - "@astrojs/markdown-remark": "^0.9.2", + "@astrojs/markdown-remark": "^0.9.3", "@astrojs/prism": "0.4.1", - "@astrojs/telemetry": "^0.0.1", + "@astrojs/telemetry": "^0.1.0", "@astrojs/webapi": "^0.11.1", "@babel/core": "^7.17.9", "@babel/generator": "^7.17.9", diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md index a63cf4dcf..e8878daea 100644 --- a/packages/markdown/remark/CHANGELOG.md +++ b/packages/markdown/remark/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/markdown-remark +## 0.9.3 + +### Patch Changes + +- [#3234](https://github.com/withastro/astro/pull/3234) [`de123b28`](https://github.com/withastro/astro/commit/de123b28b3ff398b800cb598f20326ca85a0fb60) Thanks [@JuanM04](https://github.com/JuanM04)! - Removed `rehype-slug` in favor of our own implementation. The behavior of the slugging should remain the same + +* [#3234](https://github.com/withastro/astro/pull/3234) [`de123b28`](https://github.com/withastro/astro/commit/de123b28b3ff398b800cb598f20326ca85a0fb60) Thanks [@JuanM04](https://github.com/JuanM04)! - Moved some type from `astro` to `@astrojs/markdown-remark` + ## 0.9.2 ### Patch Changes diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json index 0086d3b1a..1104a0091 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-remark", - "version": "0.9.2", + "version": "0.9.3", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/telemetry/CHANGELOG.md b/packages/telemetry/CHANGELOG.md new file mode 100644 index 000000000..883f3fe5e --- /dev/null +++ b/packages/telemetry/CHANGELOG.md @@ -0,0 +1,7 @@ +# @astrojs/telemetry + +## 0.1.0 + +### Minor Changes + +- [#3256](https://github.com/withastro/astro/pull/3256) [`f76038ac`](https://github.com/withastro/astro/commit/f76038ac7db986a13701fd316e53142b52e011c8) Thanks [@matthewp](https://github.com/matthewp)! - Adds anonymous telemetry data to the cli diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json index 63b4c5edb..8dc39f143 100644 --- a/packages/telemetry/package.json +++ b/packages/telemetry/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/telemetry", - "version": "0.0.1", + "version": "0.1.0", "type": "module", "types": "./dist/types/index.d.ts", "author": "withastro", |