Release Notes for XWiki 7.3
This is the release notes for XWiki Commons, XWiki Rendering, XWiki Platform and XWiki Enterprise. They share the same release notes as they are released together and have the same version.
This is a stabilisation release focusing on the Nested Pages feature which was introduced in XWiki 7.2.
New and Noteworthy (since XWiki <version - 1>)
Full list of issues fixed and Dashboard for <version>.
<feature N>
<description of feature N>
Miscellaneous
<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!>
See the full list of JIRA issues fixed in this release.
For Developers
REST support hidden
You can now set and/or get information from the status hidden of a page with REST service. For example, you may create a hidden page using the following file and the following request.
<title>Test of hidden</title>
<hidden>true</hidden>
<content/>
</page>
--verbose \
--user Admin:admin \
--request PUT \
--header "Content-type: application/xml" \
--data-binary "@page.xml" \
"http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/SomeSpace/pages/SomePage"
And then check the status of this hidden status with a GET HTTP request
--verbose \
--user Admin:admin \
--request GET \
--header "Accept: application/xml" \
"http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/SomeSpace/pages/SomePage"
You may also use the application/x-www-form-urlencoded to set this hidden field.
curl \
--verbose \
--user Admin:admin \
--request PUT \
--header "Content-type: application/x-www-form-urlencoded" \
--data "title=Test of hidden&hidden=true&content=" \
"http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/SomeSpace/pages/SomePage"
Deprecated and Retired projects
<description of deprecated and retired projects>
Upgrades
The following dependencies have been upgraded:
- <list libraries that have been upgraded>
Miscellaneous
- XAR plugin's Verify Mojo can now verify that defined pages have matching titles.
- log4j 1.2.17 and commons-logging 1.2 are now found as core extension (which prevent them being installed as dependencies)
Translations
The following translations have been updated:
Tested Browsers & Databases
Performances tests compared to <last super stable version>
<a summary of the comparison with latest super stable version>
More details on <link to the test report>.
Known issues
Backward Compatibility and Migration Notes
General Notes
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.
Issues specific to XWiki <version>
<issues specific to the project>
API Breakages
The following APIs were modified since <project> <version - 1>: