Wiki source code of ReleaseNotesXWikiEnterprise17M3
Last modified by Thomas Mortagne on 2017/03/24
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | #startfloatingbox() | ||
2 | *Contents* | ||
3 | #toc ("2" "3" "") | ||
4 | #endfloatingbox() | ||
5 | |||
6 | 1 Release Notes for XWiki Enterprise 1.7 Milestone 3 | ||
7 | |||
8 | Third milestone of the XWiki Enterprise 1.7 version ([Roadmap>enterprise:Main.Roadmap]). | ||
9 | |||
10 | 1.1 Summary of changes since XWiki Enterprise 1.7 Milestone 2 | ||
11 | |||
12 | Main changes: | ||
13 | |||
14 | * *Webdav support* | ||
15 | XWiki now expose a webdav server interface. This means you can now access/edit/delete page sources and attachments from any webdav client. | ||
16 | * *Groovy upgrade* | ||
17 | The groovy engine has been upgraded to the last 1.6 beta version. You can now use all the new features of groovy as well as speed improvements and bugfixes from groovy 1.0 to 1.6 beta 2. See http://groovy.codehaus.org/ for more. | ||
18 | * *New script macro* | ||
19 | The new script macros add the ability to use any scripting language supporting JSR-223. For now the default XWiki distribution comes with only a groovy 1.6 support but it easy to add support for other language (like ruby, python, etc.) simply by adding the corresponding engine and implementation. See https://scripting.dev.java.net/. | ||
20 | |||
21 | To use the new script macro: | ||
22 | {code} | ||
23 | {{script language="groovy"}} | ||
24 | println "Hello World" | ||
25 | {{/script}} | ||
26 | {code} | ||
27 | or you can use the groovy shortcut: | ||
28 | {code} | ||
29 | {{groovy}} | ||
30 | println "Hello World" | ||
31 | {{/groovy}} | ||
32 | {code} | ||
33 | |||
34 | Important bug fixes: | ||
35 | |||
36 | * The old LDAP authenticator is still used by default in some cases | ||
37 | |||
38 | ## + lots of other changes, see [Platform details>https://jira.xwiki.org/secure/ReleaseNote.jspa?version=10696&styleName=Text&projectId=10010&Create=Create]. | ||
39 | |||
40 | 1.1 Known issues | ||
41 | |||
42 | * [Bugs we know about>https://jira.xwiki.org/secure/IssueNavigator.jspa?reset=true&&type=1&pid=10010&resolution=-1&sorter/field=updated&sorter/order=DESC] | ||
43 | |||
44 | 1.1 Common Migration notes | ||
45 | |||
46 | #warning("If you're running in a multiwiki setup you'll also need to define the property <tt>xwiki.store.migration.databases=all</tt> to your <tt>xwiki.cfg</tt> file or explicitly name all databases to be migrated as in <tt>xwiki.store.migration.databases=db1,db2,...</tt>.") | ||
47 | |||
48 | You may also want to [import the default wiki XAR>Main.Download] in order to benefit from improvements listed above. | ||
49 | |||
50 | #warning("Always make sure you compare your <tt>xwiki.cfg</tt> file with the newest version since some configuration parameters were added. Of note, you should add <tt>xwiki.store.migration=1</tt> so that XWiki will attempt to automatically migrate your current database to the new schema. Make sure you backup your Database before doing anything.") | ||
51 |