Version 10.1 by Thomas Mortagne on 2015/12/14

Hide last authors
Thomas Mortagne 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 7.4 Milestone 1) =
10
11 [[Full list of issues fixed and Dashboard for 7.4>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=13590]].
12
13 == Miscellaneous ==
14
Guillaume Delhumeau 9.1 15 * The "annotations" button in the "More Actions" menu has been moved in the same menu but with other actions and renamed "Annotate".(((
16 {{image reference="Annotate.png"/}}
17 )))
Thomas Mortagne 1.1 18
19 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.
20
21 = For Developers =
22
Thomas Mortagne 6.1 23 == New lifespan LRU Cache setup ==
Thomas Mortagne 1.1 24
Thomas Mortagne 6.1 25 It's now possible to define the maximum time to live since the entry is put in the cache. It used to be possible to set it only since the last time the value was used.
Thomas Mortagne 1.1 26
Thomas Mortagne 6.1 27 {{code language="java"}}
28 // Configure cache eviction policy
29 LRUEvictionConfiguration lru = new LRUEvictionConfiguration();
30 // Set maximum size of the cache as 1000 entries
31 lru.setMaxEntries(1000);
32 // Set the maximum time to live since when the entry is used to 1 hour
33 lru.setMaxIdle(3600)
34 // Set the maximum time to live since when the entry is put in the cache to 1 hour
35 lru.setLifespan(3600)
36 {{/code}}
37
Thomas Mortagne 7.1 38 [[Cache Macro>>extensions:Extension.Cache Macro]] and [[Rendering Cache>>platform:AdminGuide.Performances||anchor="HRenderingcache"]] are now based on this behavior.
39
Thomas Mortagne 1.1 40 == Deprecated and Retired projects ==
41
Thomas Mortagne 2.1 42 * XML-RPC module have been moved to https://github.com/xwiki-contrib/xwiki-platform-xmlrpc
Thomas Mortagne 1.1 43
44 == Upgrades ==
45
46 The following dependencies have been upgraded:
47
Sergiu Dumitriu 7.2 48 * [[Batik 1.8>>http://jira.xwiki.org/browse/XWIKI-12904]]
Thomas Mortagne 1.1 49 * [[FOP 2.0>>http://jira.xwiki.org/browse/XWIKI-12871]]
Thomas Mortagne 3.1 50 * [[Jackson 2.6.4>>http://jira.xwiki.org/browse/XCOMMONS-893]]
Thomas Mortagne 5.1 51 * [[guava 19>>http://jira.xwiki.org/browse/XCOMMONS-894]]
Thomas Mortagne 1.1 52
53 == Miscellaneous ==
54
Vincent Massol 4.2 55 * [[WebJars URL format>>extensions:Extension.WebJars Integration||anchor="HURLFormat"]] now supports a ##wiki## query string parameter to specify the wiki in which the webjars resource is available. For example: {{code language="none"}}/xwiki/webjars/AjaxQ/0.0.2/ajaxq.js?wiki=mywiki{{/code}}
Thomas Mortagne 1.1 56
57 = Translations =
58
59 The following translations have been updated:
60
61 {{language codes="none, none"/}}
62
63 = Tested Browsers & Databases =
64
65 {{warning}}
66 The QA Tests are executed after the release has been done. Thus, they are being prepared now and will be published soon.
67 {{/warning}}
68
69 {{comment}}
70 TODO: uncomment and update with proper link when the report is ready.
71 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
72 {{/comment}}
73
74 = Known issues =
75
76 * [[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]]
77
78 = Backward Compatibility and Migration Notes =
79
80 == General Notes ==
81
82 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.
83
84 == API Breakages ==
85
86 The following APIs were modified since <project> <version - 1>:
87
88 {{code language="none"}}
89 <clirr output here>
90 {{/code}}

Get Connected