Last modified by Thomas Mortagne on 2017/03/24

Hide last authors
Guillaume Delhumeau 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 37.4 7 This release mostly focuses on the Flaming skin and sets it as the new default skin for XWiki. A new themes application for the new skin is introduces, along with the AppBar set by default and other various UI polishes and improvements. On the developers side, a new "blame" API has been introduced and some dependencies were upgraded. Finally, a considerable amount of bug fixes (34) and improvements (32) were made so make sure to try it out.
Guillaume Delhumeau 1.1 8
Vincent Massol 39.1 9 {{info}}
Thomas Mortagne 43.1 10 Since the Flamingo skin is now the default skin and we wish to make it as good as possible for the final 6.2 release, please report as many issues you notice in our [[Issue Tracker>>https://jira.xwiki.org/browse/XWIKI/component/13441]]. Thanks!
Vincent Massol 39.1 11 {{/info}}
12
Guillaume Delhumeau 10.1 13 = New and Noteworthy (since XWiki 6.2M1) =
Guillaume Delhumeau 1.1 14
Thomas Mortagne 43.1 15 [[Full list of issues fixed and Dashboard for 6.2>>https://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=12494]].
Guillaume Delhumeau 1.1 16
Guillaume Delhumeau 2.1 17 == Flamingo ==
Guillaume Delhumeau 1.1 18
Guillaume Delhumeau 37.1 19 * **[[Flamingo>>extensions:Extension.Flamingo Skin]] is the new default skin in XWiki!**
Guillaume Delhumeau 2.1 20 * The [[applications panel>>extensions:Extension.Panels Application||anchor="HApplicationPanel"]] (also known as the "Applications Bar") has been set by default on the left panel.
21 * The default icon theme is now [[Font Awesome>>extensions:Extension.Font Awesome Icon Theme]].
Guillaume Delhumeau 10.1 22 * A new application has been made to manage color themes on Flamingo. It does not only permit to change colors anymore, but also the typography, etc... That is why it is called [[extensions:Extension.Flamingo Theme Application]].
23 {{image reference="FlamingoThemeEditor.png" width="50%"/}}
Guillaume Delhumeau 6.1 24 * By default, a new theme is enabled: ##FlamingoDefaultTheme##, made with the new application described above.
Guillaume Delhumeau 24.1 25 * [[extensions:Extension.Colibri Skin]] can use the themes from Flamingo thanks to a mapping between [[extensions:Extension.Flamingo Theme Application]] and [[extensions:Extension.Color Theme Application]]. The results may not be perfect though.
Eduard Moraru 18.2 26 * Improved Login form(((
Ecaterina Moraru (Valica) 17.1 27 {{image reference="flamingoLogin.png"/}}
28 )))
Marius Dumitru Florea 42.1 29 * The page headers from Colibri ColorThemes can be displayed for Flamingo skin by setting the ##$displayPageHeader## to ##true## in ##layoutExtraVars.vm##. By default this variable is set to false(((
Vincent Massol 39.2 30 [[{{image reference="Flamingo_displayPageHeader_false.png" width="400px"/}}>>attach:Flamingo_displayPageHeader_false.png]] [[{{image reference="Flamingo_displayPageHeader_true.png" width="400px"/}}>>attach:Flamingo_displayPageHeader_true.png]]
Ecaterina Moraru (Valica) 29.1 31 )))
Vincent Massol 39.3 32 * You can control whether or not you want to display the create and the "more actions" menus with 2 new variables: ##$displayCreateMenu## and ##$displayMoreActionsMenu##. You can manually set them in the ##layoutExtraVars.vm## file.(((
Guillaume Delhumeau 2.1 33 You can see the results of all this changes in the following screenshot:
Guillaume Delhumeau 4.1 34 {{image reference="flamingo.png" width="65%"/}}
Vincent Massol 39.3 35 )))
Guillaume Delhumeau 2.1 36
Guillaume Delhumeau 1.1 37 == Miscellaneous ==
38
Ecaterina Moraru (Valica) 14.1 39 * ModalPopup and LightBox resource components are now responsive. For small resolutions their width will occupy the whole screen.(((
40 {{image reference="afterAddUsers.png"/}} {{image reference="afterSharebyEmail.png"/}}
41 )))
Thomas Mortagne 43.1 42 * Deleted document translations can now be restored, even if the main document or a different translation has already been restored (as long as no conflict exists). See [[XWIKI-9567>>https://jira.xwiki.org/browse/XWIKI-9567]] and the [[documentation>>extensions:Extension.Index Application||anchor="HRestoringatranslation"]].
Guillaume Delhumeau 1.1 43
Thomas Mortagne 43.1 44 See the [[full list of JIRA issues>>https://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+%226.2-milestone-2%22&tempMax=1000]] fixed in this release.
Guillaume Delhumeau 1.1 45
46 = For Developers =
47
Sergiu Dumitriu 26.1 48 == Building XWiki is now possible using Maven 3.1 and 3.2 ==
49
Thomas Mortagne 43.1 50 The packager Maven plugin was using temporary APIs used only in Maven 3.0, which [[made it impossible to build modules depending on that plugin with other versions of Maven than 3.0.x>>https://jira.xwiki.org/browse/XWIKI-9760]]. This has now been fixed, and the build works with any 3.x Maven version.
Sergiu Dumitriu 26.1 51
Denis Gervalle 11.1 52 == Blame generic API and Script Service ==
Guillaume Delhumeau 1.1 53
Denis Gervalle 11.1 54 Provides the implementation of the blame/annotate/praise algorithm.
Guillaume Delhumeau 1.1 55
Denis Gervalle 11.1 56 Like the diff module API, this API is not tied to any type so you have to first transform the datas you want to blame into lists and you will be able to link them with any kind of revision metadata. Blame will link each elements of the initial list with the revision metadata of the original revision it came from. You will have to call blame in loop with each revised list, starting from the most recent one, until all element are annotated.
57
58 See [[Blame Module>>extensions:Extension.Blame Module]] for more information.
59
Guillaume Delhumeau 1.1 60 == Upgrades ==
61
62 The following dependencies have been upgraded:
63
Thomas Mortagne 43.1 64 * [[Velocity Tools 2.0>>https://jira.xwiki.org/browse/XWIKI-5347]]
65 * [[Jython 2.7-b3>>https://jira.xwiki.org/browse/XWIKI-10837]]
66 * [[httpclient 4.3.5>>https://jira.xwiki.org/browse/XCOMMONS-631]]
67 * [[Guava 18.0>>https://jira.xwiki.org/browse/XCOMMONS-632]]
Guillaume Delhumeau 1.1 68
69 == Miscellaneous ==
70
Thomas Mortagne 43.1 71 * New ##$doc.isTranslation()## method is available in the web API. See [[XWIKI-10805>>https://jira.xwiki.org/browse/XWIKI-10805]]
Guillaume Delhumeau 27.1 72 * ##xwiki-platform-font-awesome## has been moved in the ##xwiki-platform-icon## module and renamed ##xwiki-platform-icon-fontawesome##.
Guillaume Delhumeau 21.1 73 * [[Icon Theme>>extensions:Extension.Icon Theme Application]] can now use JavaScript Extensions.
Guillaume Delhumeau 23.1 74 * The [[Icon class>>https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwiki-platform-icon/xwiki-platform-icon-api/src/main/java/org/xwiki/icon/Icon.java]] of the [[Icon Theme>>extensions:Extension.Icon Theme Application]] does not store the name of the icon anymore, since it is already stored in a map in the [[IconSet class>>https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwiki-platform-icon/xwiki-platform-icon-api/src/main/java/org/xwiki/icon/IconSet.java]] (better memory usage).
Guillaume Delhumeau 25.1 75 * It is now possible to compile a LESS file or to compute a color theme from an other skin.
Guillaume Delhumeau 28.1 76 * ##xwiki-platform-less-css## has been renamed ##xwiki-platform-lesscss## in order to be consistent with our naming conventions.
Guillaume Delhumeau 1.1 77
78 = Tested Browsers & Databases =
79
Manuel Smeria 23.2 80 {{include reference="TestReports.ManualTestReportXWiki62M2Summary"/}}
Guillaume Delhumeau 1.1 81
82 = Known issues =
83
Thomas Mortagne 43.1 84 * [[Bugs we know about>>https://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]]
Guillaume Delhumeau 1.1 85
86 = Backward Compatibility and Migration Notes =
87
88 == General Notes ==
89
90 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.
91
92 == API Breakages ==
93
Eduard Moraru 37.3 94 The following APIs were modified since XWiki 6.1:
Guillaume Delhumeau 1.1 95
Vincent Massol 41.1 96 * Young APIs:(((
Eduard Moraru 38.1 97 {{code language="none"}}
98 org.xwiki.rendering.transformation.RenderingContext: Method 'public org.xwiki.rendering.syntax.Syntax getTargetSyntax()' has been added to an interface
99 {{/code}}
100
101 {{code language="none"}}
102 org.xwiki.wiki.descriptor.WikiDescriptorManager: Method 'public java.util.Collection getAllIds()' has been added to an interface
Vincent Massol 41.1 103 {{/code}}
Eduard Moraru 38.1 104
Vincent Massol 41.1 105 {{code language="none"}}
Eduard Moraru 38.1 106 org.xwiki.mail.MailSender: Method 'public void send(javax.mail.internet.MimeMessage, javax.mail.Session, org.xwiki.mail.MailResultListener)' has been removed
107 org.xwiki.mail.MailSender: Method 'public void sendAsynchronously(javax.mail.internet.MimeMessage, javax.mail.Session, org.xwiki.mail.MailResultListener)' has been added to an interface
108 org.xwiki.mail.MailResultListener: Parameter 2 of 'public void onError(javax.mail.internet.MimeMessage, java.lang.Throwable)' has changed its type to java.lang.Exception
109 org.xwiki.mail.script.MimeMessageWrapper: Parameter 1 of 'public MimeMessageWrapper(javax.mail.internet.MimeMessage, javax.mail.Session, org.xwiki.mail.MailSender, org.xwiki.context.Execution, org.xwiki.component.manager.ComponentManager)' has changed its type to org.xwiki.mail.internal.ExtendedMimeMessage
110 org.xwiki.mail.script.MimeMessageWrapper: Return type of method 'public javax.mail.internet.MimeMessage getMessage()' has been changed to org.xwiki.mail.internal.ExtendedMimeMessage
111 {{/code}}
Vincent Massol 41.1 112 )))
113 * The extended class got moved to a new package with the upgrade to velocity-tools 2.0 and the old location got deprecated.(((
Eduard Moraru 38.1 114 {{code language="none"}}
115 org.xwiki.velocity.XWikiWebappResourceLoader: Removed org.apache.velocity.tools.view.servlet.WebappLoader from the list of superclasses
116 {{/code}}
Vincent Massol 41.1 117 )))

Get Connected