+ {CHANGELOG_SECTIONS.map((section) => (
+
+ {section.title}
+
+ {section.items.map((item, index) => {
+ const key = `${section.title}-${index}`;
+ if (typeof item === "string") {
+ return - {item}
;
+ }
+ return (
+ -
+
{item.text}
+ {item.note ? {item.note}
: null}
+
+ );
+ })}
+
+
+ ))}
+
+