Version 28.1 by Guillaume Delhumeau on 2014/12/18

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 <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
13 == Menu Application ==
14
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.
17
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 == Mail Feature ==
27
28 * The mail feature has a new Category in the Admin UI (see the [[Mail Application>>extensions:Extension.Mail Application]] for details).(((
29 {{image reference="emailcategory.png"/}}
30 )))
31 * There's now the possibility to configure default BCC addresses which will be added by default to all emails sent using the [[Mail Sender API>>extensions:Extension.Mail Sender API]].(((
32 {{image reference="emailsend.png"/}}
33 )))
34 * The [[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(((
35 {{code language="none"}}
36 #-# [Since 6.4M2]
37 #-# Defines which authorization checks are done when sending mails using the Mail Sender Script Service.
38 #-# Example of valid values:
39 #-# - "programmingrights": the current document must have Programming Rights
40 #-# - "alwaysallow": no check is performed. This is useful when running XWiki in a secure environment where we
41 #-# want to allow all users to be able to send emails through the Script Service.
42 #-# The default is:
43 # mail.sender.scriptServiceCheckerHint = programmingrights
44 {{/code}}
45 )))
46
47 == Flamingo ==
48
49 The history table, under each page, is now responsive to the screen size:
50
51 (((
52 {{image reference="responsive-history.png"/}}
53 )))
54
55 .
56
57 == Miscellaneous ==
58
59 * 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.
60 * The list off columns in the UserDirectory customization screen is now sorted alphabetically
61
62 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.
63
64 = For Developers =
65
66 == Mail Sender Permissions ==
67
68 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:
69
70 {{code language="java"}}
71 @Role
72 @Unstable
73 public interface ScriptServicePermissionChecker
74 {
75 /**
76 * @param message the message to check for authorization
77 * @exception MessagingException if the message is not allowed to be sent
78 */
79 void check(MimeMessage message) throws MessagingException;
80 }
81 {{/code}}
82
83 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.
84
85 == Icon Picker ==
86
87 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.
88
89 (((
90 {{image reference="icon-picker.png"/}}
91 )))
92
93 This picker is already used in [[Application Within Minutes>>extensions:Extension.App Within Minutes Application]] for the application's icon selection.
94
95 == Skin Extensions ==
96
97 [[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:
98
99 (((
100 {{image reference="contentTypeLESS.png"/}}.
101 )))
102
103 == Admin ConfigurableClass ==
104
105 The [[##ConfigurableClass## mechanism>>extensions:Extension.Administration Application||anchor="HMakingyourapplicationconfigurablewithConfigurableClass"]] has been improved to be able to contribute new categories in the Admin UI. For example the "Email" Category in the following screenshot is contributed through a ##ConfigurableClass##:
106
107 {{image reference="emailcategory.png"/}}
108
109 It was configured using:
110
111 {{image reference="emailconfigurableclass.png"/}}
112
113 == Deprecated and Retired projects ==
114
115 <description of deprecated and retired projects>
116
117 == Upgrades ==
118
119 The following dependencies have been upgraded:
120
121 * [[JGroups 3.6.1>>http://jira.xwiki.org/browse/XWIKI-11523]]
122 * [[Pygments 2.0.1>>http://jira.xwiki.org/browse/XWIKI-11522]]
123 * [[Joda-Time 2.6>>http://jira.xwiki.org/browse/XWIKI-11516]]
124 * [[Bootstrap 3.3.1>>http://jira.xwiki.org/browse/XWIKI-11381]]
125 * [[Bootswatch 3.3.1+2>>http://jira.xwiki.org/browse/XWIKI-11569]]
126
127 == Miscellaneous ==
128
129 * 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"]].
130 * Added getCurrentWikiDescriptor() method to the wiki API and script service to be consistent with the existing getCurrentWikiId() method
131 * 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.
132
133 = Translations =
134
135 The following translations have been updated:
136
137 {{language codes="none, none"/}}
138
139 = Tested Browsers & Databases =
140
141 {{include reference="TestReports.ManualTestReportSummaryXWiki64M2"/}}
142
143 = Performances tests compared to <last super stable version> =
144
145 <a summary of the comparison with latest super stable version>
146
147 More details on <link to the test report>.
148
149 = Known issues =
150
151 * [[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]]
152
153 = Backward Compatibility and Migration Notes =
154
155 == General Notes ==
156
157 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.
158
159 == Issues specific to XWiki <version> ==
160
161 <issues specific to the project>
162
163 == API Breakages ==
164
165 The following APIs were modified since <project> <version - 1>:
166
167 {{code language="none"}}
168 <clirr output here>
169 {{/code}}

Get Connected