docs: update releases notes

- remove duplicate deprecations and upgrade procedures
- add emijeeezz
This commit is contained in:
jo 2022-02-21 15:05:24 +01:00 committed by Kyle Robbertze
parent 9ebd2c85ef
commit 3f6438383f
17 changed files with 322 additions and 819 deletions

View file

@ -40,6 +40,22 @@ const config = {
path: "../docs",
sidebarPath: require.resolve("./sidebars.js"),
editUrl: `${vars.repository.href}/blob/main/docs`,
async sidebarItemsGenerator({
defaultSidebarItemsGenerator,
...args
}) {
const items = await defaultSidebarItemsGenerator(args);
return items.map((item) => {
// Reverse releases pages ordering
if (item.type === "category" && item.label === "Releases") {
return { ...item, items: item.items.reverse() };
}
return item;
});
},
},
blog: false,
theme: {