Wiki source code of Release Notes for XWiki 6.4-milestone-2
Version 8.1 by Guillaume Delhumeau on 2014/12/04
Show last authors
author | version | line-number | content |
---|---|---|---|
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 | == <feature N> == | ||
14 | |||
15 | <description of feature N> | ||
16 | |||
17 | == Miscellaneous == | ||
18 | |||
19 | * 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((( | ||
20 | {{code language="none"}} | ||
21 | #-# [Since 6.4M2] | ||
22 | #-# Defines which authorization checks are done when sending mails using the Mail Sender Script Service. | ||
23 | #-# Example of valid values: | ||
24 | #-# - "programmingrights": the current document must have Programming Rights | ||
25 | #-# - "alwaysallow": no check is performed. This is useful when running XWiki in a secure environment where we | ||
26 | #-# want to allow all users to be able to send emails through the Script Service. | ||
27 | #-# The default is: | ||
28 | # mail.sender.scriptServiceCheckerHint = programmingrights | ||
29 | {{/code}} | ||
30 | ))) | ||
31 | * 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. | ||
32 | |||
33 | 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. | ||
34 | |||
35 | = For Developers = | ||
36 | |||
37 | == Mail Sender Permissions == | ||
38 | |||
39 | 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: | ||
40 | |||
41 | {{code language="java"}} | ||
42 | @Role | ||
43 | @Unstable | ||
44 | public interface ScriptServicePermissionChecker | ||
45 | { | ||
46 | /** | ||
47 | * @param message the message to check for authorization | ||
48 | * @exception MessagingException if the message is not allowed to be sent | ||
49 | */ | ||
50 | void check(MimeMessage message) throws MessagingException; | ||
51 | } | ||
52 | {{/code}} | ||
53 | |||
54 | 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. | ||
55 | |||
56 | == Deprecated and Retired projects == | ||
57 | |||
58 | <description of deprecated and retired projects> | ||
59 | |||
60 | == Upgrades == | ||
61 | |||
62 | The following dependencies have been upgraded: | ||
63 | |||
64 | * [[JGroups 3.6.1>>http://jira.xwiki.org/browse/XWIKI-11523]] | ||
65 | * [[Pygments 2.0.1>>http://jira.xwiki.org/browse/XWIKI-11522]] | ||
66 | * [[Joda-Time 2.6>>http://jira.xwiki.org/browse/XWIKI-11516]] | ||
67 | |||
68 | == Miscellaneous == | ||
69 | |||
70 | * 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"]]. | ||
71 | |||
72 | = Translations = | ||
73 | |||
74 | The following translations have been updated: | ||
75 | |||
76 | {{language codes="none, none"/}} | ||
77 | |||
78 | = Tested Browsers & Databases = | ||
79 | |||
80 | {{include reference="TestReports.ManualTestReportTemplateSummary"/}} | ||
81 | |||
82 | = Performances tests compared to <last super stable version> = | ||
83 | |||
84 | <a summary of the comparison with latest super stable version> | ||
85 | |||
86 | More details on <link to the test report>. | ||
87 | |||
88 | = Known issues = | ||
89 | |||
90 | * [[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]] | ||
91 | |||
92 | = Backward Compatibility and Migration Notes = | ||
93 | |||
94 | == General Notes == | ||
95 | |||
96 | 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. | ||
97 | |||
98 | == Issues specific to XWiki <version> == | ||
99 | |||
100 | <issues specific to the project> | ||
101 | |||
102 | == API Breakages == | ||
103 | |||
104 | The following APIs were modified since <project> <version - 1>: | ||
105 | |||
106 | {{code language="none"}} | ||
107 | <clirr output here> | ||
108 | {{/code}} |