Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { ProductChangelog } from "~/components";
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.

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

<ProductChangelog />
4 changes: 3 additions & 1 deletion src/pages/release-notes/index.xml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ export const GET: APIRoute = async (context) => {

marked.use({ walkTokens });

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

changelogs.push(await getWranglerChangelog());

Expand Down
Loading