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
File renamed without changes.
1 change: 0 additions & 1 deletion newsfragments/574.changed.md

This file was deleted.

1 change: 1 addition & 0 deletions newsfragments/574.removed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove `hostAliases` support from Matrix RTC SFU as it doesn't make outbound requests.
1 change: 1 addition & 0 deletions newsfragments/600.changed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Tweak changelog sections ordering.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down
2 changes: 1 addition & 1 deletion scripts/towncrier_to_helm_annotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading