Version 14.7 by Caleb James DeLisle on 2012/06/18

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 {{warning}}4.1 is not released yet, this is a work in progress{{/warning}}
6
7 This is the second release of the 4.x cycle ([[Roadmap>>Main.Roadmap]]). This release brings {{todo/}}
8
9 = New and Noteworthy (since XWiki Enterprise 4.0 version) =
10
11 Here are notable new features and improvements. For the full list of issues (including statistics) see the [[JIRA Dashboard>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=11191]].
12
13 == Improvements to the Extension Manager ==
14
15 The speed and reliability of the [[Extension Repository>>extensions:Extension.Extension Repository Application]] has been improved considerably. For example the [[XWiki.org Extension Repository>>extensions:Extension.WebHome]] is now much faster when you access it from XWiki Enterprise and you should now be able to browse and install extensions in no time.
16
17 Upgrading applications with related configuration documents is now handled using the merge conflict resolution UI. Changes are displayed as if you were comparing versions from a document's history.
18
19 {{image reference="EM-mergeConflict.png"/}}
20
21 If extension installation fails, the error message is extracted from the logs and displayed. You can view the full stack trace by clicking on the error message.
22
23 (in the image below the job of computing the install plan fails)
24
25 image:EM-extensionLog.png
26
27 The install and uninstall plans display extensions like in the dependency section. This way you can follow the link of an extension to find out more about what is going to be installed.
28
29 image:EM-uninstallPlan.png
30
31 The install and uninstall process is now completely asynchronous. You can see below how the progress is indicated.
32
33 image:EM-asyncInstall.png
34
35 See the [[Extension Manager Application documentation>>doc:extensions:Extension.Extension Manager Application]] for more details.
36
37 == Hide technical documents from non-technical users ==
38
39 * Users who do not opt to see hidden documents do not see them on panels or in search results.
40 * For advanced users, it is now possible to specify that a document should be hidden when editing the document (only //wiki// or //wysiwyg// edit modes):(((
41 [[image:HideDocument.png||style="border:1px solid silver" width="240px"]]
42
43 And now there's a new setting in the user profiles, letting users choose whether they want hidden documents to appear in search results and panels:
44
45 [[image:ShowHiddenDocuments.png||style="border:1px solid silver" width="300px"]]
46
47 * If the user doesn't set explicitly the Hidden setting value in his profile, he won't see hidden documents by default. Thus seeing hidden documents is an explicit choice.
48 )))
49
50
51 == New types of charts ==
52
53 We've [[added 2 new types of charts>>extensions:Extension.Chart Macro]], **bar3D** and **line3D**, which draw 3D charts.
54
55 For example the following code:
56
57 {{code}}
58 {{chart type='bar3D' source='inline' params='range:B2-B9;series:columns'}}
59 |=Date|=Value
60 |2012-02-21|1.97
61 |2012-02-26|2.96
62 |2012-03-04|3.93
63 |2012-03-11|4.84
64 |2012-03-18|5.83
65 |2012-03-25|4.5
66 |2012-04-01|3.85
67 |2012-04-08|4.87
68 {{/chart}}
69 {{/code}}
70
71 Will be rendered as this:
72
73 [[image:chart-example.png]]
74
75
76 It's now possible to select [[custom colors in Chart graphs>>extensions:Extension.Chart Macro]]. For example:
77
78 {{code}}
79 {{chart type="pie" source="inline" params="range:B2-D5;series:columns;colors:C3E3F7,1D9FF5,015891,012A45" title="Chart Test" width="320" height="240"}}
80 | |X |Y |Z
81 |Q1|1.2|3.4|1.3
82 |Q2|4.5|3.4|2.3
83 |Q3|1.2|4.5|9.0
84 |Q4|3.4|1.2|1.2
85 {{/chart}}
86 {{/code}}
87
88 Will generate:
89
90 {{image reference="extensions:Extension.Chart Macro@customcolors.png"/}}
91
92
93 == New macro for sending messages ==
94
95 Whereas the Activity Stream allows users to send a message as well as observing messages and activities of other users, this macro allows the explicit message sending functionality to be duplicated in other places without including the activity stream as well.
96
97 The code:
98
99 {{code language="none"}}
100 {{messageSender /}}
101 {{/code}}
102
103 Produces the following:
104
105 {{image reference="messageSenderMacro.png"/}}
106
107 == Danish Translation ==
108
109 [[image:Denmark.png||width=50px]] XWiki Enterprise is now available in the Danish language.
110
111
112 = For developers =
113
114 * New rendering [[Compatibility Test Suite>>rendering:Main.CompatibilityTestSuite]] to make testing easier and simplify implementation of new syntax Parsers and Renderers. You can checkout the [[Compatibility report>>rendering:Main.SyntaxReport]] for all the syntaxes that are supported out of the box by XWiki.
115
116 * New diff/merge module has been added to make easier to deal with diff and merge both from component and scripts. See [[Diff module >>extensions:Extension.Diff Module]] for details.
117
118 == Easy variable sharing between scripts ==
119 It's now much easier to share variable between languages.
120 You can now create a variable in a Groovy script and use it in a Velocity script.
121
122 For example:(((
123 {{code language="none"}}
124 {{groovy}}
125 var = "toto"
126 {{/groovy}}
127
128 {{velocity}}
129 $var
130 {{/velocity}}
131 {{/code}}
132 )))
133
134 == Script access to Component Manager ==
135 With the [[new Component Access Script Service>>platform:DevGuide.Scripting||anchor="HXWikiComponentAccess"]] privileged scripts can now easily load components from the Component Manager (XWiki's dependency injection system). This is not available in Velocity because of it's limited capability to load classes.
136
137 For example:(((
138 {{code}}
139 {{groovy}}
140 def myComponent = services.component.getInstance(MyComponentRole.class)
141 {{/groovy}}
142 {{/code}}
143 )))
144
145 == Velocity interprets Strings in function calls ==
146 With the [[new Velocity uberspector>>doc:extensions:Extension.Velocity Module||anchor="HMethodArgumentsUberspector"]], Velocity will convert method arguments in string form to formal parameter types when the passed arguments don't match the method signature.
147
148 For example:(((
149 {{code}}
150 $obj.someMethod('VALUE')
151 // will forward to
152 obj.someMethod(SomeEnum.VALUE)
153 // if obj has a method with signature someMethod(SomeEnum) and not someMethod(String)
154 {{/code}}
155
156 But this is not limited to enums. The conversion is done using the [[Properties Module>>doc:extensions:Extension.Properties Module]] which means you can create and register custom converters for data types specific to your application domain.
157 )))
158
159
160 == Taming of Groovy scripts ==
161
162 Since traditionally, Groovy scripts can enter into unstoppable infinite loops, use reflection to violate security assumptions, access server resources, or even crash the virtual machine, they have been off limits to non-administrators.
163
164 In a bid to open up new scripting options to less permitted users (especially in wiki farms where getting Programming Rights is a problem since it means having those rights on the whole farm), steps have been taken to make Groovy safer.
165
166 Groovy scripts are now technically allowed to users having simple Edit rights but the Groovy Sandbox is currently very restrictive (said differently, you cannot do anything useful with it at the moment! :)). Now that we have the mechanism in place our plan is to slowly open up allowed operations.
167
168 To enable and test this feature read the document for both the [[Commons Groovy Module>>extensions:Extension.GroovyModuleCommons]] and the [[Platform Groovy Module>>extensions:Extension.GroovyModulePlatform]].
169
170 === Compilation customizers ===
171
172 Customizers can be registered to alter the Groovy script as it is compiled such as filtering System.exit() calls and adding timeout checks to loops to prevent infinite looping. Learn more: http://www.jroller.com/melix/entry/upcoming_groovy_goodness_automatic_thread
173
174 === Stop run-away scripts after a configurable timeout ===
175
176 You can now configure your wiki to stop Groovy scripts after a configurable amount of run time. For example if you wish to have a timeout of 10 seconds for your XWiki runtime, you'd configure xwiki's ##xwiki.properties## with:
177
178 {{code language="none"}}
179 groovy.compilationCustomizers=timedinterrupt
180 groovy.customizer.timedInterrupt.timeout=10
181 {{/code}}
182
183 == Shorthand HQL queries in the Query Manager ==
184
185 When you send a search query to the Query Manager such as {{code language="none"}}where doc.creationDate > '2008-01-01'{{/code}} It is now assumed that you meant:
186
187 {{code language="none"}}
188 select doc.fullName from XWikiDocument as doc where doc.creationDate > '2008-01-01'
189 {{/code}}
190
191 == Bug fixes and improvements ==
192
193 * Fixed wrong calculation of IDs for stats values making it impossible to upgrade a wiki to version 4.0 if statistics collection is enabled.
194 * Faster first startup time by not running a database migration when it is not needed.
195 * Simplify reverse proxy setup by making all HTTP redirects use relitive URLs.
196 * Add support for bold, italic and monospace in the TeX Renderer
197 * Was impossible to delete then recreate a subwiki with the same name, fixed.
198 * Fixed Javascript error when scrolling over Search Suggest results in Internet Explorer 6.
199 * Trying to change a document's parent from the REST service resulted in an error, fixed.
200 * It is now possible for non-administrators to execute cross-wiki XWQL queries.
201 * Move ComponentManager deprecated methods to Legacy modules
202 * New Groovy module in xwiki-commons
203 * Add legacy module structure for XWiki Rendering
204 * Have one Maven module per XWiki Rendering syntax
205 * Separate Event Syntax from Rendering API by moving it to a Syntax module
206 * Plain syntax and Event syntax have been moved out of Rendering API nto their own modules.
207 * [[XWIKI-7913>>http://jira.xwiki.org/browse/XWIKI-7913]] Could not register a Javascript or CSS skin extension for the whole wiki.
208
209
210 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+%28fixVersion+%3D+%224.1-milestone-1%22+%7C%7C+fixVersion+%3D+%224.1-milestone-2%22+%7C%7C+fixVersion+%3D+%224.1-rc-1%22+%7C%7C+fixVersion+%3D+%224.1%22%29&tempMax=1000]] fixed in the 4.1 release cycle.
211
212
213 == Upgrades ==
214
215 The following dependencies have been upgraded since XWiki Enterprise 4.0
216
217 === Upgraded in XWiki Enterprise Milestone 1 ===
218
219 * Tika 1.1
220 * JGroups 3.0.10
221 * Pygments 1.5
222 * Selenium 2.21
223 * Maven AspectJ Plugin 1.4
224 * commons-io 2.3
225 * Maven Shade plugin 1.6
226
227 === Upgraded in XWiki Enterprise Milestone 2 ===
228
229 * Restlet 2.0.14
230 ** Prior to Restlet 2.0.14, there was a REST bug allowing arbitrary filesystem read access for registered users.
231 * Reflections 0.9.7
232
233 = Tested Browsers =
234
235 Here's the list of browsers tested with this version (i.e. browsers that we've tested as working - Check the list of [[supported browsers>>dev:Community.BrowserSupportStrategy]]):
236
237
238 {{todo/}}
239
240
241 = Tested Databases =
242
243 {{todo/}}
244
245
246 = Known issues =
247
248 * [[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]]
249
250 = Test Report =
251
252 You can check the [[manual test report>>TestReports.ManualTestReportXE41]] to learn about what was tested and the results on various browsers.
253
254 = Backward Compatibility and Migration Notes =
255
256 == General Notes ==
257
258 {{info}}
259 If you're running in a multiwiki setup you'll also need to define the property //xwiki.store.migration.databases// in your //xwiki.cfg// file if you want to explicitly name some databases to be migrated as the default is now to migrate all databases. Database that are not migrated could not be accessed.
260 {{/info}}
261
262 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
263
264 {{warning}}
265 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.
266 {{/warning}}
267
268 == Issues specific to XWiki Enterprise 4.1 Milestone 1 ==
269
270 The old experimental real-time synchronization plugin for the WYSIWYG content editor has been retired. We hope that its functionality will be replaced by the real-time editing feature developed on the [[Wiki 3.0>>https://github.com/xwiki-contrib/wiki30]] project. If you want to continue using the old plugin you need to:
271
272 * take the code from [[##xwiki-contrib/retired## GitHub repo>>https://github.com/xwiki-contrib/retired/tree/master/xwiki-platform-wysiwyg-plugin-sync]]
273 * add the client and server side as dependencies to the WYSIWYG client and server side respectively
274 * modify ##WysiwygEditorFactory## to register the factory of the sync plugin
275 * rebuild the editor and update the jars and client side resources on your XWiki Enterprise instance
276
277 == API Breakages ==
278
279 The following APIs were modified since version 4.0:
280
281 * Breakage in Query module done to support adding several Filters to a Query:(((
282 {{code language="none"}}
283 org.xwiki.query.QueryFilter: Method 'public java.util.List filterResults(java.util.List)' has been added to an interface
284 {{/code}}
285 )))
286 * This method should have been internal from the beginning:(((
287 {{code language="none"}}
288 org.xwiki.environment.EnvironmentConfiguration: Class org.xwiki.environment.EnvironmentConfiguration removed
289 {{/code}}
290 )))
291 * The Job module is new and is still considered a "young API":(((
292 {{code language="none"}}
293 org.xwiki.job.AbstractJob: Changed type of field status from org.xwiki.job.internal.DefaultJobStatus to org.xwiki.job.internal.AbstractJobStatus
294 org.xwiki.job.AbstractJob: Return type of method 'protected org.xwiki.job.internal.DefaultJobStatus createNewStatus(org.xwiki.job.Request)' has been changed to org.xwiki.job.internal.AbstractJobStatus
295 org.xwiki.job.AbstractJob: Method 'protected java.lang.String getId()' has been removed
296 org.xwiki.job.AbstractRequest: Return type of method 'public java.lang.String getId()' has been changed to java.util.List
297 org.xwiki.job.Job: Method 'public void join()' has been added to an interface
298 org.xwiki.job.Job: Method 'public boolean join(long, java.util.concurrent.TimeUnit)' has been added to an interface
299 org.xwiki.job.JobManager: Method 'public org.xwiki.job.event.status.JobStatus getJobStatus(java.util.List)' has been added to an interface
300 org.xwiki.job.Request: Return type of method 'public java.lang.String getId()' has been changed to java.util.List
301 org.xwiki.job.event.JobEvent: Return type of method 'public java.lang.String getJobId()' has been changed to java.util.List
302 org.xwiki.job.event.JobFinishedEvent: Return type of method 'public java.lang.String getJobId()' has been changed to java.util.List
303 org.xwiki.job.event.JobStartedEvent: Return type of method 'public java.lang.String getJobId()' has been changed to java.util.List
304 org.xwiki.job.event.status.JobStatus: Method 'public java.util.Date getEndDate()' has been added to an interface
305 org.xwiki.job.event.status.JobStatus: Method 'public java.util.Date getStartDate()' has been added to an interface
306 {{/code}}
307 )))
308 * The Extension module is relatively new and is still undergoing some API tuning:(((
309 {{code language="none"}}
310 org.xwiki.extension.job.plan.ExtensionPlan: Return type of method 'public java.util.Collection getTree()' has been changed to org.xwiki.extension.job.plan.ExtensionPlanTree
311 org.xwiki.extension.version.VersionConstraint: Method 'public boolean isCompatible(org.xwiki.extension.version.Version)' has been added to an interface
312 {{/code}}
313 )))
314 * This class was added in 3.2M2 by error in a user-public package. It's been moved again in the internal package as it should have been. We don't expect many users to be affected by this:(((
315 {{code language="none"}}
316 com.xpn.xwiki.doc.merge.MergeUtils: Class com.xpn.xwiki.doc.merge.MergeUtils removed
317 {{/code}}
318 )))
319 * In 2.2M1 we refactored BaseCollection to add getXClass() but we forgot to add it to the ObjectInterface interface. Even though this could break user we think it's very limited since nobody should implement directly ObjectInterface; instead everyone should extend BaseClass or BaseCollection:(((
320 {{code language="none"}}
321 com.xpn.xwiki.objects.ObjectInterface: Method 'public com.xpn.xwiki.objects.classes.BaseClass getXClass(com.xpn.xwiki.XWikiContext)' has been added to an interface
322 {{/code}}
323 )))
324 * The Autotag plugin has been extracted from the oldcore module and is now a module on its own so the following are not real breakages:(((
325 {{code language="none"}}
326 com.xpn.xwiki.plugin.autotag.AutoTagPlugin: Class com.xpn.xwiki.plugin.autotag.AutoTagPlugin removed
327 com.xpn.xwiki.plugin.autotag.AutoTagPluginAPI: Class com.xpn.xwiki.plugin.autotag.AutoTagPluginAPI removed
328 com.xpn.xwiki.plugin.autotag.FrenchStemmer: Class com.xpn.xwiki.plugin.autotag.FrenchStemmer removed
329 com.xpn.xwiki.plugin.autotag.Tag: Class com.xpn.xwiki.plugin.autotag.Tag removed
330 com.xpn.xwiki.plugin.autotag.TagCloud: Class com.xpn.xwiki.plugin.autotag.TagCloud removed
331 {{/code}}
332 )))
333 * The WYSIWYG Diff and Sync plugins have been extracted into their own modules so the following are not real breakages:(((
334 {{code language="none"}}
335 org.xwiki.gwt.wysiwyg.client.Images: Method 'public com.google.gwt.resources.client.ImageResource sync()' has been removed
336 org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String sync()' has been removed
337 org.xwiki.gwt.wysiwyg.client.diff.AddDelta: Class org.xwiki.gwt.wysiwyg.client.diff.AddDelta removed
338 org.xwiki.gwt.wysiwyg.client.diff.ChangeDelta: Class org.xwiki.gwt.wysiwyg.client.diff.ChangeDelta removed
339 org.xwiki.gwt.wysiwyg.client.diff.Chunk: Class org.xwiki.gwt.wysiwyg.client.diff.Chunk removed
340 org.xwiki.gwt.wysiwyg.client.diff.DeleteDelta: Class org.xwiki.gwt.wysiwyg.client.diff.DeleteDelta removed
341 org.xwiki.gwt.wysiwyg.client.diff.Delta: Class org.xwiki.gwt.wysiwyg.client.diff.Delta removed
342 org.xwiki.gwt.wysiwyg.client.diff.Diff: Class org.xwiki.gwt.wysiwyg.client.diff.Diff removed
343 org.xwiki.gwt.wysiwyg.client.diff.DiffAlgorithm: Class org.xwiki.gwt.wysiwyg.client.diff.DiffAlgorithm removed
344 org.xwiki.gwt.wysiwyg.client.diff.DiffException: Class org.xwiki.gwt.wysiwyg.client.diff.DiffException removed
345 org.xwiki.gwt.wysiwyg.client.diff.DifferentiationFailedException: Class org.xwiki.gwt.wysiwyg.client.diff.DifferentiationFailedException removed
346 org.xwiki.gwt.wysiwyg.client.diff.PatchFailedException: Class org.xwiki.gwt.wysiwyg.client.diff.PatchFailedException removed
347 org.xwiki.gwt.wysiwyg.client.diff.Revision: Class org.xwiki.gwt.wysiwyg.client.diff.Revision removed
348 org.xwiki.gwt.wysiwyg.client.diff.RevisionVisitor: Class org.xwiki.gwt.wysiwyg.client.diff.RevisionVisitor removed
349 org.xwiki.gwt.wysiwyg.client.diff.SimpleDiff: Class org.xwiki.gwt.wysiwyg.client.diff.SimpleDiff removed
350 org.xwiki.gwt.wysiwyg.client.diff.ToString: Class org.xwiki.gwt.wysiwyg.client.diff.ToString removed
351 org.xwiki.gwt.wysiwyg.client.diff.myers.DiffNode: Class org.xwiki.gwt.wysiwyg.client.diff.myers.DiffNode removed
352 org.xwiki.gwt.wysiwyg.client.diff.myers.MyersDiff: Class org.xwiki.gwt.wysiwyg.client.diff.myers.MyersDiff removed
353 org.xwiki.gwt.wysiwyg.client.diff.myers.PathNode: Class org.xwiki.gwt.wysiwyg.client.diff.myers.PathNode removed
354 org.xwiki.gwt.wysiwyg.client.diff.myers.Snake: Class org.xwiki.gwt.wysiwyg.client.diff.myers.Snake removed
355 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncPlugin: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncPlugin removed
356 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncPluginFactory: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncPluginFactory removed
357 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncResult: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncResult removed
358 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncService: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncService removed
359 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncServiceAsync: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncServiceAsync removed
360 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncStatus: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncStatus removed
361 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncTools: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncTools removed
362 org.xwiki.wysiwyg.server.plugin.sync.SyncEngine: Class org.xwiki.wysiwyg.server.plugin.sync.SyncEngine removed
363 org.xwiki.wysiwyg.server.plugin.sync.SyncException: Class org.xwiki.wysiwyg.server.plugin.sync.SyncException removed
364 {{/code}}
365 )))

Get Connected