Version 13.1 by Guillaume Delhumeau 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
Thomas Mortagne 11.1 7 This is our last stabilization branch for the XWiki 7.x Cycle. It brings polishing and stabilization for the Nested Pages feature and the changes in UI that resulted from it. It also introduce a new API to indicate how long a cache entry to stay in the cache (since it was inserted in the cache).
Thomas Mortagne 1.1 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]]
Guillaume Delhumeau 13.1 52 * [[Less4j 1.15.4>>http://jira.xwiki.org/browse/XWIKI-12905]]
Thomas Mortagne 1.1 53
54 == Miscellaneous ==
55
Vincent Massol 4.2 56 * [[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 57
58 = Translations =
59
60 The following translations have been updated:
61
Thomas Mortagne 12.1 62 {{language codes="de, fr, zh"/}}
Thomas Mortagne 1.1 63
64 = Tested Browsers & Databases =
65
66 {{warning}}
67 The QA Tests are executed after the release has been done. Thus, they are being prepared now and will be published soon.
68 {{/warning}}
69
70 {{comment}}
71 TODO: uncomment and update with proper link when the report is ready.
72 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
73 {{/comment}}
74
75 = Known issues =
76
77 * [[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]]
78
79 = Backward Compatibility and Migration Notes =
80
81 == General Notes ==
82
83 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.
84
85 == API Breakages ==
86
87 The following APIs were modified since <project> <version - 1>:
88
89 {{code language="none"}}
90 <clirr output here>
91 {{/code}}

Get Connected