diff --git a/newsfragments/569.changed.md b/newsfragments/569.removed.md similarity index 100% rename from newsfragments/569.changed.md rename to newsfragments/569.removed.md diff --git a/newsfragments/574.changed.md b/newsfragments/574.changed.md deleted file mode 100644 index 1d6e8d81d..000000000 --- a/newsfragments/574.changed.md +++ /dev/null @@ -1 +0,0 @@ -Removed `hostAliases` support from Matrix RTC SFU as it doesn't make outbound requests. diff --git a/newsfragments/574.removed.md b/newsfragments/574.removed.md new file mode 100644 index 000000000..397cde4a3 --- /dev/null +++ b/newsfragments/574.removed.md @@ -0,0 +1 @@ +Remove `hostAliases` support from Matrix RTC SFU as it doesn't make outbound requests. diff --git a/newsfragments/600.changed.md b/newsfragments/600.changed.md new file mode 100644 index 000000000..baa83c980 --- /dev/null +++ b/newsfragments/600.changed.md @@ -0,0 +1 @@ +Tweak changelog sections ordering. diff --git a/pyproject.toml b/pyproject.toml index ac2554358..57a85c216 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -93,13 +93,13 @@ name = "Added" showcontent = true [[tool.towncrier.type]] -directory = "fixed" -name = "Fixed" +directory = "changed" +name = "Changed" showcontent = true [[tool.towncrier.type]] -directory = "changed" -name = "Changed" +directory = "fixed" +name = "Fixed" showcontent = true [[tool.towncrier.type]] diff --git a/scripts/towncrier_to_helm_annotation.py b/scripts/towncrier_to_helm_annotation.py index 8779fa740..669ca113f 100755 --- a/scripts/towncrier_to_helm_annotation.py +++ b/scripts/towncrier_to_helm_annotation.py @@ -25,7 +25,7 @@ def find_news_fragments(root_dir): ) ) new_fragments = list({"description": description, "kind": kind} for description, kind in unique_new_fragments) - kind_order = ["security", "deprecated", "added", "fixed", "changed", "removed"] + kind_order = ["security", "deprecated", "added", "changed", "fixed", "removed"] # We order the list by kind and description alphabetically new_fragments.sort(key=lambda x: str(kind_order.index(x["kind"])) + x["description"]) return new_fragments