Last modified by Vincent Massol on 2021/04/02

<
From version < 9.4 >
edited by Vincent Massol
on 2021/04/02
To version < 9.5
edited by Vincent Massol
on 2021/04/02
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,3 +1,12 @@
1 +{{velocity}}
2 +#set ($version = $doc.getObject('ReleaseNotes.Code.ReleaseNoteClass').version)
3 +#set ($versionPrefix = $stringtool.substringBefore($version, '-'))
4 +#set ($versionParts = $stringtool.split($versionPrefix, '.'))
5 +#set ($isRC = $version.contains('rc'))
6 +#set ($isFinal = !$isRC)
7 +#set ($isFirstFinal = $versionParts.size() == 2 && $isFinal)
8 +{{/velocity}}
9 +
1 1  {{box cssClass="floatinginfobox" title="**Contents**"}}
2 2  {{toc/}}
3 3  {{/box}}
... ... @@ -9,9 +9,18 @@
9 9  {{error}}
10 10  The following regressions were introduced in this release (and found after it was released). Please check them out and if they impact you we recommend waiting to upgrade to a version where they are fixed.
11 11  
21 +{{velocity}}
22 +#if ($isFirstFinal)
23 + #set ($affectedVersions = "${version}-rc-1, ${version}")
24 + #set ($fixVersionJQL = " and fixVersion != ${version}-rc-1 ")
25 +#else
26 + #set ($affectedVersions = "${version}")
27 + #set ($fixVersionJQL = "")
28 +#end
12 12  {{jira id="xwikiorg" source="jql"}}
13 -category = 10000 and affectedVersion in (13.2-rc-1, 13.2) and fixVersion != 13.2-rc-1 and priority = Blocker and resolution in (Fixed, Unresolved)
30 +category = 10000 and affectedVersion in ($affectedVersions)${fixVersionJQL}and priority = Blocker and resolution in (Fixed, Unresolved)
14 14  {{/jira}}
32 +{{/velocity}}
15 15  {{/error}}
16 16  
17 17  = New and Noteworthy (since XWiki 13.1) =

Get Connected