Last modified by Manuel Leduc on 2023/10/13

<
From version < 20.1 >
edited by Denis Gervalle
on 2012/12/20
To version < 22.1 >
edited by Thomas Mortagne
on 2017/03/24
>
Change comment: Fix jira URLs

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.dgervalle
1 +XWiki.ThomasMortagne
Content
... ... @@ -8,7 +8,7 @@
8 8  
9 9  {{error}}The following important issues were found in this release after it was released:
10 10  * The new Application Panel is empty when on Oracle
11 -* Send page by email and Reset Password are broken. You can [[work around the Reset Password issue>>http://jira.xwiki.org/browse/XWIKI-8264?focusedCommentId=72425&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-72425]].
11 +* Send page by email and Reset Password are broken. You can [[work around the Reset Password issue>>https://jira.xwiki.org/browse/XWIKI-8264?focusedCommentId=72425&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-72425]].
12 12  * The new experimental Distribution Wizard (see below) doesn't work yet with Oracle
13 13  
14 14  If you need these features you should wait for 4.3 or 4.2.1.
... ... @@ -15,11 +15,11 @@
15 15  {{/error}}
16 16  
17 17  {{warning}}
18 -If you're upgrading from an older version and you use the new Distribution Wizard to upgrade your wiki pages you'll notice that it'll ask you to merge all pages that have been modified between your version and XWiki 4.2. This is because currently the Distribution Wizard doesn't know which version you have and thus asks you to perform the merge manually. This operation may take a long time (up to 20 minutes or so). Thus at the moment if you're upgrading from a previous version we recommend that you Cancel the Distribution Wizard and instead [[Import the new XAR>>platform:AdminGuide.Upgrade]]. This problem is [[reported in this issue>>http://jira.xwiki.org/browse/XWIKI-8252]] and should be fixed in the next release.
18 +If you're upgrading from an older version and you use the new Distribution Wizard to upgrade your wiki pages you'll notice that it'll ask you to merge all pages that have been modified between your version and XWiki 4.2. This is because currently the Distribution Wizard doesn't know which version you have and thus asks you to perform the merge manually. This operation may take a long time (up to 20 minutes or so). Thus at the moment if you're upgrading from a previous version we recommend that you Cancel the Distribution Wizard and instead [[Import the new XAR>>platform:AdminGuide.Upgrade]]. This problem is [[reported in this issue>>https://jira.xwiki.org/browse/XWIKI-8252]] and should be fixed in the next release.
19 19  {{/warning}}
20 20  
21 21  {{warning}}
22 -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.
22 +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>>https://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.
23 23  {{/warning}}
24 24  
25 25  = New and Noteworthy (since XWiki 4.1) =
... ... @@ -185,8 +185,8 @@
185 185  * It is no longer allowed to use scripts in comments. This reduces the security risk from users that only have comment rights.
186 186  * Macro parameters may now contain macro syntax. Example: {{{ {{box title="{{info}}Hello!{{/info}}" }}Lorem ipsum ...{{/box}} }}}
187 187  * Improve OOB support for JBoss AS7:
188 -** Removed Struts Taglibs completely since we don't use them and some were defined but not made available, causing errors in deployments on JBoss AS7 ({{jira style="enum" url="http://jira.xwiki.org"}}XWIKI-7986{{/jira}})
189 -** Fixed Logging conflict between JBoss AS and XWiki ({{jira style="enum" url="http://jira.xwiki.org"}}XWIKI-7987{{/jira}})
188 +** Removed Struts Taglibs completely since we don't use them and some were defined but not made available, causing errors in deployments on JBoss AS7 ({{jira style="enum" url="https://jira.xwiki.org"}}XWIKI-7986{{/jira}})
189 +** Fixed Logging conflict between JBoss AS and XWiki ({{jira style="enum" url="https://jira.xwiki.org"}}XWIKI-7987{{/jira}})
190 190  * The [[IRC Bot Application>>extensions:Extension.IRC Bot Application]] now recognizes XAR import events and when receiving one, it doesn't send subsequent IRC notifications for modified or created documents to avoid spamming the IRC channel.
191 191  * Display the request URL in the IRC channel when the Link Checker bot listener is active and a broken link is found, thus making it easier to reproduce and debug the broken link
192 192  
... ... @@ -298,10 +298,12 @@
298 298  It's now possible by default to add [[skin extensions>>extensions:Extension.Skin Extension Plugin]] located in JAR files. Example usage:
299 299  
300 300  {{code}}
301 -$xwiki.jsrx("/lib/codemirror.js")
302 -$xwiki.ssrx("/lib/codemirror.css")
301 +$xwiki.jsrx.use("/path/to/file.js")
302 +$xwiki.ssrx.use("/path/to/file.css")
303 303  {{/code}}
304 304  
305 +The content of the resource is obtained using the current context class loader. The path starts on the root of the jar that contains the requested file.
306 +
305 305  == Attachment Picker improvements ==
306 306  
307 307  It is now possible to specify a different document for the source (and target in case of uploads) of attachments, using the new ##targetdocname## macro parameter.
... ... @@ -370,7 +370,7 @@
370 370  == Miscellaneous ==
371 371  
372 372  * The transformation context have a "restricted" flag to indicate that macros and other transformations should not perform modifications to the database, expensive computations or other potentially harmful operations. Developers of macros and other rendering extensions should pay attention to this flag.
373 -* The messageSender macro now accepts 3 parameters that allow you to customize it by overriding the default displayed visibility levels for a message (that a user can choose from), the default selected visibility level and the default value (in case of user or group visibility). More details on {{jira style="enum" url="http://jira.xwiki.org"}}XWIKI-7974{{/jira}}.
375 +* The messageSender macro now accepts 3 parameters that allow you to customize it by overriding the default displayed visibility levels for a message (that a user can choose from), the default selected visibility level and the default value (in case of user or group visibility). More details on {{jira style="enum" url="https://jira.xwiki.org"}}XWIKI-7974{{/jira}}.
374 374  * The [[new experimental Security API that was first released in XWiki 4.0>>xwiki:ReleaseNotes.ReleaseNotesXWikiEnterprise40||anchor="HNewRightsImplementation28Experimental29"]] is now bundled by default in XWiki Enterprise.
375 375  * It's now possible to access root ComponentManager using "root" role hint:(((
376 376  {{code language="java"}}
... ... @@ -406,7 +406,7 @@
406 406  
407 407  = Known issues =
408 408  
409 -* [[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]]
411 +* [[Bugs we know about>>https://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]]
410 410  
411 411  = Test Report =
412 412  

Get Connected