Wiki source code of Release Notes for XWiki 7.2 Milestone 1
Version 8.1 by Thomas Mortagne on 2015/06/17
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 7.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 | <insert misc user stuff and important bug fix descriptions here in a list, when they are too small to warrant a section by themselves - Change the version in the URL below!> | ||
20 | |||
21 | 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. | ||
22 | |||
23 | = For Developers = | ||
24 | |||
25 | == New reference related APIs == | ||
26 | |||
27 | Various new API around references has been introduced while adding support for nested spaces: | ||
28 | |||
29 | * Complete references Providers (for DocumentReference, SpaceReference and WikiReference) with default or ##current## hints. They allow getting complete reference created from each default or current part of those references (for example in SpaceReference you end up with the space of the XWikiContext document and the XWikiContext wiki)((( | ||
30 | {{code language="java"}} | ||
31 | @Inject | ||
32 | Provider<DocumentReference> defaultDocumentReference; | ||
33 | |||
34 | @Inject | ||
35 | @Named("current") | ||
36 | Provider<DocumentReference> currentDocumentReference; | ||
37 | {{/code}} | ||
38 | ))) | ||
39 | * ##org.xwiki.model.reference.EntityReferenceProvider## to replace ##org.xwiki.model.reference.EntityReferenceValueProvider## which is essentially the same thing but with ##EntityReference## instead of string which allow getting multiple spaces when you ask for the current ##EntityType.SPACE## for example.((( | ||
40 | {{code language="java"}} | ||
41 | @Inject | ||
42 | EntityReferenceProvider provider; | ||
43 | {{/code}} | ||
44 | ))) | ||
45 | * ##com.xpn.xwiki.XWiki#getDocument(EntityReference)## and ##com.xpn.xwiki.api.XWiki#getDocument(EntityReference)## support any kind of reference properly (e.g. a space reference will return the space home page, an object reference will return the object document reference, etc) | ||
46 | |||
47 | == New readonly XWikiContext provider == | ||
48 | |||
49 | You can inject a new "readonly" XWikiContext the following way: | ||
50 | |||
51 | {{code language="java"}} | ||
52 | @Inject | ||
53 | @Named("readonly") | ||
54 | Povider<XWikiContext> roXWikiContextProvider; | ||
55 | {{/code}} | ||
56 | |||
57 | The difference with default provider is that the readonly one won'ttry to create a new XWikiContext and will return null if it can't find any. It's been introduce for some low level components that were used during XWikiContext creation but in general it should be used by any component that only search for some XWikiContext property that might be null even in a valid XWikiContext. | ||
58 | |||
59 | == Deprecated and Retired projects == | ||
60 | |||
61 | <description of deprecated and retired projects> | ||
62 | |||
63 | == Upgrades == | ||
64 | |||
65 | The following dependencies have been upgraded: | ||
66 | |||
67 | * [[httpclient 4.5>>http://jira.xwiki.org/browse/XCOMMONS-815]] | ||
68 | * [[cssparser 0.9.16>>http://jira.xwiki.org/browse/XCOMMONS-817]] | ||
69 | * [[less4j 1.12.0>>http://jira.xwiki.org/browse/XWIKI-12161]] | ||
70 | * [[Joda-Time 2.8.1>>http://jira.xwiki.org/browse/XWIKI-12159]] | ||
71 | |||
72 | == Miscellaneous == | ||
73 | |||
74 | <other dev stuff to add and link to JIRA for all issues fixed> | ||
75 | |||
76 | = Translations = | ||
77 | |||
78 | The following translations have been updated: | ||
79 | |||
80 | {{language codes="none, none"/}} | ||
81 | |||
82 | = Tested Browsers & Databases = | ||
83 | |||
84 | {{include reference="TestReports.ManualTestReportTemplateSummary"/}} | ||
85 | |||
86 | = Performances tests compared to <last super stable version> = | ||
87 | |||
88 | <a summary of the comparison with latest super stable version> | ||
89 | |||
90 | More details on <link to the test report>. | ||
91 | |||
92 | = Known issues = | ||
93 | |||
94 | * [[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]] | ||
95 | |||
96 | = Backward Compatibility and Migration Notes = | ||
97 | |||
98 | == General Notes == | ||
99 | |||
100 | 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. | ||
101 | |||
102 | == Issues specific to XWiki <version> == | ||
103 | |||
104 | <issues specific to the project> | ||
105 | |||
106 | == API Breakages == | ||
107 | |||
108 | The following APIs were modified since <project> <version - 1>: | ||
109 | |||
110 | {{code language="none"}} | ||
111 | <clirr output here> | ||
112 | {{/code}} |