Version 25.1 by Thomas Mortagne on 2015/02/27

Hide last authors
Marius Dumitru Florea 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
7 <insert description of release here>
8
9 = New and Noteworthy (since XWiki 7.0 Milestone 1) =
10
11 [[Full list of issues fixed and Dashboard for 7.0>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=13092]].
12
Guillaume Delhumeau 15.1 13 == Wiki Creation ==
Marius Dumitru Florea 1.1 14
Guillaume Delhumeau 15.1 15 * During the wiki creation, Distribution Wizard is not triggered anymore. Instead, the whole wiki creation process has been moved into a job, and everything happens inside the Wiki Creation Wizard (with a progress bar and a logging area):(((
16 {{image reference="WikiCreationStep.png" width="45%"/}} {{image reference="WikiCreationStepEnd.png" width="45%"/}}
17 )))
18 * The Wiki Provisioning Step has been integrated into the job too.
19 * When a wiki is created from a template, we now have a message in the logs that displays which document is copied.
Marius Dumitru Florea 1.1 20
21 == Miscellaneous ==
22
Marius Dumitru Florea 7.1 23 * The user/group displayer is now showing the wiki for local users/groups in edit mode too (the wiki was shown only in view mode previously).(((
Eduard Moraru 8.2 24 {{image reference="userDisplayer-editMode-wiki.png"/}}
Marius Dumitru Florea 7.1 25 )))
Clemens Robbenhaar 10.1 26 * When deleting a wiki the confirmation page now asks to type in the wiki identifier to prevent accidental deletion.(((
27 {{image reference="delete-wiki-confirm-screen.png"/}}
28 )))
Marius Dumitru Florea 1.1 29
30 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.0-milestone-2%22&tempMax=1000]] fixed in this release.
31
32 = For Developers =
33
Vincent Massol 5.2 34 == Mail Sender API Improvements ==
Marius Dumitru Florea 1.1 35
Vincent Massol 5.1 36 The [[Mail Sender API>>extensions:Extension.Mail Sender API]] has been improved to allow sending mails to a list of users, a list of groups and a list of email addresses, all at once. It also supports excluding users, groups and email addresses. Last, it ensures that recipients don't get duplicate mails. Before 6.4.2/7.0M2, you could send a mail either to a list of users or to a group (and to an email address) but you had to use several API calls for that and you had to handle yourself potential mail duplication (if a user was inside your user list and inside the group you were sending to for example).
Marius Dumitru Florea 1.1 37
Vincent Massol 5.1 38 Using the new API, the following example will send a template email to all the users in the ##XWiki.MyGroup## group, to the ##XWiki.User1## and ##XWiki.User2## users + to the ##john@doe.com## email address.
39
Vincent Massol 6.1 40 Also note that contrary to the previous API to send email to a group, the new API handles nested groups (i.e. if the ##XWiki.MyGroup## group contains other groups, all users of those other groups will also receive the template email)!
41
Vincent Massol 5.1 42 {{code language="none"}}
43 {{velocity}}
44 ## Parameters for the 'template' MimeMessageFactory
45 #set ($templateParameters = {'language' : $xcontext.language, 'velocityVariables' : { 'var1' : 'value1' }})
46
47 #set ($templateReference = $services.model.createDocumentReference('', 'Space', 'MailTemplatePage'))
48 #set ($parameters = {'hint' : 'template', 'parameters' : $templateParameters, 'source' : $templateReference})
49
50 #set ($groupReference = $services.model.createDocumentReference('', 'XWiki', 'MyGroup'))
51 #set ($user1Reference = $services.model.createDocumentReference('', 'XWiki', 'User1'))
52 #set ($user2Reference = $services.model.createDocumentReference('', 'XWiki', 'User2'))
53
54 #set ($source = {'groups' : [$groupReference], 'users' : [$user1Reference, $user2Reference], 'emails' : ['john@doe.com']})
55
56 #set ($messages = $services.mailsender.createMessages('usersandgroups', $source, $parameters))
57 #set ($mailResult = $services.mailsender.send($messages, 'database'))
58 {{/velocity}}
59 {{/code}}
60
Vincent Massol 17.1 61 == Group Member Iterator ==
62
63 A new ##ReferenceUserIterator## iterator has been introduced to iterate over all the users found in a list of users/groups. It supports the following:
Thomas Mortagne 19.1 64
Vincent Massol 17.1 65 * Ability to iterate over a list of references (either group or user) or a single user/group
66 * Handles nested groups
67 * Ability to return user data (e.g. user's email) and to programatically skip some entries based on programmatic condition
68 * Ability to exclude users/groups
69
Vincent Massol 18.1 70 Notes:
Thomas Mortagne 19.1 71
Vincent Massol 18.1 72 * Right now duplication is not handled at the level of ##UserIterator## (thus for example if a user is a member of several groups it'll be returned several times).
73 * This code is not performant as it will load one document per group and per user found. There's [[currently no way of handling this in a performant way>>http://jira.xwiki.org/browse/XWIKI-10377]].
Vincent Massol 17.3 74
Vincent Massol 17.1 75 Example 1: List all users of a group by returning references
76
Vincent Massol 17.2 77 {{code language="groovy"}}
Vincent Massol 17.1 78 {{groovy}}
79 import com.xpn.xwiki.internal.plugin.rightsmanager.*
80 import org.xwiki.model.reference.*
81 import org.xwiki.context.*
82
83 def groupReference = new DocumentReference("xwiki", "XWiki", "XWikiAllGroup")
84 def resolver = services.component.getInstance(DocumentReferenceResolver.TYPE_STRING, "explicit")
85 def execution = services.component.getInstance(Execution.class)
86 def iterator = new ReferenceUserIterator(groupReference, resolver, execution)
87 iterator.each() {
88 println "* ${it}"
89 }
90 {{/groovy}}
91 {{/code}}
92
93 Example 2: Get all emails from all users inside the passed groups
94
Vincent Massol 17.2 95 {{code language="groovy"}}
Vincent Massol 17.1 96 {{groovy}}
97 import com.xpn.xwiki.doc.*
98 import com.xpn.xwiki.objects.*
99 import com.xpn.xwiki.internal.plugin.rightsmanager.*
100 import org.xwiki.model.reference.*
101 import org.xwiki.context.*
102
103 def group1Reference = new DocumentReference("xwiki", "XWiki", "XWikiAllGroup")
104 def group2Reference = new DocumentReference("xwiki", "XWiki", "XWikiAdminGroup")
105 def resolver = services.component.getInstance(DocumentReferenceResolver.TYPE_STRING, "explicit")
106 def execution = services.component.getInstance(Execution.class)
107
108 class EmailUserDataExtractor implements UserDataExtractor<String>
109 {
110 public String extractFromSuperadmin(DocumentReference reference)
111 {
112 return null
113 }
114
115 public String extractFromGuest(DocumentReference reference)
116 {
117 return null
118 }
119
120 public String extract(DocumentReference reference, XWikiDocument document, BaseObject userObject)
121 {
122 return userObject.getStringValue("email")
123 }
124 }
125
126 def iterator = new UserIterator([group1Reference, group2Reference], [], new EmailUserDataExtractor(), resolver, execution)
127 iterator.each() {
128 println "* ${it}"
129 }
130 {{/groovy}}
131 {{/code}}
132
Thomas Mortagne 23.1 133 == Extensions improvement and new features ==
134
Thomas Mortagne 24.1 135 === Extension category ===
136
137 Each extension can now expose a category (flavor, application, macro...).
138
Thomas Mortagne 23.1 139 === Advanced extensions search ===
140
141 A new ##org.xwiki.extension.repository.search.AdvancedSearchable## extending ##org.xwiki.extension.repository.search.Searchable## provide field based filtering and ordering to extensions search. It's implemented by default core, local, installed, xar and xwiki extensions repositories.
142
Thomas Mortagne 24.1 143 === Custom properties in REST protocol ===
Thomas Mortagne 23.1 144
Thomas Mortagne 25.1 145 Support for missing custom properties has been added to the XWiki Repository REST protocol. See [[extensions:Extension.Repository Module||anchor="HREST"]]. Only String properties are supported for now.
Thomas Mortagne 23.1 146
Marius Dumitru Florea 1.1 147 == Deprecated and Retired projects ==
148
149 <description of deprecated and retired projects>
150
151 == Upgrades ==
152
153 The following dependencies have been upgraded:
154
Vincent Massol 12.1 155 * [[Selenium 2.44.0>>http://jira.xwiki.org/browse/XCOMMONS-753]]
156 * [[Arquilian Phantom JS Driver 1.1.3.Final>>http://jira.xwiki.org/browse/XWIKI-11832]]
Thomas Mortagne 19.1 157 * [[Groovy 2.4.1>>http://jira.xwiki.org/browse/XCOMMONS-755]]
Thomas Mortagne 20.1 158 * [[JGroups 3.6.2>>http://jira.xwiki.org/browse/XWIKI-11848]]
Thomas Mortagne 21.1 159 * [[Jython 2.7-b4>>http://jira.xwiki.org/browse/XWIKI-11850]]
Vincent Massol 22.1 160 * [[DBCP 2.1>>http://jira.xwiki.org/browse/XCOMMONS-756]]
Marius Dumitru Florea 1.1 161
162 == Miscellaneous ==
163
Marius Dumitru Florea 2.1 164 * $datetool has a new method to access the [[DateFormatSymbols>>http://docs.oracle.com/javase/7/docs/api/java/text/DateFormatSymbols.html]]:(((
165 {{code language="none"}}
166 {{velocity}}
167 #set ($currentLocale = $services.localization.currentLocale)
168 #set ($dateFormatSymbols = $datetool.getDateFormatSymbols($currentLocale))
169 $jsontool.serialize($dateFormatSymbols.shortMonths)
Marius Dumitru Florea 1.1 170
Marius Dumitru Florea 2.1 171 ## Output for French locale:
172 ## ["janv.","févr.","mars","avr.","mai","juin","juil.","août","sept.","oct.","nov.","déc.",""]
173 {{/velocity}}
174 {{/code}}
175 )))
Vincent Massol 4.1 176 * Message Stream script service now offers a ##getLastError()## method to get the last error.
Eduard Moraru 8.3 177 * "input" displayed Static and Database Lists separators handling has been improved to properly allow using multiple separators at once for entering data (including escaped separators inside list values). More importantly, when displaying an existing list inside an input, the existing values will always be separated using the first separator specified in the object's class for the edited object property. For non-relationally stored properties, the value that is stored in the database as a LargeStringProperty will always be separated using the default pipe ("|") separator. See [[XWIKI-10098>>http://jira.xwiki.org/browse/XWIKI-10098]] for more details.
Eduard Moraru 15.2 178 * The ##/deleteversions/## action now supports the "latest" and "previous" pseudoversions and the ##/rollback/## action now supports the "previous" pseudoversion. See [[XWIKI-11841>>http://jira.xwiki.org/browse/XWIKI-11841]] for more information.
Marius Dumitru Florea 2.1 179
Marius Dumitru Florea 1.1 180 = Translations =
181
182 The following translations have been updated:
183
184 {{language codes="none, none"/}}
185
186 = Tested Browsers & Databases =
187
Manuel Smeria 16.1 188 {{include reference="TestReports.ManualTestReportSummaryXWiki70M2"/}}
Marius Dumitru Florea 1.1 189
190 = Performances tests compared to <last super stable version> =
191
192 <a summary of the comparison with latest super stable version>
193
194 More details on <link to the test report>.
195
196 = Known issues =
197
198 * [[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]]
199
200 = Backward Compatibility and Migration Notes =
201
202 == General Notes ==
203
204 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.
205
Eduard Moraru 8.4 206 == Issues specific to XWiki 7.0M2 ==
Marius Dumitru Florea 1.1 207
Vincent Massol 22.1 208 * The Watchlist class and its objects have been migrated to use relationally stored DBList properties instead of TextArea properties in order to solve scalability issues that occurred when too many elements were being watched by a user. See [[XWIKI-7339>>http://jira.xwiki.org/browse/XWIKI-7339]].
209 * The upgrade to DBCP 2.1 has caused some Hibernate configuration properties to have been removed and new ones created. The following properties have been removed:(((
210 * ##dbcp.maxActive## replaced by ##dbcp.maxTotal##
211 * ##dbcp.maxWait## replaced by ##dbcp.maxWaitMillis##
Marius Dumitru Florea 1.1 212
Vincent Massol 22.1 213 Note that we've kept backward compatibility support for the old properties so that you don't need to immediately modify your ##hibernate.cfg## file (although we recommend you do that!).
214
215 Also note that even though the following properties were defined in ##hibernate.cfg## they were not handled by XWiki's code (nor by DBCP 1.3 - which was the version we were using prior to moving to 2.1). Since they had no effect they've now been removed:
Thomas Mortagne 24.1 216
Vincent Massol 22.1 217 * ##dbcp.whenExhaustedAction##. Note that the default action is BLOCK in Commons Pool (used by DBCP)
218 * ##dbcp.ps.whenExhaustedAction##
219 * ##dbcp.ps.maxWait##
220 * ##dbcp.ps.maxIdle##
221 )))
222
Marius Dumitru Florea 1.1 223 == API Breakages ==
224
225 The following APIs were modified since XWiki 6.4.1:
226
227 {{code language="none"}}
228 <clirr output here>
229 {{/code}}

Get Connected