Version 5.2 by Marius Dumitru Florea on 2013/10/30

Show last authors
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 5.3 Milestone 1) =
10
11 [[Full list of issues fixed and Dashboard for 5.3>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=11698]].
12
13 == Solr Search Improvements ==
14
15 === Search Facets ===
16
17 The display of some of the search facets has been improved. The Author and Creator facets now show the user full name, alias and avatar.
18
19 {{image reference="search-userFacet.png" /}}
20
21 == Confluence XML input module for WikiStream ==
22
23 === New XHTML based Confluence syntax ===
24
25 Since 4.0 Confluence move to a XHTML based syntax for pages content. So in order to import recent version of Confluences a parser for this syntax had to be written first.
26
27 == Miscellaneous ==
28
29 <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!>
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%2C+XEM%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
35 == <developer feature N> ==
36
37 <description of developer feature N>
38
39 == Deprecated and Retired projects ==
40
41 <description of deprecated and retired projects>
42
43 == Upgrades ==
44
45 The following dependencies have been upgraded:
46
47 * [[Groovy 2.1.9>>http://jira.xwiki.org/browse/XWIKI-9603]]
48
49 == Miscellaneous ==
50
51 <other dev stuff to add and link to JIRA for all issues fixed>
52
53 = Translations =
54
55 The following translations have been updated:
56
57 {{language codes="none, none"/}}
58
59 = Tested Browsers & Databases =
60
61 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
62
63 = Known issues =
64
65 * [[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]]
66
67 = Backward Compatibility and Migration Notes =
68
69 == General Notes ==
70
71 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
72
73 {{warning}}
74 Always make sure you compare your ##xwiki.cfg## and ##xwiki.properties## files with the newest version since some configuration parameters were 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.
75 {{/warning}}
76
77 == Issues specific to XWiki <version> ==
78
79 <issues specific to the project>
80
81 == API Breakages ==
82
83 The following APIs were modified since XWiki 5.2:
84
85 * Very young API. Never fully worked.
86
87 {{code language="none"}}
88 org.xwiki.xml.stax.SAXEventConsumer: Class org.xwiki.xml.stax.SAXEventConsumer removed
89 org.xwiki.xml.stax.SAXEventWriter: Removed org.xwiki.xml.stax.SAXEventConsumer from the list of superclasses
90 {{/code}}
91
92 * Requesting a dependency without indicating the namespace does not really make sense. This interface is not really supposed to be implemented anyway.
93
94 {{code language="none"}}
95 org.xwiki.extension.ExtensionManager: Method 'public org.xwiki.extension.Extension resolveExtension(org.xwiki.extension.ExtensionDependency, java.lang.String)' has been added to an interface
96 {{/code}}
97
98 * Needed to filter search by namespace. This interface is not really supposed to be implemented anyway.
99
100 {{code language="none"}}
101 org.xwiki.extension.repository.InstalledExtensionRepository: Method 'public org.xwiki.extension.repository.result.IterableResult searchInstalledExtensions(java.lang.String, java.lang.String, int, int)' has been added to an interface
102 {{/code}}
103
104 * Young API.
105
106 {{code language="none"}}
107 org.xwiki.filter.xml.serializer.XMLSerializerFactory: Method 'public java.lang.Object createSerializer(java.lang.Class[], javax.xml.transform.Result, org.xwiki.filter.xml.XMLConfiguration)' has been added to an interface
108 {{/code}}
109
110 * Young API that has been refactored to introduce the new Resource module.
111
112 {{code language="none"}}
113 org.xwiki.url.AbstractXWikiURL: Class org.xwiki.url.AbstractXWikiURL removed
114 org.xwiki.url.URLCreationException: Class org.xwiki.url.URLCreationException removed
115 org.xwiki.url.UnsupportedURLException: Class org.xwiki.url.UnsupportedURLException removed
116 org.xwiki.url.XWikiEntityURL: Class org.xwiki.url.XWikiEntityURL removed
117 org.xwiki.url.XWikiURL: Class org.xwiki.url.XWikiURL removed
118 org.xwiki.url.XWikiURLFactory: Class org.xwiki.url.XWikiURLFactory removed
119 org.xwiki.url.XWikiURLManager: Class org.xwiki.url.XWikiURLManager removed
120 org.xwiki.url.XWikiURLSerializer: Class org.xwiki.url.XWikiURLSerializer removed
121 org.xwiki.url.XWikiURLType: Class org.xwiki.url.XWikiURLType removed
122 {{/code}}
123
124 * XWikiURL (now Resource) should only be in the Execution Context and not in the Request.
125
126 {{code language="none"}}
127 org.xwiki.container.servlet.ServletRequest: Method 'public org.xwiki.url.XWikiURL getURL()' has been removed
128 org.xwiki.container.servlet.ServletRequest: Method 'public void setXWikiURL(org.xwiki.url.XWikiURL)' has been removed
129 org.xwiki.container.portlet.PortletRequest: Method 'public org.xwiki.url.XWikiURL getURL()' has been removed
130 org.xwiki.container.portlet.PortletRequest: Method 'public void setXWikiURL(org.xwiki.url.XWikiURL)' has been removed
131 org.xwiki.container.Request: Field XWIKI_URL has been removed, but it was previously a constant
132 {{/code}}

Get Connected