Version 21.1 by Thomas Mortagne on 2014/12/16

Hide last authors
Vincent Massol 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 6.4-milestone-1) =
10
11 [[Full list of issues fixed and Dashboard for <version>>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=<fill id here>]].
12
Ecaterina Moraru (Valica) 15.1 13 == Menu Application ==
Vincent Massol 1.1 14
Ecaterina Moraru (Valica) 15.1 15 Taking advantage of the ability to have LESS inside our [[StyleSheetExtensions>>extensions:Extension.Skin Extension Plugin||anchor="HUseLESS"]], we improved the [[Menu Application>>extensions:Extension.Menu Application]], on Flamingo based skins, making it responsive and also adapting its styling according to the active [[Flamingo Theme>>extensions:Extension.Flamingo Theme Application]].
16 Colibri based skins preserve the initial styling.
Vincent Massol 1.1 17
Ecaterina Moraru (Valica) 15.1 18 {{gallery}}
19 image:menu_flamingo_charcoal.png
20 image:menu_flamingo_united.png
21 image:menu_flamingo_darkly.png
22 image:menu_flamingo_simplex.png
23 image:menu_flamingo_charcoal_responsive.png
24 {{/gallery}}
25
26
Vincent Massol 1.1 27 == Miscellaneous ==
28
Vincent Massol 2.1 29 * The new [[Mail Sender API>>extensions:Extension.Mail Sender API]] now checks for permission before sending emails, when using it from scripts (i.e. when using the Mail Sender Script Service). There are currently 2 possible strategies that you configure in your ##xwiki.properties## file(((
30 {{code language="none"}}
31 #-# [Since 6.4M2]
32 #-# Defines which authorization checks are done when sending mails using the Mail Sender Script Service.
33 #-# Example of valid values:
34 #-# - "programmingrights": the current document must have Programming Rights
Vincent Massol 2.2 35 #-# - "alwaysallow": no check is performed. This is useful when running XWiki in a secure environment where we
Vincent Massol 2.1 36 #-# want to allow all users to be able to send emails through the Script Service.
37 #-# The default is:
38 # mail.sender.scriptServiceCheckerHint = programmingrights
39 {{/code}}
40 )))
Guillaume Delhumeau 7.1 41 * A list of icons supported by XWiki have been created, with mapping for Silk and Font Awesome. Which means that we now propose a list of icons that are both present in Silk and Font Awesome.
Eduard Moraru 9.2 42 * The list off columns in the UserDirectory customization screen is now sorted alphabetically
Vincent Massol 1.1 43
44 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+%22<version>%22&tempMax=1000]] fixed in this release.
45
46 = For Developers =
47
Vincent Massol 2.1 48 == Mail Sender Permissions ==
Vincent Massol 1.1 49
Vincent Massol 2.1 50 There's now a [[pluggable permission checker>>extensions:Extension.Mail Sender API||anchor="HPluggablePermissionChecker"]] used for checking if a mail should be sent, when using the Mail Sender Script Service. Two implementations are provided (see above) but you can also provide your own implementation by implementing the ##org.xwiki.mail.script.ScriptServicePermissionChecker## component role:
Vincent Massol 1.1 51
Vincent Massol 2.1 52 {{code language="java"}}
53 @Role
54 @Unstable
55 public interface ScriptServicePermissionChecker
56 {
57 /**
58 * @param message the message to check for authorization
59 * @exception MessagingException if the message is not allowed to be sent
60 */
61 void check(MimeMessage message) throws MessagingException;
62 }
63 {{/code}}
64
65 For example you could imagine implementing checks on the size of the email or who the recipients are, run the content of the mail through some filter, etc.
66
Guillaume Delhumeau 9.1 67 == Icon Picker ==
68
69 An [[icon picker>>extensions:Extension.Icon Theme Application||anchor="#HIconPicker"]] has been created to help users selecting an image in the list of supported icons.
70
71 (((
72 {{image reference="icon-picker.png"/}}
73 )))
74
Guillaume Delhumeau 10.1 75 This picker is already used in [[Application Within Minutes>>extensions:Extension.App Within Minutes Application]] for the application's icon selection.
76
Guillaume Delhumeau 13.1 77 == Skin Extensions ==
78
79 [[Now you can use LESS in your Skin Extensions!>>extensions:Extension.Skin Extension Plugin||anchor="HUseLESS"]]. You just need to set the new property "Content Type" to LESS inside your Skin Extension object:
80
81 (((
82 {{image reference="contentTypeLESS.png"/}}.
83 )))
84
Vincent Massol 1.1 85 == Deprecated and Retired projects ==
86
87 <description of deprecated and retired projects>
88
89 == Upgrades ==
90
91 The following dependencies have been upgraded:
92
Thomas Mortagne 3.1 93 * [[JGroups 3.6.1>>http://jira.xwiki.org/browse/XWIKI-11523]]
Thomas Mortagne 4.1 94 * [[Pygments 2.0.1>>http://jira.xwiki.org/browse/XWIKI-11522]]
Thomas Mortagne 5.1 95 * [[Joda-Time 2.6>>http://jira.xwiki.org/browse/XWIKI-11516]]
Guillaume Delhumeau 14.1 96 * [[Bootstrap 3.3.1>>http://jira.xwiki.org/browse/XWIKI-11381]]
97 * [[Bootswatch 3.3.1+2>>http://jira.xwiki.org/browse/XWIKI-11569]]
Vincent Massol 1.1 98
99 == Miscellaneous ==
100
Eduard Moraru 20.3 101 * It's now possible to know what namespace a ComponentManager instance is associated with by casting it to ##org.xwiki.component.manager.NamespacedComponentManager##. See [[Component Module documentation>>http://extensions.xwiki.org/xwiki/bin/view/Extension/Component+Module||anchor="HNamespacedComponentManager"]].
Eduard Moraru 20.2 102 * Added getCurrentWikiDescriptor() method to the wiki API and script service to be consistent with the existing getCurrentWikiId() method
Thomas Mortagne 21.1 103 * The ClassLoader automatically set as Thread ClassLoader is now dynamic meaning that any modification of the context wiki will automatically change the actual Thread ClassLoader. It used to be set to whatever was the wiki in the URL at ExecutionContext init.
Vincent Massol 1.1 104
105 = Translations =
106
107 The following translations have been updated:
108
109 {{language codes="none, none"/}}
110
111 = Tested Browsers & Databases =
112
Manuel Smeria 11.1 113 {{include reference="TestReports.ManualTestReportSummaryXWiki64M2"/}}
Vincent Massol 1.1 114
115 = Performances tests compared to <last super stable version> =
116
117 <a summary of the comparison with latest super stable version>
118
119 More details on <link to the test report>.
120
121 = Known issues =
122
123 * [[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]]
124
125 = Backward Compatibility and Migration Notes =
126
127 == General Notes ==
128
129 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.
130
131 == Issues specific to XWiki <version> ==
132
133 <issues specific to the project>
134
135 == API Breakages ==
136
137 The following APIs were modified since <project> <version - 1>:
138
139 {{code language="none"}}
140 <clirr output here>
141 {{/code}}

Get Connected