aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts
diff options
context:
space:
mode:
Diffstat (limited to 'devscripts')
-rw-r--r--devscripts/changelog_override.json21
-rw-r--r--devscripts/make_changelog.py14
2 files changed, 29 insertions, 6 deletions
diff --git a/devscripts/changelog_override.json b/devscripts/changelog_override.json
index 73225bdb9..df80f45e0 100644
--- a/devscripts/changelog_override.json
+++ b/devscripts/changelog_override.json
@@ -35,5 +35,26 @@
"when": "8417f26b8a819cd7ffcd4e000ca3e45033e670fb",
"short": "Add option `--color` (#6904)",
"authors": ["Grub4K"]
+ },
+ {
+ "action": "change",
+ "when": "7b37e8b23691613f331bd4ebc9d639dd6f93c972",
+ "short": "Improve `--download-sections`\n - Support negative time-ranges\n - Add `*from-url` to obey time-ranges in URL"
+ },
+ {
+ "action": "change",
+ "when": "1e75d97db21152acc764b30a688e516f04b8a142",
+ "short": "[extractor/youtube] Add `ios` to default clients used\n - IOS is affected neither by 403 nor by nsig so helps mitigate them preemptively\n - IOS also has higher bit-rate 'premium' formats though they are not labeled as such"
+ },
+ {
+ "action": "change",
+ "when": "f2ff0f6f1914b82d4a51681a72cc0828115dcb4a",
+ "short": "[extractor/motherless] Add gallery support, fix groups (#7211)",
+ "authors": ["rexlambert22", "Ti4eeT4e"]
+ },
+ {
+ "action": "change",
+ "when": "a4486bfc1dc7057efca9dd3fe70d7fa25c56f700",
+ "short": "[misc] Revert \"Add automatic duplicate issue detection\""
}
]
diff --git a/devscripts/make_changelog.py b/devscripts/make_changelog.py
index 2fcdc06d7..0bcfa6ae7 100644
--- a/devscripts/make_changelog.py
+++ b/devscripts/make_changelog.py
@@ -196,7 +196,7 @@ class Changelog:
for commit_infos in cleanup_misc_items.values():
sorted_items.append(CommitInfo(
'cleanup', ('Miscellaneous',), ', '.join(
- self._format_message_link(None, info.commit.hash)
+ self._format_message_link(None, info.commit.hash).strip()
for info in sorted(commit_infos, key=lambda item: item.commit.hash or '')),
[], Commit(None, '', commit_infos[0].commit.authors), []))
@@ -205,10 +205,10 @@ class Changelog:
def format_single_change(self, info):
message = self._format_message_link(info.message, info.commit.hash)
if info.issues:
- message = f'{message} ({self._format_issues(info.issues)})'
+ message = message.replace('\n', f' ({self._format_issues(info.issues)})\n', 1)
if info.commit.authors:
- message = f'{message} by {self._format_authors(info.commit.authors)}'
+ message = message.replace('\n', f' by {self._format_authors(info.commit.authors)}\n', 1)
if info.fixes:
fix_message = ', '.join(f'{self._format_message_link(None, fix.hash)}' for fix in info.fixes)
@@ -217,14 +217,16 @@ class Changelog:
if authors != info.commit.authors:
fix_message = f'{fix_message} by {self._format_authors(authors)}'
- message = f'{message} (With fixes in {fix_message})'
+ message = message.replace('\n', f' (With fixes in {fix_message})\n', 1)
- return message
+ return message[:-1]
def _format_message_link(self, message, hash):
assert message or hash, 'Improperly defined commit message or override'
message = message if message else hash[:HASH_LENGTH]
- return f'[{message}]({self.repo_url}/commit/{hash})' if hash else message
+ if not hash:
+ return f'{message}\n'
+ return f'[{message}\n'.replace('\n', f']({self.repo_url}/commit/{hash})\n', 1)
def _format_issues(self, issues):
return ', '.join(f'[#{issue}]({self.repo_url}/issues/{issue})' for issue in issues)