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 c55c541 commit 5118796Copy full SHA for 5118796
src/components/ProductChangelog.astro
@@ -43,6 +43,11 @@ if (page.data.changelog_product_area_name) {
43
wranglerOnly: true,
44
};
45
({ changelogs } = await getChangelogs(opts));
46
+ } else if (name === "api-deprecations") {
47
+ const opts = {
48
+ deprecationsOnly: true,
49
+ };
50
+ ({ changelogs } = await getChangelogs(opts));
51
} else {
52
const opts = {
53
filter: (entry: CollectionEntry<"changelogs">) => {
0 commit comments