diff --git a/.changeset/flat-buses-tie.md b/.changeset/flat-buses-tie.md deleted file mode 100644 index 3fe72c6..0000000 --- a/.changeset/flat-buses-tie.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@astro-community/astro-embed-integration": minor -"astro-embed": minor ---- - -Error if astro-embed integration is configured after the MDX integration diff --git a/.changeset/little-fans-fold.md b/.changeset/little-fans-fold.md deleted file mode 100644 index 4c39b95..0000000 --- a/.changeset/little-fans-fold.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@astro-community/astro-embed-integration": minor -"astro-embed": minor ---- - -MDX integration embeds replace their parent paragraph instead of their link node - -⚠️ **Potentially breaking change:** embeds automatically injected in MDX using the Astro integration were previously wrapped in a `

` tag. -This is no longer the case. This may cause changes in vertical spacing between embeds depending on your site’s CSS. diff --git a/.changeset/spotty-baboons-kneel.md b/.changeset/spotty-baboons-kneel.md deleted file mode 100644 index 3fde97d..0000000 --- a/.changeset/spotty-baboons-kneel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astro-community/astro-embed-twitter": patch ---- - -Remove unused JavaScript from Tweet component diff --git a/packages/astro-embed-integration/CHANGELOG.md b/packages/astro-embed-integration/CHANGELOG.md index fe3778b..23ff437 100644 --- a/packages/astro-embed-integration/CHANGELOG.md +++ b/packages/astro-embed-integration/CHANGELOG.md @@ -1,5 +1,21 @@ # @astro-community/astro-embed-integration +## 0.6.0 + +### Minor Changes + +- [#69](https://github.com/delucis/astro-embed/pull/69) [`58c3d80`](https://github.com/delucis/astro-embed/commit/58c3d8069f37996d4cf79394c56e6fda532e6886) Thanks [@delucis](https://github.com/delucis)! - Error if astro-embed integration is configured after the MDX integration + +* [#66](https://github.com/delucis/astro-embed/pull/66) [`9fba8ef`](https://github.com/delucis/astro-embed/commit/9fba8ef667e28edba793a4941163f2f5b48fb1df) Thanks [@delucis](https://github.com/delucis)! - MDX integration embeds replace their parent paragraph instead of their link node + + ⚠️ **Potentially breaking change:** embeds automatically injected in MDX using the Astro integration were previously wrapped in a `

` tag. + This is no longer the case. This may cause changes in vertical spacing between embeds depending on your site’s CSS. + +### Patch Changes + +- Updated dependencies [[`18e7921`](https://github.com/delucis/astro-embed/commit/18e792114abd4588f29e2d61c5c6d05c30888335)]: + - @astro-community/astro-embed-twitter@0.5.2 + ## 0.5.1 ### Patch Changes diff --git a/packages/astro-embed-integration/package.json b/packages/astro-embed-integration/package.json index f0b2a1a..2a15d19 100644 --- a/packages/astro-embed-integration/package.json +++ b/packages/astro-embed-integration/package.json @@ -1,6 +1,6 @@ { "name": "@astro-community/astro-embed-integration", - "version": "0.5.1", + "version": "0.6.0", "description": "Astro integration to automatically convert URLs in Markdown files to embeds", "type": "module", "exports": { @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/delucis/astro-embed/tree/main/packages/astro-embed-integration#readme", "dependencies": { - "@astro-community/astro-embed-twitter": "^0.5.1", + "@astro-community/astro-embed-twitter": "^0.5.2", "@astro-community/astro-embed-vimeo": "^0.3.1", "@astro-community/astro-embed-youtube": "^0.4.1", "@types/unist": "^2.0.0", diff --git a/packages/astro-embed-twitter/CHANGELOG.md b/packages/astro-embed-twitter/CHANGELOG.md index d56f8f0..6c94872 100644 --- a/packages/astro-embed-twitter/CHANGELOG.md +++ b/packages/astro-embed-twitter/CHANGELOG.md @@ -1,5 +1,11 @@ # @astro-community/astro-embed-twitter +## 0.5.2 + +### Patch Changes + +- [#67](https://github.com/delucis/astro-embed/pull/67) [`18e7921`](https://github.com/delucis/astro-embed/commit/18e792114abd4588f29e2d61c5c6d05c30888335) Thanks [@delucis](https://github.com/delucis)! - Remove unused JavaScript from Tweet component + ## 0.5.1 ### Patch Changes diff --git a/packages/astro-embed-twitter/package.json b/packages/astro-embed-twitter/package.json index 49f8eb2..7252b9c 100644 --- a/packages/astro-embed-twitter/package.json +++ b/packages/astro-embed-twitter/package.json @@ -1,6 +1,6 @@ { "name": "@astro-community/astro-embed-twitter", - "version": "0.5.1", + "version": "0.5.2", "description": "Component to easily embed Tweets on your Astro site", "type": "module", "exports": { diff --git a/packages/astro-embed/CHANGELOG.md b/packages/astro-embed/CHANGELOG.md index 8c35a82..3531773 100644 --- a/packages/astro-embed/CHANGELOG.md +++ b/packages/astro-embed/CHANGELOG.md @@ -1,5 +1,22 @@ # astro-embed +## 0.6.0 + +### Minor Changes + +- [#69](https://github.com/delucis/astro-embed/pull/69) [`58c3d80`](https://github.com/delucis/astro-embed/commit/58c3d8069f37996d4cf79394c56e6fda532e6886) Thanks [@delucis](https://github.com/delucis)! - Error if astro-embed integration is configured after the MDX integration + +* [#66](https://github.com/delucis/astro-embed/pull/66) [`9fba8ef`](https://github.com/delucis/astro-embed/commit/9fba8ef667e28edba793a4941163f2f5b48fb1df) Thanks [@delucis](https://github.com/delucis)! - MDX integration embeds replace their parent paragraph instead of their link node + + ⚠️ **Potentially breaking change:** embeds automatically injected in MDX using the Astro integration were previously wrapped in a `

` tag. + This is no longer the case. This may cause changes in vertical spacing between embeds depending on your site’s CSS. + +### Patch Changes + +- Updated dependencies [[`58c3d80`](https://github.com/delucis/astro-embed/commit/58c3d8069f37996d4cf79394c56e6fda532e6886), [`9fba8ef`](https://github.com/delucis/astro-embed/commit/9fba8ef667e28edba793a4941163f2f5b48fb1df), [`18e7921`](https://github.com/delucis/astro-embed/commit/18e792114abd4588f29e2d61c5c6d05c30888335)]: + - @astro-community/astro-embed-integration@0.6.0 + - @astro-community/astro-embed-twitter@0.5.2 + ## 0.5.1 ### Patch Changes diff --git a/packages/astro-embed/package.json b/packages/astro-embed/package.json index 72506bc..8d800fd 100644 --- a/packages/astro-embed/package.json +++ b/packages/astro-embed/package.json @@ -1,6 +1,6 @@ { "name": "astro-embed", - "version": "0.5.1", + "version": "0.6.0", "description": "Astro components to easily embed common media formats", "type": "module", "exports": { @@ -30,8 +30,8 @@ }, "homepage": "https://github.com/delucis/astro-embed/tree/main/packages/astro-embed#readme", "dependencies": { - "@astro-community/astro-embed-integration": "^0.5.1", - "@astro-community/astro-embed-twitter": "^0.5.1", + "@astro-community/astro-embed-integration": "^0.6.0", + "@astro-community/astro-embed-twitter": "^0.5.2", "@astro-community/astro-embed-vimeo": "^0.3.1", "@astro-community/astro-embed-youtube": "^0.4.1" },