We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6427da commit a8b3212Copy full SHA for a8b3212
src/components/AvailableChangelogFeeds.astro
@@ -95,6 +95,18 @@ const productsByGroup = Object.entries(
95
</p>
96
</Aside>
97
)}
98
+ {group === "Cloudflare essentials" && (
99
+ <Aside type="note" title="API deprecations feed">
100
+ <p>
101
+ Cloudflare also maintains a separate{" "}
102
+ <a href="/fundamentals/api/reference/deprecations/">
103
+ API deprecations page.
104
+ </a>
105
+ <br />
106
+ <RSSButton href="/fundamentals/api/reference/deprecations/index.xml" />
107
+ </p>
108
+ </Aside>
109
+ )}
110
</>
111
))
112
}
src/components/RSSButton.astro
@@ -16,6 +16,7 @@ const props = z
16
);
17
18
const input = props.parse(Astro.props);
19
+console.log(input);
20
---
21
22
<a
0 commit comments