From: Nicki Křížek Date: Tue, 13 Aug 2024 15:28:50 +0000 (+0200) Subject: Omit MR link from release notes X-Git-Tag: v9.21.1~34^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=993ba7cc7fb45d5b58c26ac95dc8e881477d10f1;p=thirdparty%2Fbind9.git Omit MR link from release notes When manually handling the release notes (due to rst markup, fixups etc.), the different MR number for backports causes needless friction. Remove the reference from release notes and keep it only in changelog which isn't manually redacted. --- diff --git a/contrib/gitchangelog/relnotes.rc.py b/contrib/gitchangelog/relnotes.rc.py index 8430c7f70c3..b2dae3a7107 100644 --- a/contrib/gitchangelog/relnotes.rc.py +++ b/contrib/gitchangelog/relnotes.rc.py @@ -46,7 +46,7 @@ body_process = ( r" :gl:`\3`", ) | ReSub(r"\n*Merge branch '[^']+' into [^\n]+", r"") - | ReSub(r"\n*See merge request isc-projects/bind9(!\d+)", r" :gl:`\1`") + | ReSub(r"\n*See merge request isc-projects/bind9(!\d+)", r"") | Wrap(regexp="\n\n", separator="\n\n") | strip )