diff --git a/.changeset/large-dolls-burn.md b/.changeset/large-dolls-burn.md deleted file mode 100644 index 51ea604..0000000 --- a/.changeset/large-dolls-burn.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@astro-community/astro-embed-integration': patch ---- - -Fixes an issue where the integration would match links that take up an entire paragraph even if they included a custom link. - -For example, `[Check it out!](https://example.com)` would be converted to a `` component instead of rendering an `` tag. This is now fixed and only plain URLs like `https://example.com` will match. diff --git a/.changeset/wet-chairs-cry.md b/.changeset/wet-chairs-cry.md deleted file mode 100644 index 5fe0f32..0000000 --- a/.changeset/wet-chairs-cry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astro-community/astro-embed-link-preview': minor ---- - -Make the number of lines displayed in the `` description configurable. diff --git a/packages/astro-embed-integration/CHANGELOG.md b/packages/astro-embed-integration/CHANGELOG.md index 7c9ee68..6b8d7e4 100644 --- a/packages/astro-embed-integration/CHANGELOG.md +++ b/packages/astro-embed-integration/CHANGELOG.md @@ -1,5 +1,16 @@ # @astro-community/astro-embed-integration +## 0.7.1 + +### Patch Changes + +- [#121](https://github.com/delucis/astro-embed/pull/121) [`93a5ca7aeefab7514bcde86fbe080d404a3169f8`](https://github.com/delucis/astro-embed/commit/93a5ca7aeefab7514bcde86fbe080d404a3169f8) Thanks [@delucis](https://github.com/delucis)! - Fixes an issue where the integration would match links that take up an entire paragraph even if they included a custom link. + + For example, `[Check it out!](https://example.com)` would be converted to a `` component instead of rendering an `` tag. This is now fixed and only plain URLs like `https://example.com` will match. + +- Updated dependencies [[`732a6cfac5038f82ccdd4df7c2dacf036deceae5`](https://github.com/delucis/astro-embed/commit/732a6cfac5038f82ccdd4df7c2dacf036deceae5)]: + - @astro-community/astro-embed-link-preview@0.2.0 + ## 0.7.0 ### Minor Changes diff --git a/packages/astro-embed-integration/package.json b/packages/astro-embed-integration/package.json index 8f81538..058993e 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.7.0", + "version": "0.7.1", "description": "Astro integration to automatically convert URLs in Markdown files to embeds", "type": "module", "exports": { @@ -22,7 +22,7 @@ }, "homepage": "https://astro-embed.netlify.app/integration", "dependencies": { - "@astro-community/astro-embed-link-preview": "^0.1.0", + "@astro-community/astro-embed-link-preview": "^0.2.0", "@astro-community/astro-embed-twitter": "^0.5.4", "@astro-community/astro-embed-vimeo": "^0.3.6", "@astro-community/astro-embed-youtube": "^0.5.0", diff --git a/packages/astro-embed-link-preview/CHANGELOG.md b/packages/astro-embed-link-preview/CHANGELOG.md index 3878f87..3ab3380 100644 --- a/packages/astro-embed-link-preview/CHANGELOG.md +++ b/packages/astro-embed-link-preview/CHANGELOG.md @@ -1,5 +1,11 @@ # @astro-community/astro-embed-link-preview +## 0.2.0 + +### Minor Changes + +- [#119](https://github.com/delucis/astro-embed/pull/119) [`732a6cfac5038f82ccdd4df7c2dacf036deceae5`](https://github.com/delucis/astro-embed/commit/732a6cfac5038f82ccdd4df7c2dacf036deceae5) Thanks [@jasikpark](https://github.com/jasikpark)! - Make the number of lines displayed in the `` description configurable. + ## 0.1.0 ### Minor Changes diff --git a/packages/astro-embed-link-preview/package.json b/packages/astro-embed-link-preview/package.json index 9c97742..edbc499 100644 --- a/packages/astro-embed-link-preview/package.json +++ b/packages/astro-embed-link-preview/package.json @@ -1,6 +1,6 @@ { "name": "@astro-community/astro-embed-link-preview", - "version": "0.1.0", + "version": "0.2.0", "description": "Component to embed a website’s OpenGraph image and metadata on your Astro site", "type": "module", "exports": { diff --git a/packages/astro-embed/CHANGELOG.md b/packages/astro-embed/CHANGELOG.md index 0e440a6..a86f3d9 100644 --- a/packages/astro-embed/CHANGELOG.md +++ b/packages/astro-embed/CHANGELOG.md @@ -1,5 +1,13 @@ # astro-embed +## 0.7.2 + +### Patch Changes + +- Updated dependencies [[`93a5ca7aeefab7514bcde86fbe080d404a3169f8`](https://github.com/delucis/astro-embed/commit/93a5ca7aeefab7514bcde86fbe080d404a3169f8), [`732a6cfac5038f82ccdd4df7c2dacf036deceae5`](https://github.com/delucis/astro-embed/commit/732a6cfac5038f82ccdd4df7c2dacf036deceae5)]: + - @astro-community/astro-embed-integration@0.7.1 + - @astro-community/astro-embed-link-preview@0.2.0 + ## 0.7.1 ### Patch Changes diff --git a/packages/astro-embed/package.json b/packages/astro-embed/package.json index 16689c3..e7b70a9 100644 --- a/packages/astro-embed/package.json +++ b/packages/astro-embed/package.json @@ -1,6 +1,6 @@ { "name": "astro-embed", - "version": "0.7.1", + "version": "0.7.2", "description": "Astro components to easily embed common media formats", "type": "module", "exports": { @@ -31,8 +31,8 @@ }, "homepage": "https://astro-embed.netlify.app/", "dependencies": { - "@astro-community/astro-embed-link-preview": "^0.1.0", - "@astro-community/astro-embed-integration": "^0.7.0", + "@astro-community/astro-embed-link-preview": "^0.2.0", + "@astro-community/astro-embed-integration": "^0.7.1", "@astro-community/astro-embed-twitter": "^0.5.4", "@astro-community/astro-embed-vimeo": "^0.3.7", "@astro-community/astro-embed-youtube": "^0.5.0"