Wiki source code of Release Notes for Cristal 0.11

Last modified by Marius Dumitru Florea on 2024/10/29

Hide last authors
Manuel Leduc 1.1 1 {{velocity}}
2 #set ($rnObject = $doc.getObject('ReleaseNotes.Code.ReleaseNoteClass'))
3 #set ($product = $rnObject.product)
4 #set ($version = $rnObject.version)
5 #set ($versionPrefix = $stringtool.substringBefore($version, '-'))
6 #set ($versionParts = $stringtool.split($versionPrefix, '.'))
7 #set ($isRC = $version.contains('rc'))
8 #set ($isFinal = !$isRC)
9 #set ($isFirstFinal = $versionParts.size() == 2 && $isFinal)
10 {{/velocity}}
11
12 {{box cssClass="floatinginfobox" title="**Contents**"}}
13 {{toc/}}
14 {{/box}}
15
Manuel Leduc 3.1 16 This is the release notes for [[Cristal>>http://cristal.xwiki.org]].
Manuel Leduc 1.1 17
Marius Dumitru Florea 6.1 18 This release brings a couple of new features, such as the ability to delete Cristal pages for multiple backends, limited support for authentication and linking to attachments while editing. Besides this, the CSS has been polished to bring the Look & Feel closer to the proposed designs.
Manuel Leduc 1.1 19
Manuel Leduc 3.1 20 {{info}}
21 **Note for translators:** While there is currently no easy way to switch languages, we started extracting translatable text info a format that can be exploited by [[Weblate>>https://weblate.org/]]. You can already **[[start translating a few translation keys>>https://l10n.xwiki.org/projects/xwiki-contrib/cristal/]]**.
22 {{/info}}
23
24 {{warning}}
25 Cristal is still under heavy development.
26
27 * All APIs are subject to be changed without notice
28 * A lot of features are subject to limitations that will be removed over time
29 * See the [[Roadmap>>design:Proposal.Cristal.Roadmap.WebHome]] page to see what we plan to work on in the next releases
30 {{/warning}}
31
32
Manuel Leduc 1.1 33 {{comment}}
34 Uncomment when there's at least one issue listed in the table!
35 {{error}}
36 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.
37
38 {{velocity}}
39 #if ($isFirstFinal)
40 #set ($affectedVersions = "${version}-rc-1, ${version}")
41 #set ($fixVersionJQL = " and (fixVersion != ${version}-rc-1 or fixVersion is empty)")
42 #else
43 #set ($affectedVersions = "${version}")
44 #set ($fixVersionJQL = "")
45 #end
46 {{jira id="xwikiorg" source="jql"}}
47 category = 10000 and affectedVersion in ($affectedVersions)${fixVersionJQL}and priority = Blocker and resolution in (Fixed, Unresolved) and component != "Development Issues only"
48 {{/jira}}
49 {{/velocity}}
50 {{/error}}
51 {{/comment}}
52
Manuel Leduc 3.1 53 = New and Noteworthy (since {{velocity}}$product{{/velocity}} 0.10) =
Manuel Leduc 1.1 54
Marius Dumitru Florea 5.1 55 [[Full list of issues fixed and Dashboard for 0.11>>https://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=15811]].
Manuel Leduc 1.1 56
57 {{releasenotechanges/}}
58
Manuel Leduc 3.1 59 {{comment}}
Manuel Leduc 1.1 60 === Moved Modules ===
61
62 <description deprecated, retired and moved projects>
Manuel Leduc 3.1 63 {{/comment}}
Manuel Leduc 1.1 64
65 === Upgrades ===
66
Manuel Leduc 3.1 67 The following runtime dependencies have been upgraded (they have a different release cycle than [[Cristal>>http://cristal.xwiki.org]]):
Manuel Leduc 1.1 68
Manuel Leduc 3.1 69 (% class="upgrades" %)
70 (((
71 {{jira url="https://jira.xwiki.org" source="jql" style="list"}}
Manuel Leduc 4.1 72 project = CRISTAL AND issuetype = Task AND resolution != Duplicate AND fixVersion = 0.11 AND component = " Dependency Upgrades"
Manuel Leduc 3.1 73 {{/jira}}
74 )))
Manuel Leduc 1.1 75
Manuel Leduc 3.1 76 {{comment}}
Manuel Leduc 1.1 77 = Translations =
78
79 The following translations have been updated:
80
81 {{language codes="none, none"/}}
Manuel Leduc 3.1 82 {{/comment}}
Manuel Leduc 1.1 83
84 {{comment}}
85 TODO: uncomment and update with proper link when the report is ready.
86
87 = Tested Browsers & Databases =
88
89 {{include reference="TestReports.<test report page>"/}}
90 {{/comment}}
91
92 {{comment}}
93 TODO: uncomment and update with proper links when the report is ready.
94
95 = Performances tests compared to <last super stable version> =
96
97 {{display reference="test:Performances.Jetty HSQLDB single wiki xxx to yyy" section="HSummary"/}}
98
99 More details on [[performance comparison on single wiki between x.x and y.y>>test:Performances.Jetty HSQLDB single wiki xxx to yyy]].
100 {{/comment}}
101
102 = Security Issues =
103
104 Security issues are not listed in issue lists or dashboards to avoid disclosing ways to use them, but they will appear automatically in them once they're disclosed. See the [[XWiki Security Policy>>dev:Community.SecurityPolicy.WebHome]] for more details.
105
106 = Known issues =
107
Manuel Leduc 3.1 108 * [[Bugs we know about>>https://jira.xwiki.org/issues/?jql=issuetype%20%3D%20Bug%20AND%20resolution%20%3D%20Unresolved%20and%20project%20%3D%20CRISTAL%20ORDER%20BY%20updated%20DESC]]
Manuel Leduc 1.1 109
Manuel Leduc 3.1 110 {{comment}}
Manuel Leduc 1.1 111 = Backward Compatibility and Migration Notes =
112
113 == General Notes ==
114
115 * When upgrading make sure you compare and merge the following XWiki configuration files since some parameters may have been modified, removed or added:
116 ** ##xwiki.cfg##
117 ** ##xwiki.properties##
118 ** ##web.xml##
119 ** ##hibernate.cfg.xml##
120 * Add ##xwiki.store.migration=1## in ##xwiki.cfg## so that XWiki will attempt to automatically migrate your current database to any new schema. Make sure you backup your Database before doing anything.
121
122 == Issues specific to {{velocity}}$product $version{{/velocity}} ==
123
124 <issues specific to the project>
125
126 == API Breakages ==
127
128 The following APIs were modified since {{velocity}}$product{{/velocity}} <version - 1>:
Manuel Leduc 3.1 129 {{/comment}}
Manuel Leduc 1.1 130 {{comment}}
131 Remove!
132 {{velocity}}
133 {{backwardCompatibilityReport134 version="$version"/}}
134 {{/velocity}}
135 {{/comment}}
136
137 = Credits =
138
Manuel Leduc 3.1 139 (% class="col-sm-3" %)
140 (((
141 {{display reference="cristal:Main.France2030Support.WebHome"/}}
142 )))
Manuel Leduc 1.1 143
Manuel Leduc 3.1 144
145 (% class="col-sm-9" %)
146 (((
147 The following people have contributed code to this release (sorted alphabetically):
148
Marius Dumitru Florea 8.1 149 * Manuel Leduc
150 * Marius Dumitru Florea
151 * Pierre Jeanjean
152 * Thiago Krieck
Manuel Leduc 3.1 153 )))

Get Connected