Version 40.3 by Vincent Massol on 2016/04/05

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
Eduard Moraru 38.6 7 This milestone release brings an upgrade to Java 8 runtime, improvements to Extension Manager and Flavors, and a new Tips panel that replaces the old Quick Links panel.
Thomas Mortagne 1.1 8
Eduard Moraru 38.2 9 = New and Noteworthy (since XWiki 8.0) =
Thomas Mortagne 1.1 10
Eduard Moraru 38.2 11 [[Full list of issues fixed and Dashboard for 8.1>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=13603]].
Thomas Mortagne 1.1 12
Vincent Massol 15.1 13 == Requires Java 8 ==
14
Vincent Massol 15.2 15 Java 8 is now required to run XWiki. If you use an earlier version of Java, you'll get an error while starting XWiki such as:
Vincent Massol 15.1 16
17 {{code language="none"}}
18 java.lang.reflect.InvocationTargetException
19 [...]
20 Caused by: java.lang.UnsupportedClassVersionError: org/xwiki/tools/jetty/listener/NotifyListener : Unsupported major.minor version 52.0
21 [...]
22 {{/code}}
23
Vincent Massol 5.1 24 == Active Installs ==
Thomas Mortagne 1.1 25
Vincent Massol 5.1 26 New widget displayed on the dashboard to see the number of Active Installs count per XWiki Cycle version:
Thomas Mortagne 1.1 27
Vincent Massol 5.1 28 {{image reference="versionspercycle.png"/}}
29
Vincent Massol 25.1 30 == Tips Panel ==
31
32 A new [[Tips Panel>>extensions:Extension.Help Application||anchor="HTipsPanel"]] has been added by default. Example:
33
34 {{image reference="tippanel-1.png"/}}
35
36 {{image reference="tippanel-2.png"/}}
37
Vincent Massol 26.1 38 == Sandbox Relocation ==
39
40 The Sandbox pages were previously accessible through a link in the Quick Links Panel. This link has been removed and instead a Sandbox entry has been added in the [[Applications Panel>>extensions:Extension.Panels Application||anchor="HApplicationPanel"]].
41
42 {{image reference="sandbox-appbar.png"/}}
43
44 In addition the message about the shortcut key to use the "Jump To Page" feature has been moved to the new Tips Panel.
45
46 Here's how the home page looks like now:
47
Vincent Massol 27.2 48 {{image reference="home.png" width="960px"/}}
Vincent Massol 26.1 49
Thomas Mortagne 29.1 50 == Extension Manager improvements ==
51
Thomas Mortagne 34.1 52 === Repair invalid extensions ===
Thomas Mortagne 29.1 53
Vincent Massol 40.3 54 The Extension Manager now tries to repair automatically any invalid dependency and also provides a "Repair" button to repair specific invalid extensions.
Thomas Mortagne 29.1 55
Thomas Mortagne 33.1 56 {{image reference="repair.png"/}}
57
58 {{image reference="repairplan.png"/}}
59
Thomas Mortagne 35.1 60 === Apply namespaces constraints in the UI ===
Thomas Mortagne 29.1 61
62 The namespaces constraints introduced in 8.0 are now taken into account in the UI which won't propose an option that will fail in the install plan.
63
64 === Move to farm ===
65
66 It's now possible to install on farm an extension installed in a subwiki directly from the UI.
67
Thomas Mortagne 33.1 68 {{image reference="installonfarm.png"/}}
69
Thomas Mortagne 29.1 70 === Dependency on root ===
71
72 When using Extension Manager from main wiki it's now allowed to install/upgrade an extension which require upgrading/install farm level dependency. It also automatically propose to install on farm a new dependency which indicate it as constraint. This will make easier to deal with extension have an API that have to be installed on root and a XAR extension UI that should usualy be install on a wiki.
73
74 It's still forbidden from subwiki in the standard UI (any script with programming right can enable it in the install request). That might change in the future but need to be discussed more.
75
76 === Managed dependencies ===
77
78 Extension Manager now support the concept of managed dependencies. It's pretty much the same thing that the {{code language="xml"}}<dependencyManagement>{{/code}} in Maven.
79
Thomas Mortagne 34.1 80 It still need to be supported in the Repository Application. See [[http://jira.xwiki.org/browse/XWIKI-13281]].
Thomas Mortagne 29.1 81
82 == Flavors improvements ==
83
Thomas Mortagne 40.1 84 * Known flavors are not validated anymore before ending up in the flavor picker of the Distribution Wizard. This speed up a lot the use case where you just want to install default XWiki Flavor or XE UI. See [[extensions:Extension.Flavor Module||anchor="HKnownflavors"]] for more details.
Thomas Mortagne 29.1 85 * Flavors are now also searched in the local repository. This makes easier to embedded flavors in a distribution for setups with no network access.
86
Thomas Mortagne 1.1 87 == Miscellaneous ==
88
Vincent Massol 19.1 89 * The ##xwiki.usedefaultweb## parameter from ##xwiki.cfg## has been removed. See below.
90 * The Annotations Application's Administration section has been updated to present the exception spaces as "locations", using the ##documentTree## macro. The behavior has not been changed.(((
Vincent Massol 27.2 91 {{image reference="annotationsAdminSection.png" width="960px"/}}
Eduard Moraru 11.1 92 )))
Thomas Mortagne 29.1 93 * Job module does not validate stored status at startup. This might improve a lot the startup time when there is a lot of status. Also there seems to still be use cases where XStream get lost in edge case when parsing, this was blocking the whole XWiki startup for a very long time.
Eduard Moraru 11.1 94
Eduard Moraru 38.2 95 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+%228.1-milestone-1%22&tempMax=1000]] fixed in this release.
Thomas Mortagne 1.1 96
97 = For Developers =
98
Marius Dumitru Florea 36.1 99 == Deferred JavaScript Module Dependency Loading ==
Thomas Mortagne 1.1 100
Marius Dumitru Florea 36.1 101 You can extend a feature provided by some JavaScript module without knowing where that module is loaded from (by RequireJS) with the following code:
Thomas Mortagne 1.1 102
Marius Dumitru Florea 36.1 103 {{code language="js"}}
104 require(['deferred!module'], function(modulePromise) {
105 modulePromise.done(function(module) {
106 // Do something with the module, if the module is loaded by someone else.
107 });
108 });
109 {{/code}}
110
111 This basically says to RequireJS: "let me know when this module is loaded by someone else" (someone else being an other script on the same page). You can read more about this on the [[Developer's Guide>>platform:DevGuide.JavaScriptAPI||anchor="HDeferredDependencyLoading"]].
112
Thomas Mortagne 1.1 113 == Upgrades ==
114
115 The following dependencies have been upgraded:
116
117 * [[JSqlParser 0.9.5>>http://jira.xwiki.org/browse/XWIKI-13215]]
Thomas Mortagne 21.1 118 * [[slf4j 1.7.20>>http://jira.xwiki.org/browse/XCOMMONS-938]]
Thomas Mortagne 3.1 119 * [[Jackson 2.7.3>>http://jira.xwiki.org/browse/XCOMMONS-940]]
Thomas Mortagne 4.1 120 * [[XStream 1.4.9>>http://jira.xwiki.org/browse/XCOMMONS-941]]
Marius Dumitru Florea 12.1 121 * [[GWT 2.7>>http://jira.xwiki.org/browse/XWIKI-13236]]
Marius Dumitru Florea 13.1 122 * [[jQuery 2.2.2>>http://jira.xwiki.org/browse/XWIKI-11095]]
123 * [[RequireJS 2.2>>http://jira.xwiki.org/browse/XWIKI-11095]]
Thomas Mortagne 17.1 124 * [[Infinispan 8.2.0>>http://jira.xwiki.org/browse/XWIKI-13264]]
Thomas Mortagne 20.1 125 * [[logback 1.1.7>>http://jira.xwiki.org/browse/XCOMMONS-953]]
Thomas Mortagne 1.1 126
127 == Miscellaneous ==
128
Vincent Massol 16.2 129 * IRC Bot Application has been moved to XWiki Contrib under the new extension id of ##org.xwiki.contrib:application-ircbot-ui##
130 * Selenium Application had been moved to XWiki Contrib under the new extension id of ##org.xwiki.contrib:application-selenium##
131 * FAQ Application has been moved to XWiki Contrib under the new extension id of ##org.xwiki.contrib:application-faq-ui##
Vincent Massol 40.2 132 * The XAR plugin now also verifies that Translation pages are using the ##plain/1.0## syntax (it checks pages having a Translation xobject in them).
Vincent Massol 37.1 133 * This Methods Arguments Velocity Uberspector [[now supports calling varargs methods>>extensions:Extension.Velocity Module||anchor="HMethodArgumentsUberspector"]].
Vincent Massol 38.1 134 * Starting With XWiki 8.1M1, the backward-compatibility tool we use is [[Revapi>>http://revapi.org/]]. We had to move away from CLIRR since it didn't support Java 8 constructs.
Thomas Mortagne 1.1 135
136 = Translations =
137
138 The following translations have been updated:
139
Eduard Moraru 36.2 140 {{language codes="ca, pt_BR"/}}
Thomas Mortagne 1.1 141
142 = Tested Browsers & Databases =
143
144 {{warning}}
145 The QA Tests are executed after the release has been done. Thus, they are being prepared now and will be published soon.
146 {{/warning}}
147
148 {{comment}}
149 TODO: uncomment and update with proper link when the report is ready.
150 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
151 {{/comment}}
152
Eduard Moraru 38.4 153 {{comment}}
154 Uncomment when actual performance test data is available.
155
Thomas Mortagne 1.1 156 = Performances tests compared to <last super stable version> =
157
158 <a summary of the comparison with latest super stable version>
159
160 More details on <link to the test report>.
161
Eduard Moraru 38.4 162 {{/comment}}
163
Thomas Mortagne 1.1 164 = Known issues =
165
166 * [[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]]
167
168 = Backward Compatibility and Migration Notes =
169
170 == General Notes ==
171
172 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.
173
Vincent Massol 19.1 174 == Issues specific to XWiki 8.1-milestone-1 ==
Thomas Mortagne 1.1 175
Vincent Massol 19.1 176 * The ##xwiki.usedefaultweb## parameter has been removed from ##xwii.cfg##. This parameter had not been working since XWiki 7.2-milestone-1; when we introduced Nested Pages we had to make a choice and we decided to support addressing top-level Nested Pages without having to have ##WebHome## in the URL (nor having to finish URLs with a trailing ##/##). For example, ##http:~/~/<server>/xwiki/bin/view/something## points to ##something.WebHome## by default since XWiki 7.2-milestone-1.
Vincent Massol 28.1 177 * Since we've modified content of the Quick Links Panel, the Distribution Wizard may detect a merge conflict if this panel was customized. In addition, the Quick Links panel may disappear after an upgrade to 8.1M1+. You can add it back from the administration UI if you want to keep it (e.g. if it has
178 been customized).
Thomas Mortagne 1.1 179
180 == API Breakages ==
181
Eduard Moraru 38.2 182 The following APIs were modified since XWiki 8.0:
Thomas Mortagne 1.1 183
Thomas Mortagne 38.7 184 The return type of the following methods changed from:
185
186 {{code language="java"}}
187 java.util.List<? extends org.xwiki.extension.ExtensionDependency> org.xwiki.extension.AbstractExtension::getDependencies()
188 java.util.Collection<? extends org.xwiki.extension.ExtensionDependency> org.xwiki.extension.Extension::getDependencies()
189 java.util.Collection<? extends org.xwiki.extension.ExtensionDependency> org.xwiki.extension.wrap.WrappingExtension<E extends org.xwiki.extension.Extension>::getDependencies()
Thomas Mortagne 1.1 190 {{/code}}
Eduard Moraru 38.3 191
Thomas Mortagne 38.7 192 to
193
194 {{code language="java"}}
195 java.util.List<org.xwiki.extension.ExtensionDependency> org.xwiki.extension.AbstractExtension::getDependencies()
196 java.util.Collection<org.xwiki.extension.ExtensionDependency> org.xwiki.extension.Extension::getDependencies()
197 java.util.Collection<org.xwiki.extension.ExtensionDependency> org.xwiki.extension.wrap.WrappingExtension<E extends org.xwiki.extension.Extension>::getDependencies()
198 {{/code}}
199
200 This is binary compatible but you might have to modify a bit your code if you upgrade your dependencies to 8.1+.

Get Connected