Version 16.1 by Thomas Mortagne on 2014/01/17

Show last authors
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.4 Milestone 1) =
10
11 [[Full list of issues fixed and Dashboard for XWiki 5.4>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=11990]].
12
13 == Distribution Wizard improvements ==
14
15 The upgrade mode has been removed, instead both modes are kind of enabled: it's always proposed to upgrade subwikis from main wiki and the Distribution Wizard is also always enabled on sub-wikis and displayed only if there is something to do.
16
17 == Miscellaneous ==
18
19 * Images that are copy-pasted as HTML in the WYSIWYG editor now work fine, thanks to the added support of the [[Data URI scheme>>http://en.wikipedia.org/wiki/Data_URI_scheme]] in XWiki Syntax 2.1. The wiki syntax is:(((
20 {{code language="none"}}
21 image:data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAO9JREFUOE+lUrsNwjAUdCyWIBXjIEokVoCejgkyQ2gYAIkSsQUrUIUxwrund5bjX4OlyPG9u3v22Z2rjM1uWEtpkq//PC/fCs35UoHi/WGL8mTrErVsAJGJHU2KagGzHUi3I8iP+0s1nInXjBSPSfI/n2/vGTNFJZOVCRkYltdGl1FMRqmHYL0FFM6MjnFXaxCwNJMOZAbW6JyVkI1cbwcD3T5MGBjZLQxi8Lw9kp5iFFikUYwZr2dNQzQT7EavsDFOwl2ErNuIh5kgaX1E0bEyMTiZAcA0WAa26GSL7CUaHjJJz1wyqWLpe6gS/yn8AD9tcjFN7/ajAAAAAElFTkSuQmCC
22 {{/code}}
23 )))
24 * Increased the size of the security cache to improve performances from 500 entries to 10000 entries. This setting could still be overwritten in the infinispan configuration of the cache named ##platform.security.authorization.cache##. This new setting should be sufficient for most usages while the previous default were only valid for small single wiki.
25
26 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.
27
28 = For Developers =
29
30 == <developer feature N> ==
31
32 <description of developer feature N>
33
34 == Deprecated and Retired projects ==
35
36 <description of deprecated and retired projects>
37
38 == Upgrades ==
39
40 The following dependencies have been upgraded:
41
42 * <list libraries that have been upgraded>
43
44 == Miscellaneous ==
45
46 * We added a new parameter to the [[Live Table Velocity macro>>extensions:Extension.Livetable Macro]] named 'selectedTags' which controls the list of tags that are selected initially in the tag cloud. You can still select different tags after the live table loads. With this new parameter you can have a permanent link to a live table that has the rows filtered initially by some tags:(((
47 {{code language="none"}}
48 ## /xwiki/bin/view/Demo/WebHome?tag=news&tag=science
49 #set ($options = {
50 'className': 'Demo.DemoClass',
51 ...
52 'tagCloud': true,
53 'selectedTags': $request.getParameterValues('tag'),
54 ...
55 })
56 {{/code}}
57 )))
58 * The module {{code}}xwiki-platform-wiki-rest{{/code}} replaces the old module {{code}}xwiki-platform-wiki-manager-rest{{/code}} in order to move {{code}}xwiki-platform-wiki-manager{{/code}} in {{code}}contrib{{/code}}, but the API is unchanged.
59 * Verbosity of the job is now configurable right from the ##org.xwiki.job.Request## object
60 * Log generator now generates BeginEvent/EndEvent variants based on marker informations
61 * The following ##java.lang.Class## methods are now allowed in Velocity by default: ##name, isArray, isAssignableFrom, isEnum, isInstance, isInterface, isLocalClass, isMemberClass, isPrimitive, isSynthetic##
62 * Default job status does not provide log tree anymore. Was making the API too complex. It can be created from the log queue very easily in Java and a helper method has been added in logging ScriptService to create one: {{code language="velocity"}}$services.logging.toLogTree($logs){{/code}}
63 * Various APIs have been added to help translate log. See [[Logging Module>>extensions:Extension.Logging Module||anchor="HTranslatelog"]] for more details
64 * It's now [[possible to add new Images Types when rendering in XHTML>>rendering:Main.Extending||anchor="HAddinganewImageType"]]
65 * Introduced ##org.xwiki.observation.AbstractEventListener##
66
67 = Translations =
68
69 The following translations have been updated:
70
71 {{language codes="none, none"/}}
72
73 = Tested Browsers & Databases =
74
75 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
76
77 = Known issues =
78
79 * [[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]]
80
81 = Backward Compatibility and Migration Notes =
82
83 == General Notes ==
84
85 == General Notes ==
86
87 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.
88
89 == Issues specific to XWiki 5.4RC1 ==
90
91 === New Velocity uberspector ===
92
93 If you modified {{code language="properties"}}velocity.properties = runtime.introspector.uberspect.chainClasses = ...{{/code}} property in ##xwiki.propertes## file you should make sure to replace ##org.apache.velocity.util.introspection.SecureUberspector## with ##org.xwiki.velocity.introspection.SecureUberspector##.
94
95 == API Breakages ==
96
97 The following APIs were modified since <project> <version - 1>:
98
99 {{code language="none"}}
100 <clirr output here>
101 {{/code}}

Get Connected