Version 10.1 by Thomas Mortagne on 2013/06/24

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 This is the release notes for XWiki Platform, XWiki Enterprise and XWiki Enterprise Manager. 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.1 Milestone 2) =
10
11 [[Full list of issues fixed and Dashboard for 5.1>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=11595]].
12
13 == <feature N> ==
14
15 <description of feature N>
16
17 == Miscellaneous ==
18
19 * We changed the dashboard to display the gadget actions when hovering the gadget.(((
20 {{image reference="gadgetActions.png"/}}
21 )))
22
23 == Full Issue List ==
24
25 {{jira style="list" url="http://jira.xwiki.org" fields="type, status, key, summary" source="jql"}}
26 Project in ("XWiki Commons", "XWiki Rendering", "XWiki Platform", "XWiki Enterprise", "XWiki Enterprise Manager") and fixVersion in ("5.1-rc-1") and resolution in ("Fixed") and component not in ("Build, Infrastructure and Tests")
27 {{/jira}}
28
29 = For Developers =
30
31 == Merging WARs with Packager plugin ==
32
33 We added a ##contextPathMapping## configuration parameter to the Packager Maven plugin to allow us to bind WAR artifact IDs to the context path where they should be extracted. Here's an example:
34
35 {{code language="xml"}}
36 <plugin>
37 <groupId>org.xwiki.platform</groupId>
38 <artifactId>xwiki-platform-tool-packager-plugin</artifactId>
39 ...
40 <configuration>
41 <contextPathMapping>
42 <!-- Merge the WYSIWYG editor WAR with the platform web WAR. -->
43 <xwiki-platform-wysiwyg-war>xwiki</xwiki-platform-wysiwyg-war>
44 </contextPathMapping>
45 </configuration>
46 </plugin>
47 {{/code}}
48
49 The Packager plugin looks for WAR artifacts in the list of dependencies. If no WAR-type dependencies are found then the following WARs are used, with the corresponding default context path binding:
50
51 {{code language="none"}}
52 xwiki-platform-web: xwiki
53 xwiki-platform-tool-rootwebapp: root
54 {{/code}}
55
56 If more WARs share the same context path then they are merged. Of course, in this case the order in the list of dependencies is important because the last WAR can overwrite files from the previous ones. When no mapping is defined for a WAR, its artifact id is used instead as context path.
57
58 == Deprecated and Retired projects ==
59
60 <description of deprecated and retired projects>
61
62 == Upgrades ==
63
64 The following dependencies have been upgraded:
65
66 * [[Groovy 2.1.5>>http://jira.xwiki.org/browse/XCOMMONS-413]]
67
68 == Miscellaneous ==
69
70 * Jobs don't share the same ##ExecutionContext## anymore.
71 * The WYSIWYG editor administration section has been moved from the [[Administration Application>>doc:extensions:Extension.Administration Application]] to its own module under ##xwiki-platform-wysiwyg##.
72 * A new Runnable wrapper to initialize and dispose ##ExecutionContext##:(((
73 {{code language="java"}}
74 Thread thread = new Thread(new ExecutionContextRunnable(runnable, componentManger));
75 thread.start();
76 {{/code}}
77 )))
78 * A new method to add a custom Job to the JobManager:(((
79 {{code language="java"}}
80 Job myjob = new MyJob();
81 this.jobManager.addJob(myjob);
82 {{/code}}
83 )))
84
85 = Translations =
86
87 The following translations have been updated:
88
89 {{language codes="none, none"/}}
90
91 = Tested Browsers & Databases =
92
93 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
94
95 = Known issues =
96
97 * [[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]]
98
99 = Backward Compatibility and Migration Notes =
100
101 == General Notes ==
102
103 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
104
105 {{warning}}
106 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.
107 {{/warning}}
108
109 == Issues specific to XWiki <version> ==
110
111 <issues specific to the project>
112
113 == API Breakages ==
114
115 The following APIs were modified since <project> <version - 1>:
116
117 {{code language="none"}}
118 <clirr output here>
119 {{/code}}

Get Connected