Skip to content

Commit 00b4887

Browse files
KianNHjonesphillip
authored andcommitted
[Docs Site] Remove API Deprecations from top-level release notes feed (#19903)
1 parent 47c2063 commit 00b4887

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/content/docs/fundamentals/api/reference/deprecations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { ProductChangelog } from "~/components";
1414
Cloudflare occasionally makes updates to our APIs that result in behavior changes or deprecations. When this happens, we will communicate when the API will no longer be available and whether there will be a replacement.
1515

1616
:::note
17-
Subscribe to all API deprecation posts via [RSS](/release-notes/index.xml).
17+
Subscribe to all API deprecation posts via [RSS](/fundamentals/api/reference/deprecations/index.xml).
1818
:::
1919

2020
<ProductChangelog />

src/pages/release-notes/index.xml.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ export const GET: APIRoute = async (context) => {
1717

1818
marked.use({ walkTokens });
1919

20-
const changelogs = await getCollection("changelogs");
20+
const changelogs = await getCollection("changelogs", (e) => {
21+
return e.id !== "api-deprecations";
22+
});
2123

2224
changelogs.push(await getWranglerChangelog());
2325

0 commit comments

Comments
 (0)