Version 13.1 by Marius Dumitru Florea on 2013/03/02

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 {{warning}}
6 If you are migrating from an earlier version than 4.0, and your database contains statistics collected using a version earlier than 2.2, you will probably encounter an issue during our automated database migration. To avoid that issue, you will need to clean up your statistics by executing some SQL commands described in issue [[XWIKI-8129>>http://jira.xwiki.org/browse/XWIKI-8129]]. Be sure to apply these before attempting the migration. If your are in doubt, apply it, these could not hurt. If you don't, you will face duplicate IDs errors during the migration process, and it will fail, preventing you to run your wiki.
7 {{/warning}}
8
9 {{warning}}
10 If you are upgrading to this version from an older version which uses Lucene 3.x, you have to manually delete the lucene directory in the xwiki data directory. For example, that could cause Lucene to loop endlessly while trying to index pages, among other things. This is caused by the Lucene migration to 4.0 (see [[XWIKI-8404>>http://jira.xwiki.org/browse/XWIKI-8404]]).
11 {{/warning}}
12
13
14 This is the release notes for XWiki Platform, XWiki Enterprise and XWiki Enterprise Manager. They share the same release notes as they are released together and have the same version.
15
16 = New and Noteworthy (since XWiki 4.5) =
17
18 == Button Group Widget ==
19
20 We added a small widget to group form buttons.
21
22 {{image reference="buttonGroup.png" /}}
23
24 It can be used either with a static list of buttons, when you know beforehand that you have more than 1 button and you know the main one, or with a dynamic list of buttons, if you want the buttons to be grouped on the client side if there are more than one.
25
26 The static button group works even with JavaScript disabled (in a modern browser):
27
28 {{code language="html"}}
29 <p class="buttons">
30 <span class="buttonwrapper button-group">
31 <button>Action</button><a href="#foo" class="dropdown-toggle" tabindex="0"><span/></a>
32 <span id="foo" class="dropdown-menu">
33 <button>First item</button>
34 <input type="submit" value="Second item" class="button" />
35 <a href="#third">Third item</a>
36 </span>
37 </span>
38 </p>
39 {{/code}}
40
41 The dynamic group obviously requires JavaScript. The first button found in the group is considered the main one. The buttons are grouped only if there are more than one. If the main button is secondary then the button group is styled as a secondary button.
42
43 {{code language="html"}}
44 <span class="dynamic-button-group">
45 <span class="buttonwrapper">
46 <button>One</button>
47 </span>
48 <span class="buttonwrapper">
49 <input type="submit" class="button secondary" value="Two" />
50 </span>
51 <span class="buttonwrapper">
52 <a href="#three" class="secondary">Three</a>
53 </span>
54 </span>
55 {{/code}}
56
57 In both cases you need to include the widget resources:
58
59 {{code language="none"}}
60 #set ($discard = $xwiki.ssfx.use('uicomponents/widgets/buttonGroup.css', true))
61 #set ($discard = $xwiki.jsfx.use('uicomponents/widgets/buttonGroup.js'))
62 {{/code}}
63
64 == Full Issue List ==
65
66 {{jira style="list" url="http://jira.xwiki.org" fields="type, status, key, summary" source="jql"}}
67 Project in ("XWiki Commons", "XWiki Rendering", "XWiki Platform", "XWiki Enterprise", "XWiki Enterprise Manager") and fixVersion in ("4.5.1") and resolution in ("Fixed") and component not in ("Build, Infrastructure and Tests")
68 {{/jira}}
69
70 = Translations =
71
72 The following translations have been updated:
73
74 {{language codes="xxx"/}}
75
76 = Tested Browsers & Databases =
77
78 {{include reference="TestReports.ManualTestReportXWiki451Summary"/}}
79
80 = Known issues =
81
82 * [[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]]
83
84 = Backward Compatibility and Migration Notes =
85
86 == General Notes ==
87
88 {{warning}}
89 PLEASE, BACKUP YOUR DATABASE BEFORE STARTING YOUR WIKI.
90 AUTOMATED MIGRATION PROCEDURE TAKE PLACE AT STARTUP AND YOU MAY NEED TO START OVER IF YOU ENCOUNTER AN UNEXPECTED ISSUE.
91 {{/warning}}
92
93 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
94
95 {{warning}}
96 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.
97 {{/warning}}
98
99 {{warning}}
100 If you are migrating from an earlier version than 4.0, and your database contains statistics collected using a version earlier than 2.2, you will probably encounter an issue during our automated database migration. To avoid that issue, you will need to clean up your statistics by executing some SQL commands described in issue [[XWIKI-8129>>http://jira.xwiki.org/browse/XWIKI-8129]]. Be sure to apply these before attempting the migration. If your are in doubt, apply it, these could not hurt. If you don't, you will face duplicate IDs errors during the migration process, and it will fail, preventing you to run your wiki.
101 {{/warning}}
102
103 {{warning}}
104 If you have encountered an issue with the migration, you may need to start over from a backup. Be careful that during the migration, two new tables have been created (in each xwiki database for a farm) and should be dropped when you restore a backup of a database coming from a version earlier than 4.x. These two tables are DATABASECHANGELOG and DATABASECHANGELOGLOCK. These should only be removed if you restore a pre-4.x database schema. Mixing an old database with these two tables will surely cause issue during schema updates (liquibase checksum failure).
105 {{/warning}}
106
107 == API Breakages ==
108
109 No API breakage since XWiki 4.5.

Get Connected