From 4c6d2095cf0883cec57888db384dd04b2c2fdfd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Gajdu=C5=A1ek?= Date: Fri, 3 Jul 2026 16:29:36 +0200 Subject: [PATCH] Fix malformed cf_12 filter in release notes Redmine link v[cf_12]= needs to be v[cf_12][]= (array form) to match Redmine's expected filter param format, otherwise the filter is silently dropped and the Issues page Filters section renders empty. --- scripts/release_notes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release_notes.rb b/scripts/release_notes.rb index 7bb8a0e207..45e371777e 100755 --- a/scripts/release_notes.rb +++ b/scripts/release_notes.rb @@ -88,7 +88,7 @@ def gather_issues(offset = 0) puts end -puts "*A full list of changes in #{@current_release_name} is available via [Redmine](https://projects.theforeman.org/issues?set_filter=1&sort=id%3Adesc&status_id=closed&f[]=cf_12&op[cf_12]=%3D&v[cf_12]=#{@current_release_id})*" +puts "*A full list of changes in #{@current_release_name} is available via [Redmine](https://projects.theforeman.org/issues?set_filter=1&sort=id%3Adesc&status_id=closed&f[]=cf_12&op[cf_12]=%3D&v[cf_12][]=#{@current_release_id})*" puts "\n----------[End of notes]----------\n"