Wiki source code of Release Notes for XWiki 5.3 Milestone 2
Version 11.1 by Marius Dumitru Florea on 2013/10/31
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 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 | See the [[Solr Search Application documentation>>extensions:Extension.Solr Search Application]] for details. | ||
22 | |||
23 | == Confluence XML input module for WikiStream == | ||
24 | |||
25 | === New Confluence XML importer === | ||
26 | |||
27 | A new WikiStream input module has been added to parse [[Confluence backup packages>>https://confluence.atlassian.com/display/DOC/Exporting+Confluence+Pages+and+Spaces+to+XML]]. | ||
28 | |||
29 | === New XHTML based Confluence syntax === | ||
30 | |||
31 | Since 4.0 Confluence moved 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. | ||
32 | |||
33 | == Miscellaneous == | ||
34 | |||
35 | * The URL Legacy JAR is now correctly bundled in the XE WAR. This is important since otherwise you'd need to set the URL configuration properties in your ##xwiki.properties## file in addition to setting them in ##xwiki.cfg##. For example ##url.standard.multiwiki.isPathBased## in ##xwiki.properties## **and** ##xwiki.virtual.usepath## in ##xwiki.cfg##). | ||
36 | |||
37 | 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. | ||
38 | |||
39 | = For Developers = | ||
40 | |||
41 | == <developer feature N> == | ||
42 | |||
43 | <description of developer feature N> | ||
44 | |||
45 | == Deprecated and Retired projects == | ||
46 | |||
47 | <description of deprecated and retired projects> | ||
48 | |||
49 | == Upgrades == | ||
50 | |||
51 | The following dependencies have been upgraded: | ||
52 | |||
53 | * [[Groovy 2.1.9>>http://jira.xwiki.org/browse/XWIKI-9603]] | ||
54 | |||
55 | == Miscellaneous == | ||
56 | |||
57 | * new {{code language="none"}}com.xpn.xwiki.doc.XWikiDocument#getDocumentReferenceWithLocale(){{/code}} method to get the real reference of the document to use in {{code language="none"}}com.xpn.xwiki.XWiki#getDocument(DocumentReference, XWikiContext){{/code}} for example | ||
58 | |||
59 | = Translations = | ||
60 | |||
61 | The following translations have been updated: | ||
62 | |||
63 | {{language codes="none, none"/}} | ||
64 | |||
65 | = Tested Browsers & Databases = | ||
66 | |||
67 | {{include reference="TestReports.ManualTestReportTemplateSummary"/}} | ||
68 | |||
69 | = Known issues = | ||
70 | |||
71 | * [[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]] | ||
72 | |||
73 | = Backward Compatibility and Migration Notes = | ||
74 | |||
75 | == General Notes == | ||
76 | |||
77 | You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above. | ||
78 | |||
79 | {{warning}} | ||
80 | 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. | ||
81 | {{/warning}} | ||
82 | |||
83 | == Issues specific to XWiki <version> == | ||
84 | |||
85 | <issues specific to the project> | ||
86 | |||
87 | == API Breakages == | ||
88 | |||
89 | The following APIs were modified since XWiki 5.2: | ||
90 | |||
91 | * Very young API. Never fully worked. | ||
92 | |||
93 | {{code language="none"}} | ||
94 | org.xwiki.xml.stax.SAXEventConsumer: Class org.xwiki.xml.stax.SAXEventConsumer removed | ||
95 | org.xwiki.xml.stax.SAXEventWriter: Removed org.xwiki.xml.stax.SAXEventConsumer from the list of superclasses | ||
96 | {{/code}} | ||
97 | |||
98 | * Requesting a dependency without indicating the namespace does not really make sense. This interface is not really supposed to be implemented anyway. | ||
99 | |||
100 | {{code language="none"}} | ||
101 | org.xwiki.extension.ExtensionManager: Method 'public org.xwiki.extension.Extension resolveExtension(org.xwiki.extension.ExtensionDependency, java.lang.String)' has been added to an interface | ||
102 | {{/code}} | ||
103 | |||
104 | * Needed to filter search by namespace. This interface is not really supposed to be implemented anyway. | ||
105 | |||
106 | {{code language="none"}} | ||
107 | 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 | ||
108 | {{/code}} | ||
109 | |||
110 | * Young API. | ||
111 | |||
112 | {{code language="none"}} | ||
113 | 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 | ||
114 | {{/code}} | ||
115 | |||
116 | * Young API that has been refactored to introduce the new Resource module. | ||
117 | |||
118 | {{code language="none"}} | ||
119 | org.xwiki.url.AbstractXWikiURL: Class org.xwiki.url.AbstractXWikiURL removed | ||
120 | org.xwiki.url.URLCreationException: Class org.xwiki.url.URLCreationException removed | ||
121 | org.xwiki.url.UnsupportedURLException: Class org.xwiki.url.UnsupportedURLException removed | ||
122 | org.xwiki.url.XWikiEntityURL: Class org.xwiki.url.XWikiEntityURL removed | ||
123 | org.xwiki.url.XWikiURL: Class org.xwiki.url.XWikiURL removed | ||
124 | org.xwiki.url.XWikiURLFactory: Class org.xwiki.url.XWikiURLFactory removed | ||
125 | org.xwiki.url.XWikiURLManager: Class org.xwiki.url.XWikiURLManager removed | ||
126 | org.xwiki.url.XWikiURLSerializer: Class org.xwiki.url.XWikiURLSerializer removed | ||
127 | org.xwiki.url.XWikiURLType: Class org.xwiki.url.XWikiURLType removed | ||
128 | {{/code}} | ||
129 | |||
130 | * XWikiURL (now Resource) should only be in the Execution Context and not in the Request. | ||
131 | |||
132 | {{code language="none"}} | ||
133 | org.xwiki.container.servlet.ServletRequest: Method 'public org.xwiki.url.XWikiURL getURL()' has been removed | ||
134 | org.xwiki.container.servlet.ServletRequest: Method 'public void setXWikiURL(org.xwiki.url.XWikiURL)' has been removed | ||
135 | org.xwiki.container.portlet.PortletRequest: Method 'public org.xwiki.url.XWikiURL getURL()' has been removed | ||
136 | org.xwiki.container.portlet.PortletRequest: Method 'public void setXWikiURL(org.xwiki.url.XWikiURL)' has been removed | ||
137 | org.xwiki.container.Request: Field XWIKI_URL has been removed, but it was previously a constant | ||
138 | {{/code}} |