Version 24.2 by Vincent Massol on 2015/08/07

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 The focus of this release was on fixing issues introduced in 7.2 Milestone 1 with the new Nested Document/Nested Spaces features and to continue adding support for this feature in various existing features (using a tree for the Import UI instead of a list, new DB table to have performant Space queries, start of Nested Spaces support in the XWiki JS APIs, etc). Another major feature added was the new Script permission to allow forbidding Script execution to specific Users or Groups.
8
9 = New and Noteworthy (since XWiki 7.2 Milestone 1) =
10
11 [[Full list of issues fixed and Dashboard for 7.2>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=13390]].
12
13 == Script Right ==
14
15 The Script Right is now set to DENY by default, meaning that if you do not have it explicitly, you will not be able to execute the scripts that you write with your user account.
16
17 However, for backward-compatibility reasons, the standard XWiki Enterprise distribution comes with the Script Right being allowed for all users at the main wiki level, so that, unless you (as an Admin) explicitly revoke the right for some users or explicitly deny it, they will be able to execute the scripts they wrote, just like before.
18
19 {{image reference="scriptRightsExplicitlyAllowedInXWikiPreferences.png"/}}
20
21 == Miscellaneous ==
22
23 * Import UI move to new standard tree(((
24 {{image reference="import.png"/}}
25 )))
26 * The size of the Job status cache is now configurable. See ##job.statusCacheSize## property in ##xwiki.properties## files.
27
28 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+%227.2-milestone-2%22&tempMax=1000]] fixed in this release.
29
30 = For Developers =
31
32 == New Space/XWikiSpace table ==
33
34 A [[new table dedicated to Spaces has been introduced>>platform:DevGuide.DatabaseSchema]], in order to have performant and scalable Space-related queries (like supporting getting paginated Space which is useful for the Document Tree macro for example).
35
36 == Queries improvement ==
37
38 === Allow executing complete SELECT queries ===
39
40 In HQL and XWQL it's now possible to execute full ##SELECT## queries without Programming Right as long as you follow some rules currently defined in ##com.xpn.xwiki.internal.store.hibernate.query.HqlQueryUtils##, which contains a list of the database field allowed in the SELECT clause. Namely:
41 * For the ##Document##/##XWikiDocument## table: ##fullName##, ##name##, ##space##, ##language##, ##defaultLanguage##, ##translation##, ##hidden##
42 * For the ##Space##/##XWikiSpace## table: ##reference##, ##name##, ##parent##, ##hidden##
43
44 This is also true for the Named Queries located in the ##queries.hbm.xml## file.
45
46 === New Secure Query ===
47
48 The right to execute or not some Query is now controlled by each ##org.xwiki.query.QueryExecutor##.
49
50 Anyone can ask the executor to check or ignore Right through the new ##org.xwiki.query.SecureQuery## extending ##org.xwiki.query.Query##:
51
52 * ##checkCurrentAuthor()##: indicate if the current author right should be checked
53 * ##checkCurrentUser()##: indicate if the result should be filtered based on current user Right (only implemented by SOLR right now)
54
55 == JS API Improvements ==
56
57 * It's now possible to create a Nested Spaces Reference using XWiki's Javascript API. For example:(((
58 {{code language="javascript"}}
59 // Construct a Nested Space reference
60 var reference = new XWiki.SpaceReference('wiki', ['space1', 'space2']);
61 expect(XWiki.Model.serialize(reference)).toEqual('wiki:space1.space2');
62 reference = new XWiki.DocumentReference('wiki', ['space1', 'space2'], 'page');
63 expect(XWiki.Model.serialize(reference)).toEqual('wiki:space1.space2.page');
64 // Construct a non-Nested Space reference
65 reference = new XWiki.SpaceReference('wiki', 'space');
66 expect(XWiki.Model.serialize(reference)).toEqual('wiki:space');
67 // Try passing non-valid space parameters
68 expect(function() {new XWiki.SpaceReference('wiki', [])}).toThrow('Missing mandatory space name or invalid type for: []');
69 expect(function() {new XWiki.SpaceReference('wiki', 12)}).toThrow('Missing mandatory space name or invalid type for: [12]');
70 {{/code}}
71 )))
72 * A new ##XWiki.EntityReference.equals()## method has been added. For example:(((
73 {{code language="javascript"}}
74 var reference1 = new XWiki.DocumentReference('wiki', ['space1', 'space2'], 'page');
75 var reference2 = new XWiki.DocumentReference('wiki', ['space1', 'space2'], 'page');
76 var reference3 = new XWiki.DocumentReference('wiki2', ['space1', 'space2'], 'page');
77 expect(reference1.equals(reference2)).toBe(true);
78 expect(reference1.equals(reference3)).toBe(false);
79 {{/code}}
80 )))
81 * A new ##XWiki.EntityReference.fromJSONObject(obejct)## has been added to create a Javascript ##XWiki.EntityReference## from a Java ##EntityReference## directly serialized as JSON:(((
82 {{code language="javascript"}}
83 var reference = XWiki.EntityReference.fromJSONObject(jsonText.evalJSON());
84 {{/code}}
85 )))
86 * A new ##XWiki.EntityReferenceTree## JS class has been added, which partially mimics the Java ##EntityReferenceTree## Class. It's still missing features though as it was introduced mostly to make it easier to manipulate a serialized Java ##EntityReferenceTree##.
87
88 == Miscellaneous ==
89
90 * Custom displayers are now executed with the Rights of the user who wrote them (i.e. author of the class document or content author of the displayer document), and not the Rights of the user who wrote the script that uses them (i.e. current context document's content author). See [[XWIKI-12306>>http://jira.xwiki.org/browse/XWIKI-12306]] for more details.
91 * In the [[Active Install Extension>>extensions:Extension.Active Installs Server Application]], a new Velocity Macro has been introduced to compute the number of Active Installs having a specific Extension. Example usage:(((
92 {{code language="none"}}
93 {{include reference="ActiveInstalls.ExtensionCount"/}}
94
95 {{velocity}}
96 #set ($extensionIds = [
97 'org.xwiki.contrib:xwiki-totem-application',
98 'jsimard:event-reporter-application',
99 'mouhb:likeapplication'
100 ])
101 |=Extension Id|=Count
102 #foreach($extensionId in $extensionIds)
103 #countActiveInstallsUsingExtension($extensionId $count)
104 |$extensionId|$count
105 #end
106 {{/velocity}}
107 {{/code}}
108 )))
109 * Better support of non-DOCUMENT ##EntityReferences## in ##DocumentReferenceConverter##. It now behaves like ##XWiki#getDocument(EntityReference)##
110
111 == Deprecated and Retired projects ==
112
113 * The [[OSCache-based Cache Extension>>extensions:Extension.Cache OSCache]] has been [[moved to ##xwiki-contrib##>>https://github.com/xwiki-contrib/xwiki-platform-cache-oscache]] since we've been using the Infinispan implementation for a while now and the XWiki Core developers don't intend to continue supporting the OSCache-based one (it can be maintained by the Community, by whoever's interested in supporting it).
114
115 == Upgrades ==
116
117 The following dependencies have been upgraded:
118
119 * [[Groovy 2.4.4>>http://jira.xwiki.org/browse/XCOMMONS-831]]
120 * [[Tika 1.9>>http://jira.xwiki.org/browse/XWIKI-12274]]
121 * [[JRuby 1.7.21>>http://jira.xwiki.org/browse/XWIKI-12344]]
122 * [[Jackson 2.6.0>>http://jira.xwiki.org/browse/XCOMMONS-833]]
123 * [[Hibernate Validator 4.3.2>>http://jira.xwiki.org/browse/XWIKI-12365]]
124
125 = Translations =
126
127 The following translations have been updated:
128
129 {{language codes="none, none"/}}
130
131 = Tested Browsers & Databases =
132
133 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
134
135 = Performances tests compared to <last super stable version> =
136
137 <a summary of the comparison with latest super stable version>
138
139 More details on <link to the test report>.
140
141 = Known issues =
142
143 * [[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]]
144
145 = Backward Compatibility and Migration Notes =
146
147 == General Notes ==
148
149 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.
150
151 == Issues specific to XWiki 7.2 Milestone 2 ==
152
153 <issues specific to the project>
154
155 == API Breakages ==
156
157 The following APIs were modified since XWiki 7.2 Milestone 1:
158
159 {{code language="none"}}
160 <clirr output here>
161 {{/code}}

Get Connected