Wiki source code of Release Notes for XWiki 5.0 Milestone 2
Version 5.2 by Eduard Moraru on 2013/03/14
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 Platform, XWiki Enterprise and XWiki Enterprise Manager. 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.0 Milestone 1) = | ||
10 | |||
11 | [[Full list of issues fixed and Dashboard for 5.0>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=11493]]. | ||
12 | |||
13 | == <feature N> == | ||
14 | |||
15 | <description of feature N> | ||
16 | |||
17 | == Miscellaneous == | ||
18 | |||
19 | <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!> | ||
20 | |||
21 | 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+%225.0-milestone-2%22&tempMax=1000]] fixed in this release. | ||
22 | |||
23 | = For Developers = | ||
24 | |||
25 | == Translate log == | ||
26 | |||
27 | It's possible to provide a translation key with any log to let log displayer use some localization framework to find proper translation for it. | ||
28 | |||
29 | See [[extensions:Extension.Logging Module||anchor="HTranslatelog"]] for more details. | ||
30 | |||
31 | == JQuery in XWiki using AMD/Require.js == | ||
32 | |||
33 | Now with [[require.js>>http://requirejs.org/]] you can pull in jQuery and use it when you need it without incurring the performance penalty when you don't need it. | ||
34 | To use jquery, use the script below: | ||
35 | |||
36 | {{code language="html"}} | ||
37 | {{html}} | ||
38 | <script> | ||
39 | require(['jquery'], function($) { | ||
40 | $('#document-title>h1').text('JQuery in action'); | ||
41 | }); | ||
42 | </script> | ||
43 | {{/html}} | ||
44 | {{/code}} | ||
45 | |||
46 | You can learn more about the power of AMD javascript modules by reading [[require.js documentation>>http://requirejs.org/docs/whyamd.html]]. | ||
47 | |||
48 | == Deprecated and Retired projects == | ||
49 | |||
50 | <description of deprecated and retired projects> | ||
51 | |||
52 | == Upgrades == | ||
53 | |||
54 | The following dependencies have been upgraded: | ||
55 | |||
56 | * <list libraries that have been upgraded> | ||
57 | |||
58 | == Miscellaneous == | ||
59 | |||
60 | <other dev stuff to add and link to JIRA for all issues fixed> | ||
61 | |||
62 | = Translations = | ||
63 | |||
64 | The following translations have been updated: | ||
65 | |||
66 | {{language codes="none, none"/}} | ||
67 | |||
68 | = Tested Browsers & Databases = | ||
69 | |||
70 | {{include reference="TestReports.ManualTestReportTemplateSummary"/}} | ||
71 | |||
72 | = Known issues = | ||
73 | |||
74 | * [[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]] | ||
75 | |||
76 | = Backward Compatibility and Migration Notes = | ||
77 | |||
78 | == General Notes == | ||
79 | |||
80 | You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above. | ||
81 | |||
82 | {{warning}} | ||
83 | 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. | ||
84 | {{/warning}} | ||
85 | |||
86 | == Issues specific to XWiki 5.0 Milestone 2 == | ||
87 | |||
88 | <issues specific to the project> | ||
89 | |||
90 | - The translations page for each workspace (xwiki:WorkspaceManager.TemplateTranslations) has been moved to the template (and implicitly locally, on each workspace) in XWiki.WorkspaceTranslations. Existing workspaces will still use any existing xwiki:WorkspaceManager.TemplateTranslations document (registered as translation bundle) that you may still have on the main wiki. New workspaces will use their local XWiki.WorkspaceTranslations document. | ||
91 | |||
92 | == API Breakages == | ||
93 | |||
94 | The following APIs were modified since XWiki 4.5.2: | ||
95 | |||
96 | {{code language="none"}} | ||
97 | <clirr output here> | ||
98 | {{/code}} |