Skip to content

Commit

Permalink
Version Packages (#76)
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 Mar 24, 2024
1 parent 275658f commit e5f4d84
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 64 deletions.
5 changes: 0 additions & 5 deletions .changeset/eight-bikes-wait.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/great-guests-guess.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/loud-chefs-trade.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/neat-islands-shop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/orange-trees-destroy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-snails-press.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sixty-peas-glow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-donuts-vanish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tidy-ligers-join.md

This file was deleted.

36 changes: 36 additions & 0 deletions packages/mdxts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# mdxts

## 0.11.0

### Minor Changes

- 90863ba: Adds RSS feed helper for `createSource` and `mergeSources`:

```js
// app/rss.xml/route.js
import { allData } from "data";

export async function GET() {
const feed = allData.rss({
title: "MDXTS - The Content & Documentation SDK for React",
description: "Type-safe content and documentation.",
copyright: `©${new Date().getFullYear()} @souporserious`,
});
return new Response(feed, {
headers: {
"Content-Type": "application/rss+xml",
},
});
}
```

- 4121eb9: Replaces `remark-typography` with the more popular `remark-smartypants` package.
- 7367b1d: Adds ISO 8601 duration to `readingTime` metadata for easier use with `time` HTML element.
- e04f4f6: Adds `createdAt`, `updatedAt`, and `authors` fields to `createSource` item. This implementation is inspired by [unified-infer-git-meta](https://github.com/unifiedjs/unified-infer-git-meta).
- 9c6d65a: Adds `readingTime` field to `createSource` item using [rehype-infer-reading-time-meta](https://github.com/rehypejs/rehype-infer-reading-time-meta).
- fb0299d: Adds support for Codesandbox embeds in MDX.

### Patch Changes

- 6e68e11: Fixes an issue where saving content did not trigger a fast refresh locally. This adds a web socket server component to the Content component to ensure a refresh is always triggered.
- fafdcc6: Adds default `feedLinks.rss` option when creating rss feeds.
- df41a98: Fixes empty `createSource` when targeting JavaScript/TypeScript without an `index` file.

## 0.10.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/mdxts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mdxts",
"version": "0.10.1",
"version": "0.11.0",
"description": "The Content & Documentation SDK for React",
"author": "Travis Arnold",
"license": "MIT",
Expand Down

0 comments on commit e5f4d84

Please sign in to comment.