From 2a01d29cfa9343e536a38ea3abd18756173ab5e4 Mon Sep 17 00:00:00 2001 From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Date: Mon, 21 Jul 2025 13:32:54 -0700 Subject: [PATCH 1/3] remove `rss` object from Update page --- components/update.mdx | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) diff --git a/components/update.mdx b/components/update.mdx index 1f7fa57fa..6e13f200c 100644 --- a/components/update.mdx +++ b/components/update.mdx @@ -29,8 +29,7 @@ Use the `Update` component to display changelog entries, version updates, and re ```mdx Update example - This is how you use a changelog with a label, description, - and tags. + This is an update with a label, description, and tag. ``` @@ -49,28 +48,3 @@ Use multiple `Update` components to create [changelogs](/guides/changelogs). Description of the update. Appears below the label and tag. - - - Title and description that will appear in the RSS feed entry for the update. - - ```mdx wrap - - # What's New in v1.0.1 - - * Bug fixes - * Improvements - - ``` - -```xml Example Update item in RSS feed - - <![CDATA[v1.0.1 released]]> - - https://mintlify.com/changelog#v101 - https://mintlify.com/changelog#v101 - Fri, 20 Jun 2025 21:32:19 GMT - -``` - - Learn more about [subscribable changelogs](/guides/changelogs#subscribable-changelogs). - From 47260872a271ee0cc493bf6a1c5d9dad3d4253b3 Mon Sep 17 00:00:00 2001 From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Date: Mon, 21 Jul 2025 13:44:34 -0700 Subject: [PATCH 2/3] update changelog info --- guides/changelogs.mdx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/guides/changelogs.mdx b/guides/changelogs.mdx index 168b6fc6f..c0e749e52 100644 --- a/guides/changelogs.mdx +++ b/guides/changelogs.mdx @@ -100,8 +100,13 @@ Add `tags` to your `Update` components to replace the table of contents with tag ### Subscribable changelogs -Using `Update` components creates a subscribable RSS feed at your page URL + `/rss.xml`. For example, `mintlify.com/docs/changelog/rss.xml`. New updates are automatically included in the feed when published. +Using `Update` components creates a subscribable RSS feed at your page URL with `/rss.xml` appended. For example, `mintlify.com/docs/changelog/rss.xml`. +Entries are added to the RSS feed when new `Update` components are published and when new headings are added inside of existing `` tags. + +The top level headings of `Update` components are used as the titles of RSS feed entries, and the entries link to their heading anchors in your docs. + +TODO: ```xml Example RSS feed From a7bc940fd8b2196fe5dfd328ce12f4fb4ec14c6f Mon Sep 17 00:00:00 2001 From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Date: Mon, 21 Jul 2025 14:25:38 -0700 Subject: [PATCH 3/3] update example RSS feed --- guides/changelogs.mdx | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/guides/changelogs.mdx b/guides/changelogs.mdx index c0e749e52..3b475121d 100644 --- a/guides/changelogs.mdx +++ b/guides/changelogs.mdx @@ -106,26 +106,25 @@ Entries are added to the RSS feed when new `Update` components are published and The top level headings of `Update` components are used as the titles of RSS feed entries, and the entries link to their heading anchors in your docs. -TODO: ```xml Example RSS feed - - - <![CDATA[Product Updates]]> - - https://mintlify-changelogs-guide.mintlify.app - RSS for Node - Fri, 20 Jun 2025 21:36:14 GMT - - - https://mintlify-changelogs-guide.mintlify.app - - <![CDATA[Subscribable changelogs]]> - - https://mintlify-changelogs-guide.mintlify.app/changelog#june-20-2025 - https://mintlify-changelogs-guide.mintlify.app/changelog#june-20-2025 - Fri, 20 Jun 2025 21:04:47 GMT - - + + + + <![CDATA[Product updates]]> + + https://mintlify.com/docs + RSS for Node + Mon, 21 Jul 2025 21:21:47 GMT + + + https://mintlify.com/docs + + <![CDATA[June 2025]]> + https://mintlify.com/docs/changelog#june-2025 + https://mintlify.com/docs/changelog#june-2025 + Mon, 23 Jun 2025 16:54:22 GMT + + ```