Version 11.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 == Solr improvements ==
14
15 * at each startup a synchronization background job is started to make sure solr index and database are in sync (only update what needs to be updated)
16 * ##name_exact## property has been added to document model in solr index to allow doing exist matching on a document (for example when search a specific document and several have similar names)
17
18 == Miscellaneous ==
19
20 * We changed the dashboard to display the gadget actions when hovering the gadget.(((
21 {{image reference="gadgetActions.png"/}}
22 )))
23
24 == Full Issue List ==
25
26 {{jira style="list" url="http://jira.xwiki.org" fields="type, status, key, summary" source="jql"}}
27 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")
28 {{/jira}}
29
30 = For Developers =
31
32 == Merging WARs with Packager plugin ==
33
34 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:
35
36 {{code language="xml"}}
37 <plugin>
38 <groupId>org.xwiki.platform</groupId>
39 <artifactId>xwiki-platform-tool-packager-plugin</artifactId>
40 ...
41 <configuration>
42 <contextPathMapping>
43 <!-- Merge the WYSIWYG editor WAR with the platform web WAR. -->
44 <xwiki-platform-wysiwyg-war>xwiki</xwiki-platform-wysiwyg-war>
45 </contextPathMapping>
46 </configuration>
47 </plugin>
48 {{/code}}
49
50 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:
51
52 {{code language="none"}}
53 xwiki-platform-web: xwiki
54 xwiki-platform-tool-rootwebapp: root
55 {{/code}}
56
57 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.
58
59 == Deprecated and Retired projects ==
60
61 <description of deprecated and retired projects>
62
63 == Upgrades ==
64
65 The following dependencies have been upgraded:
66
67 * [[Groovy 2.1.5>>http://jira.xwiki.org/browse/XCOMMONS-413]]
68
69 == Miscellaneous ==
70
71 * Jobs don't share the same ##ExecutionContext## anymore.
72 * 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##.
73 * A new Runnable wrapper to initialize and dispose ##ExecutionContext##:(((
74 {{code language="java"}}
75 Thread thread = new Thread(new ExecutionContextRunnable(runnable, componentManger));
76 thread.start();
77 {{/code}}
78 )))
79 * A new method to add a custom Job to the JobManager:(((
80 {{code language="java"}}
81 Job myjob = new MyJob();
82 this.jobManager.addJob(myjob);
83 {{/code}}
84 )))
85
86 = Translations =
87
88 The following translations have been updated:
89
90 {{language codes="none, none"/}}
91
92 = Tested Browsers & Databases =
93
94 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
95
96 = Known issues =
97
98 * [[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]]
99
100 = Backward Compatibility and Migration Notes =
101
102 == General Notes ==
103
104 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
105
106 {{warning}}
107 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.
108 {{/warning}}
109
110 == Issues specific to XWiki <version> ==
111
112 <issues specific to the project>
113
114 == API Breakages ==
115
116 The following APIs were modified since <project> <version - 1>:
117
118 {{code language="none"}}
119 <clirr output here>
120 {{/code}}

Get Connected