Version 12.1 by Guillaume Delhumeau on 2016/02/18

Hide last authors
Ecaterina Moraru (Valica) 1.1 1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 This is the release notes for [[XWiki Commons>>http://commons.xwiki.org]], [[XWiki Rendering>>http://rendering.xwiki.org]], [[XWiki Platform>>http://platform.xwiki.org]] and [[XWiki Enterprise>>http://enterprise.xwiki.org]]. They share the same release notes as they are released together and have the same version.
6
7 <insert description of release here>
8
9 = New and Noteworthy (since XWiki <version - 1>) =
10
11 [[Full list of issues fixed and Dashboard for <version>>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=<fill id here>]].
12
13 == <feature N> ==
14
15 <description of feature N>
16
Guillaume Delhumeau 12.1 17 == LESS Module ==
18
19 * For performances reasons, we have set a limit for the number of LESS CSS compilations that can be done simultaneously.
20 * For the same reason, the LESS cache is not cleared anymore at XWiki launch.
21 For more informations about this, please see [[extensions:Extension.LESS Module||anchor="Cache"]].
22
Ecaterina Moraru (Valica) 1.1 23 == Miscellaneous ==
24
Vincent Massol 8.1 25 * The "Create Page" Panel now supports creating Nested Spaces (i.e. you can use references in the Space input field and you now need to escape special characters if you wish to have a space containing '.' or ':' characters for example).
Vincent Massol 9.1 26 * The [[Active Installs>>extensions:Extension.Active Installs Server Application]] Dashboard now displays the Java versions in an aggregated format, displaying only major + minor (e.g. "1.7", "1.8"). This makes it simpler to analyze the versions of Java used for XWiki.
Eduard Moraru 9.5 27 * When deleting a non-terminal page and the only child of that page is the 'WebPreferences' terminal page, the 'Affect children' checkbox will be checked by default. Normally, it would be unchecked, but in this case we`ve noticed that it`s very easy to forget about that document (since it's hidden and automatically created when going into 'Page Administration') and your deleted page might still show up in some places because of that leftover. You can still uncheck it if you know what you are doing.
Vincent Massol 9.2 28
Ecaterina Moraru (Valica) 1.1 29 See the [[full list of JIRA issues>>http://jira.xwiki.org/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+in+%28XCOMMONS%2C+XRENDERING%2C+XWIKI%2C+XE%29+and+status+%3D+Closed+and+resolution+%3D+Fixed+and+fixVersion+%3D+%22<version>%22&tempMax=1000]] fixed in this release.
30
31 = For Developers =
32
33 == <developer feature N> ==
34
35 <description of developer feature N>
36
37 == Deprecated and Retired projects ==
38
39 <description of deprecated and retired projects>
40
41 == Upgrades ==
42
43 The following dependencies have been upgraded:
44
Thomas Mortagne 7.1 45 * [[slf4j 1.7.16>>http://jira.xwiki.org/browse/XCOMMONS-915]]
Thomas Mortagne 10.1 46 * [[Logback 1.1.5>>http://jira.xwiki.org/browse/XCOMMONS-915]]
Thomas Mortagne 3.1 47 * [[Doxia 1.17>>http://jira.xwiki.org/browse/XRENDERING-431]]
Thomas Mortagne 4.1 48 * [[Aether 1.1.0>>http://jira.xwiki.org/browse/XCOMMONS-913]]
Ecaterina Moraru (Valica) 1.1 49
50 == Miscellaneous ==
51
Thomas Mortagne 7.1 52 * Added [[new binding>>extensions:Extension.Watchlist Application||anchor="HAdministrators:CustomizingtheWatchListemailtemplate"]] in the WatchList email template: subscriberReference. For example, this can be used to create a URL to the subscriber (i.e. user receiving the message) profile, where the notifications can be disabled:(((
Alex Cotiugă 4.2 53 {{code}}
54 $xwiki.getURL($subscriberReference, 'view', 'category=notification')
55 {{/code}}
Vincent Massol 4.4 56 )))
Ecaterina Moraru (Valica) 1.1 57
58 = Translations =
59
60 The following translations have been updated:
61
62 {{language codes="none, none"/}}
63
64 = Tested Browsers & Databases =
65
66 {{warning}}
67 The QA Tests are executed after the release has been done. Thus, they are being prepared now and will be published soon.
68 {{/warning}}
69
70 {{comment}}
71 TODO: uncomment and update with proper link when the report is ready.
72 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
73 {{/comment}}
74
75 = Performances tests compared to <last super stable version> =
76
77 <a summary of the comparison with latest super stable version>
78
79 More details on <link to the test report>.
80
81 = Known issues =
82
83 * [[Bugs we know about>>http://jira.xwiki.org/secure/IssueNavigator.jspa?reset=true&jqlQuery=category+%3D+%22Top+Level+Projects%22+AND+issuetype+%3D+Bug+AND+resolution+%3D+Unresolved+ORDER+BY+updated+DESC]]
84
85 = Backward Compatibility and Migration Notes =
86
87 == General Notes ==
88
89 When upgrading make sure you compare your ##xwiki.cfg##, ##xwiki.properties## and ##web.xml## files with the newest version since some configuration parameters may have been modified or added. Note that you should add ##xwiki.store.migration=1## so that XWiki will attempt to automatically migrate your current database to the new schema. Make sure you backup your Database before doing anything.
90
Vincent Massol 8.1 91 == Issues specific to XWiki 8.0 Milestone 2 ==
Ecaterina Moraru (Valica) 1.1 92
Vincent Massol 8.1 93 * If you wish to use '.' or ':' characters in the "Create Page" Panel you'll now need to escape them. For example: ##My\.Space\:name##
Eduard Moraru 9.4 94 * If, in your application/custom code, you were using ##XWiki.EntityReferenceTree## in the JavaScript API, you will need to update your code to the new structure of the ##children## property of an ##XWiki.EntityReferenceTreeNode##. Previously, the ##children## property was a map of ##<nameString, XWiki.EntityReferenceTreeNode>##. Now, it was changed to a map of ##<nameString, <XWiki.EntityType, XWiki.EntityReferenceTreeNode>>## because, at each level, you can have both a ##XWiki.EntityType.DOCUMENT## and a ##XWiki.EntityType.SPACE## node with the same name (i.e. siblings) and the old implementation did not consider this case, thus creating a bug. Using the new structure, the bug is fixed, but old code had/has to be updated.
Ecaterina Moraru (Valica) 1.1 95
96 == API Breakages ==
97
98 The following APIs were modified since <project> <version - 1>:
99
100 {{code language="none"}}
101 <clirr output here>
102 {{/code}}

Get Connected