Wiki source code of ReleaseNotesXWiki63M1
Version 7.2 by Marius Dumitru Florea on 2014/09/16
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 6.2) = | ||
10 | |||
11 | [[Full list of issues fixed and Dashboard for <version>>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=<fill id here>]]. | ||
12 | |||
13 | == Extension Manager and Repository improvements == | ||
14 | |||
15 | * ##<scm>## element from Maven ##pom.xml## is now supported and has been added to the standard in the API | ||
16 | * ##<issueManagement>## element from Maven ##pom.xml## is now supported and has been added to the standard in the API | ||
17 | |||
18 | == Flamingo == | ||
19 | |||
20 | * The "Add" button has now a default action to create a new page. You can still create other kind of contents (Wiki, Space) by using the arrow, just like we do with the different "edit" actions.((( | ||
21 | {{image reference="flamingo-add.png"/}} | ||
22 | ))) | ||
23 | |||
24 | == Miscellaneous == | ||
25 | |||
26 | <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!> | ||
27 | |||
28 | 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%29+and+status+%3D+Closed+and+resolution+%3D+Fixed+and+fixVersion+%3D+%22<version>%22&tempMax=1000]] fixed in this release. | ||
29 | |||
30 | = For Developers = | ||
31 | |||
32 | == Velocity macros to display users and groups == | ||
33 | |||
34 | We extracted the code that displays in view mode a property of type 'List of Users' and 'List of Groups' from the corresponding custom displayers (found in ##displayer_users.vm## and ##displayer_groups.vm##) into two Velocity macros that can be used to display arbitrary users and groups, even when you don't have an object. Here's how you can use them: | ||
35 | |||
36 | {{code language="none"}} | ||
37 | {{velocity}} | ||
38 | {{html wiki="true"}} | ||
39 | = Users = | ||
40 | == Just one == | ||
41 | #displayUser('XWiki.Admin') | ||
42 | |||
43 | == List of users == | ||
44 | #displayUser(['Admin', 'XWiki.mflorea']) | ||
45 | |||
46 | == A reference of a user == | ||
47 | #displayUser($xcontext.userReference) | ||
48 | |||
49 | == A list of references of users == | ||
50 | #displayUser([$xcontext.userReference, $otherUserReference]) | ||
51 | |||
52 | = Groups = | ||
53 | == Just one == | ||
54 | #displayGroup('XWiki.XWikiAdminGroup') | ||
55 | |||
56 | == List of groups == | ||
57 | #displayGroup(['XWikiAdminGroup','XWiki.HRGroup']) | ||
58 | |||
59 | == A reference of a group == | ||
60 | #set($adminGroupRef = $services.model.resolveDocument('XWiki.XWikiAdminGroup')) | ||
61 | #set($allGroupRef = $services.model.resolveDocument('XWiki.XWikiAllGroup')) | ||
62 | #displayGroup($adminGroupRef) | ||
63 | |||
64 | == A list of references of groups == | ||
65 | #displayGroup([$adminGroupRef, $allGroupRef]) | ||
66 | |||
67 | {{/html}} | ||
68 | {{/velocity}} | ||
69 | {{/code}} | ||
70 | |||
71 | == Deprecated and Retired projects == | ||
72 | |||
73 | <description of deprecated and retired projects> | ||
74 | |||
75 | == Upgrades == | ||
76 | |||
77 | The following dependencies have been upgraded: | ||
78 | |||
79 | * [[JGroups 3.5.0>>http://jira.xwiki.org/browse/XWIKI-10987]] | ||
80 | |||
81 | == Miscellaneous == | ||
82 | |||
83 | * The wiki provisioning job has now the current user setted in the context. | ||
84 | |||
85 | = Translations = | ||
86 | |||
87 | The following translations have been updated: | ||
88 | |||
89 | {{language codes="none, none"/}} | ||
90 | |||
91 | = Tested Browsers & Databases = | ||
92 | |||
93 | {{include reference="TestReports.ManualTestReportTemplateSummary"/}} | ||
94 | |||
95 | = Known issues = | ||
96 | |||
97 | * [[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]] | ||
98 | |||
99 | = Backward Compatibility and Migration Notes = | ||
100 | |||
101 | == General Notes == | ||
102 | |||
103 | 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. | ||
104 | |||
105 | == Issues specific to XWiki <version> == | ||
106 | |||
107 | <issues specific to the project> | ||
108 | |||
109 | == API Breakages == | ||
110 | |||
111 | The following APIs were modified since <project> <version - 1>: | ||
112 | |||
113 | {{code language="none"}} | ||
114 | <clirr output here> | ||
115 | {{/code}} |