Version 2.1 by Thomas Mortagne on 2014/11/06

Show last authors
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.3) =
10
11 [[Full list of issues fixed and Dashboard for <version>>>http://jira.xwiki.org/secure/Dashboard.jspa?selectPageId=<fill id here>]].
12
13 == Velocity changes ==
14
15 VelocityEngine automatically get rid of the passed namespace at the end of execution unless it's protected.
16
17 In practice in means that the following:
18
19 {{code language="java"}}
20 engine.evaluate(new VelocityContext(), new StringWriter(), "namespace", "#macro(mymacro)toto#end")
21
22 Writer out = new StringWriter();
23 engine.evaluate(new VelocityContext(), out, "namespace", "#mymacro()")
24
25 System.out.println(out.toString())
26 {{/code}}
27
28 will now print
29
30 {{code language="none"}}
31 #mymacro()
32 {{/code}}
33
34 To get
35
36 {{code language="none"}}
37 toto
38 {{/code}}
39
40 you need the following
41
42 {{code language="java"}}
43 engine.startedUsingMacroNamespace("namespace")
44
45 try {
46 engine.evaluate(new VelocityContext(), new StringWriter(), "namespace", "#macro(mymacro)toto#end")
47
48 Writer out = new StringWriter();
49 engine.evaluate(new VelocityContext(), out, "namespace", "#mymacro()")
50
51 System.out.println(out.toString())
52 } finally {
53 engine.stoppedUsingMacroNamespace("namespace")
54 }
55 {{/code}}
56
57 == Miscellaneous ==
58
59 <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!>
60
61 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.
62
63 = For Developers =
64
65 == <developer feature N> ==
66
67 <description of developer feature N>
68
69 == Deprecated and Retired projects ==
70
71 <description of deprecated and retired projects>
72
73 == Upgrades ==
74
75 The following dependencies have been upgraded:
76
77 * <list libraries that have been upgraded>
78
79 == Miscellaneous ==
80
81 <other dev stuff to add and link to JIRA for all issues fixed>
82
83 = Translations =
84
85 The following translations have been updated:
86
87 {{language codes="none, none"/}}
88
89 = Tested Browsers & Databases =
90
91 {{include reference="TestReports.ManualTestReportTemplateSummary"/}}
92
93 = Performances tests compared to <last super stable version> =
94
95 <a summary of the comparison with latest super stable version>
96
97 More details on <link to the test report>.
98
99 = Known issues =
100
101 * [[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]]
102
103 = Backward Compatibility and Migration Notes =
104
105 == General Notes ==
106
107 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.
108
109 == Issues specific to XWiki <version> ==
110
111 <issues specific to the project>
112
113 == API Breakages ==
114
115 The following APIs were modified since <project> <version - 1>:
116
117 {{code language="none"}}
118 <clirr output here>
119 {{/code}}

Get Connected