Wiki source code of Release Notes for XWiki 8.1 Milestone 2
Version 10.1 by Vincent Massol on 2016/04/11
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
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 | |||
![]() |
8.2 | 9 | = New and Noteworthy (since XWiki 8.1 Milestone 1) = |
![]() |
1.1 | 10 | |
11 | [[Full list of issues fixed and Dashboard for <version>>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=<fill id here>]]. | ||
12 | |||
![]() |
9.1 | 13 | == Documents Macro Improvement == |
![]() |
1.1 | 14 | |
![]() |
9.1 | 15 | The [[Documents Macro>>extensions:Extension.Documents Macro||anchor="HUsage"]] now supports a ##location## parameter to display all documents having their full reference matching the ##location## value. |
![]() |
1.1 | 16 | |
![]() |
9.1 | 17 | For example: |
18 | |||
19 | {{code language="none"}} | ||
20 | {{documents location="Sand"/}} | ||
21 | {{/code}} | ||
22 | |||
23 | Gives: | ||
24 | |||
25 | {{image reference="documents-macro-location.png"/}} | ||
26 | |||
![]() |
1.1 | 27 | == Miscellaneous == |
28 | |||
![]() |
5.1 | 29 | * The [[Document Tree Macro>>extensions:Extension.Document Tree Macro||anchor="HParameters"]] has a new parameter to limit the number of child nodes displayed when a parent node is expanded for the first time. |
![]() |
1.1 | 30 | |
31 | 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. | ||
32 | |||
33 | = For Developers = | ||
34 | |||
![]() |
6.1 | 35 | == Standard java.lang.Package properties == |
![]() |
1.1 | 36 | |
![]() |
6.1 | 37 | The following properties are now automatically added to all Maven jar modules MANIFEST files: |
![]() |
1.1 | 38 | |
![]() |
6.1 | 39 | {{code language="properties"}} |
40 | Specification-Title: ${project.name} | ||
41 | Specification-Version: ${project.version} | ||
42 | Specification-Vendor: ${project.organization.name} | ||
43 | Implementation-Title: ${project.name} | ||
44 | Implementation-Version: ${project.version} | ||
45 | Implementation-Vendor-Id: ${project.groupId} | ||
46 | Implementation-Vendor: ${project.organization.name} | ||
47 | Implementation-URL: ${project.url} | ||
48 | {{/code}} | ||
49 | |||
![]() |
7.1 | 50 | And can be accessed using ##java.lang.Package## from any class. For example: |
![]() |
6.1 | 51 | |
52 | {{code language="java"}} | ||
53 | String myVersion = this.getClass().getPackage().getImplementationVersion(); | ||
54 | {{/code}} | ||
55 | |||
![]() |
1.1 | 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 | * [[Infinispan 8.2.1>>http://jira.xwiki.org/browse/XWIKI-13293]] | ||
![]() |
2.1 | 65 | * [[slf4j 1.7.21>>http://jira.xwiki.org/browse/XCOMMONS-958]] |
![]() |
8.1 | 66 | * [[commons-compress 1.11>>http://jira.xwiki.org/browse/XCOMMONS-960]] |
![]() |
1.1 | 67 | |
68 | == Miscellaneous == | ||
69 | |||
70 | <other dev stuff to add and link to JIRA for all issues fixed> | ||
71 | |||
72 | = Translations = | ||
73 | |||
74 | The following translations have been updated: | ||
75 | |||
76 | {{language codes="none, none"/}} | ||
77 | |||
78 | = Tested Browsers & Databases = | ||
79 | |||
80 | {{warning}} | ||
81 | The QA Tests are executed after the release has been done. Thus, they are being prepared now and will be published soon. | ||
82 | {{/warning}} | ||
83 | |||
84 | {{comment}} | ||
85 | TODO: uncomment and update with proper link when the report is ready. | ||
86 | {{include reference="TestReports.ManualTestReportTemplateSummary"/}} | ||
87 | {{/comment}} | ||
88 | |||
89 | = Performances tests compared to <last super stable version> = | ||
90 | |||
91 | <a summary of the comparison with latest super stable version> | ||
92 | |||
93 | More details on <link to the test report>. | ||
94 | |||
95 | = Known issues = | ||
96 | |||
97 | * [[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]] | ||
98 | |||
99 | = Backward Compatibility and Migration Notes = | ||
100 | |||
101 | == General Notes == | ||
102 | |||
103 | 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. | ||
104 | |||
![]() |
8.2 | 105 | == Issues specific to XWiki XWiki 8.1 Milestone 2 == |
![]() |
1.1 | 106 | |
107 | <issues specific to the project> | ||
108 | |||
109 | == API Breakages == | ||
110 | |||
![]() |
2.2 | 111 | The following APIs were modified since XWiki 8.0: |
![]() |
1.1 | 112 | |
![]() |
4.1 | 113 | {{backwardCompatiblityReport version="master"/}} |