Skip to content

Commit

Permalink
Version Packages (delucis#122)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored May 4, 2024
1 parent 93a5ca7 commit 09d5275
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 18 deletions.
7 changes: 0 additions & 7 deletions .changeset/large-dolls-burn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wet-chairs-cry.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/astro-embed-integration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 `<LinkPreview>` component instead of rendering an `<a>` 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
Expand Down
4 changes: 2 additions & 2 deletions packages/astro-embed-integration/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/astro-embed-link-preview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 `<LinkPreview>` description configurable.

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-embed-link-preview/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
8 changes: 8 additions & 0 deletions packages/astro-embed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions packages/astro-embed/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 09d5275

Please sign in to comment.