Version 18.1 by Marius Dumitru Florea on 2013/06/26

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 == Menu Application ==
14
15 {{todo/}}
16
17 == Solr improvements ==
18
19 * 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)
20 * ##name_exact## property has been added to document model in solr index to allow doing exact matching on a document (for example when search a specific document and several have similar names)
21 * ##doclocale## property is now stored in Solr index to indicate the technical locale of the document in database (##locale## contains the real locale after resolving default locale for default entry)
22
23 == Miscellaneous ==
24
25 * We changed the dashboard to display the gadget actions when hovering the gadget.(((
26 {{image reference="gadgetActions.png"/}}
27 )))
28 * More documents marked as hidden by default: ##Blog.News, Blog.Other, Blog.Personal, Main.Activity, Main.MessageSenderMacro, Main.Tags, Sandbox.WebPreferences, XWiki.WebHome, XWiki.XWikiAdminGroup, XWiki.XWikiAllGroup, XWiki.SearchConfig##
29
30 == Full Issue List ==
31
32 {{jira style="list" url="http://jira.xwiki.org" fields="type, status, key, summary" source="jql"}}
33 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")
34 {{/jira}}
35
36 = For Developers =
37
38 == Merging WARs with Packager plugin ==
39
40 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:
41
42 {{code language="xml"}}
43 <plugin>
44 <groupId>org.xwiki.platform</groupId>
45 <artifactId>xwiki-platform-tool-packager-plugin</artifactId>
46 ...
47 <configuration>
48 <contextPathMapping>
49 <!-- Merge the WYSIWYG editor WAR with the platform web WAR. -->
50 <xwiki-platform-wysiwyg-war>xwiki</xwiki-platform-wysiwyg-war>
51 </contextPathMapping>
52 </configuration>
53 </plugin>
54 {{/code}}
55
56 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:
57
58 {{code language="none"}}
59 xwiki-platform-web: xwiki
60 xwiki-platform-tool-rootwebapp: root
61 {{/code}}
62
63 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.
64
65 == Miscellaneous ==
66
67 * Jobs don't share the same ##ExecutionContext## anymore.
68 * 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##.
69 * A new Runnable wrapper to initialize and dispose ##ExecutionContext##:(((
70 {{code language="java"}}
71 Thread thread = new Thread(new ExecutionContextRunnable(runnable, componentManger));
72 thread.start();
73 {{/code}}
74 )))
75 * A new method to add a custom Job to the JobManager:(((
76 {{code language="java"}}
77 Job myjob = new MyJob();
78 this.jobManager.addJob(myjob);
79 {{/code}}
80 )))
81 * It's now possible to write Rendering Integration tests using Mockito. For example:(((
82 {{code language="java"}}
83 @RunWith(RenderingTestSuite.class)
84 @RenderingTestSuite.Scope("wiki")
85 @AllComponents
86 public class WikiIntegrationTests
87 {
88 @RenderingTestSuite.Initialized
89 public void initialize(MockitoComponentManager componentManager) throws Exception
90 {
91 componentManager.registerComponent(MockWikiModel.getComponentDescriptor());
92
93 // Add InterWiki Definition for links28 test
94 DefaultRenderingConfiguration renderingConfiguration =
95 (DefaultRenderingConfiguration) componentManager.getInstance(RenderingConfiguration.class);
96 renderingConfiguration.addInterWikiDefinition("knownalias", "http://server/common/url/");
97 }
98 }
99 {{/code}}
100 )))
101
102 == Upgrades ==
103
104 The following dependencies have been upgraded:
105
106 * [[Groovy 2.1.5>>http://jira.xwiki.org/browse/XCOMMONS-413]]
107
108 = Translations =
109
110 The following translations have been updated:
111
112 {{language codes="none, none"/}}
113
114 = Tested Browsers & Databases =
115
116 {{include reference="TestReports.ManualTestReportXWiki51RC1Summary"/}}
117
118 = Known issues =
119
120 * [[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]]
121
122 = Backward Compatibility and Migration Notes =
123
124 == General Notes ==
125
126 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
127
128 {{warning}}
129 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.
130 {{/warning}}
131
132 == API Breakages ==
133
134 The following APIs were modified since XWiki 5.0.3:
135
136 {{code language="none"}}
137 <clirr output here>
138 {{/code}}

Get Connected