Version 10.1 by Vincent Massol on 2013/10/08

Hide last authors
Thomas Mortagne 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 5.2) =
10
11 [[Full list of issues fixed and Dashboard for 5.3>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=11698]].
12
13 == <feature N> ==
14
15 <description of feature N>
16
17 == Miscellaneous ==
18
19 <insert misc user stuff and important bug fix descriptions here in a list, when they are too small to warrant a section by themselves - Change the version in the URL below!>
20
21 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%2C+XEM%29+and+status+%3D+Closed+and+resolution+%3D+Fixed+and+fixVersion+%3D+%22<version>%22&tempMax=1000]] fixed in this release.
22
23 = For Developers =
24
Thomas Mortagne 7.1 25 == DocumentReference Locale now taken into account in XWiki#exists and XWiki#getDocument ==
Thomas Mortagne 1.1 26
Vincent Massol 9.1 27 You can now use ##XWiki#exist## method to check for some translation existence too, before that the only way was to either load the XWikiDocument or write your own XWQL or HQL query.
Thomas Mortagne 1.1 28
Vincent Massol 9.1 29 ##XWiki#getDocument## has been modified accordingly too to be consistent so you don't need to go through ##XWikiDocument#getTranslatedDocument## anymore.
Thomas Mortagne 7.1 30
31 It also mean that you need to be careful of what Locale is in the DocumentReference with those APIs now.
32
Vincent Massol 9.1 33 == XWiki Enterprise Archetype ==
34
35 A new archetype is now available to easily create your own product based on XWiki Enterprise. To use:
36
37 {{code}}
38 mvn archetype:generate \
39 -DarchetypeArtifactId=xwiki-enterprise-archetype \
40 -DarchetypeGroupId=org.xwiki.enterprise \
41 -DarchetypeVersion=5.3-milestone-1
42 {{/code}}
43
Vincent Massol 10.1 44 == XAR plugin improvements ==
45
46 The XAR plugin now provides the ability to change values in the XML pages. For example:
47
48 {{code}}
49 <plugin>
50 <groupId>org.xwiki.commons</groupId>
51 <artifactId>xwiki-commons-tool-xar-plugin</artifactId>
52 <configuration>
53 <transformations>
54 <transformation>
55 <file>Blog/WebHome.xml</file>
56 <xpath>/xwikidoc/object/property/itemsPerPage</xpath>
57 <value>100</value>
58 </transformation>
59 <transformation>
60 <artifact>org.xwiki.platform:xwiki-platform-administration-ui</artifact>
61 <file>XWiki/XWikiPreferences.xml</file>
62 <xpath>/xwikidoc/object/property/colorTheme</xpath>
63 <value>ColorThemes.Mint</value>
64 </transformation>
65 </transformations>
66 </configuration>
67 </plugin>
68 {{/code}}
69
Thomas Mortagne 1.1 70 == Deprecated and Retired projects ==
71
72 <description of deprecated and retired projects>
73
74 == Upgrades ==
75
76 The following dependencies have been upgraded:
77
78 * [[commons-fileupload 1.3>>http://jira.xwiki.org/browse/XCOMMONS-458]]
Thomas Mortagne 2.1 79 * [[cssparser 0.9.10>>http://jira.xwiki.org/browse/XCOMMONS-459]]
Thomas Mortagne 3.1 80 * [[XStream 1.4.5>>http://jira.xwiki.org/browse/XCOMMONS-462]]
Thomas Mortagne 4.1 81 * [[Maven Site plugin 3.3>>http://jira.xwiki.org/browse/XCOMMONS-463]]
Thomas Mortagne 5.1 82 * [[Wagon SSH 2.5>>http://jira.xwiki.org/browse/XCOMMONS-464]]
Thomas Mortagne 6.1 83 * [[AspectJ Maven Plugin 1.5>>http://jira.xwiki.org/browse/XCOMMONS-465]]
Thomas Mortagne 1.1 84
85 == Miscellaneous ==
86
87 <other dev stuff to add and link to JIRA for all issues fixed>
88
89 = Translations =
90
91 The following translations have been updated:
92
93 {{language codes="none, none"/}}
94
95 = Tested Browsers & Databases =
96
97 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
98
99 = Known issues =
100
101 * [[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]]
102
103 = Backward Compatibility and Migration Notes =
104
105 == General Notes ==
106
107 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
108
109 {{warning}}
110 Always make sure you compare your ##xwiki.cfg## and ##xwiki.properties## files with the newest version since some configuration parameters were 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.
111 {{/warning}}
112
113 == Issues specific to XWiki <version> ==
114
115 <issues specific to the project>
116
117 == API Breakages ==
118
119 The following APIs were modified since <project> <version - 1>:
120
121 {{code language="none"}}
122 <clirr output here>
123 {{/code}}

Get Connected