Skip to content

Commit 90f0aae

Browse files
[ci] release (#19)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 643f9b8 commit 90f0aae

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

.changeset/shiny-dingos-remember.md

-25
This file was deleted.

packages/astro-remote/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# astro-remote
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- 643f9b8: This release updates all dependencies and resolves some typing issues.
8+
9+
**New Features**
10+
11+
- [Marked](https://marked.js.org/using_pro) extensions are now supported via the `marked` prop.
12+
13+
```astro
14+
---
15+
import markedAlert from 'marked-alert'
16+
const readme = await fetch("https://raw.githubusercontent.com/natemoo-re/astro-remote/main/packages/astro-remote/README.md").then((res) => res.text());
17+
---
18+
<Markdown
19+
content={readme}
20+
marked={{ extensions: [markedAlert()] }}
21+
/>
22+
```
23+
24+
**Breaking Changes**
25+
26+
- The minimum required Node version is now `v18.14.1` to align with Astro's [current requirements](https://docs.astro.build/en/tutorial/1-setup/1/#nodejs). This is enforced via an `engines` constraint.
27+
328
## 0.2.4
429
530
### Patch Changes

packages/astro-remote/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "astro-remote",
33
"description": "Render remote HTML or Markdown content in Astro with full control over the output.",
44
"type": "module",
5-
"version": "0.2.4",
5+
"version": "0.3.0",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/natemoo-re/astro-remote"

0 commit comments

Comments
 (0)