Last modified by Thomas Mortagne on 2017/03/24

<
From version < 9.1 >
edited by Marius Dumitru Florea
on 2016/05/24
To version < 12.1 >
edited by Marius Dumitru Florea
on 2016/05/24
>
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -44,29 +44,56 @@
44 44  
45 45  = For Developers =
46 46  
47 -== <developer feature N> ==
47 +{{display reference="ReleaseNotesXWiki81M2" section="HStandardjava.lang.Packageproperties"/}}
48 48  
49 -<description of developer feature N>
49 +{{display reference="ReleaseNotesXWiki81M1" section="HDeferredJavaScriptModuleDependencyLoading"/}}
50 50  
51 -== Deprecated and Retired projects ==
51 +{{display reference="ReleaseNotesXWiki81RC1" section="HContextandcacheinconsistencyhunting"/}}
52 52  
53 -<description of deprecated and retired projects>
53 +{{display reference="ReleaseNotesXWiki81RC1" section="HExtensionManagerimprovements"/}}
54 54  
55 55  == Upgrades ==
56 56  
57 57  The following dependencies have been upgraded:
58 58  
59 -* <list libraries that have been upgraded>
59 +* [[Bootstrap 3.3.6>>http://jira.xwiki.org/browse/XWIKI-12951]]
60 +* [[commons-compress 1.11>>http://jira.xwiki.org/browse/XCOMMONS-960]]
61 +* [[commons-io 2.5>>http://jira.xwiki.org/browse/XCOMMONS-969]]
62 +* [[commons-net 3.5>>http://jira.xwiki.org/browse/XCOMMONS-977]]
63 +* [[GWT 2.7>>http://jira.xwiki.org/browse/XWIKI-13236]]
64 +* [[Infinispan 8.2.1>>http://jira.xwiki.org/browse/XWIKI-13293]]
65 +* [[Jackson 2.7.4>>http://jira.xwiki.org/browse/XCOMMONS-972]]
66 +* [[JGroups 3.6.9>>http://jira.xwiki.org/browse/XWIKI-13344]]
67 +* [[jQuery 2.2.2>>http://jira.xwiki.org/browse/XWIKI-11095]]
68 +* [[JSqlParser 0.9.5>>http://jira.xwiki.org/browse/XWIKI-13215]]
69 +* [[logback 1.1.7>>http://jira.xwiki.org/browse/XCOMMONS-953]]
70 +* [[RequireJS 2.2>>http://jira.xwiki.org/browse/XWIKI-11095]]
71 +* [[slf4j 1.7.21>>http://jira.xwiki.org/browse/XCOMMONS-958]]
72 +* [[XStream 1.4.9>>http://jira.xwiki.org/browse/XCOMMONS-941]]
60 60  
61 61  == Miscellaneous ==
62 62  
63 -<other dev stuff to add and link to JIRA for all issues fixed>
76 +* The default LiveTable results page (##XWiki.LiveTableResults##, the page that generates the JSON displayed by the LiveTable) [[now supports a ##location## extra parameter>>extensions:Extension.Livetable Macro||anchor="HParameter24options"]].
77 +* [[Modified WebJars URL format>>extensions:Extension.WebJars Integration||anchor="HURLFormat"]] and added some new Script Service methods:(((
78 +{{code language="none"}}
79 +public String url(String webjarId, String namespace, String path, Map<String, ?> params)
80 +public String url(String webjarId, String namespace, String path)
81 +{{/code}}
82 +)))
83 +* IRC Bot Application has been moved to XWiki Contrib under the new extension id of ##org.xwiki.contrib:application-ircbot-ui##
84 +* Selenium Application had been moved to XWiki Contrib under the new extension id of ##org.xwiki.contrib:application-selenium##
85 +* FAQ Application has been moved to XWiki Contrib under the new extension id of ##org.xwiki.contrib:application-faq-ui##
86 +* Starting With XWiki 8.1M1, the backward-compatibility tool we use is [[Revapi>>http://revapi.org/]]. We had to move away from CLIRR since it didn't support Java 8 constructs.
87 +* Introduced JobFinishingEvent to be called at the end of the job execution before starting to close it
88 +* Introduced new JobStatus#getError() which return the exception that filled the job main execution (if any) (it's also logged in the log as an error like before)
89 +* The XAR plugin now also verifies that Translation pages are using the ##plain/1.0## syntax (it checks pages having a Translation xobject in them).
90 +* This Methods Arguments Velocity Uberspector [[now supports calling varargs methods>>extensions:Extension.Velocity Module||anchor="HMethodArgumentsUberspector"]].
64 64  
65 65  = Translations =
66 66  
67 67  The following translations have been updated:
68 68  
69 -{{language codes="none, none"/}}
96 +{{language codes="ca, de, fr, pt_BR, ru"/}}
70 70  
71 71  = Tested Browsers & Databases =
72 72  
... ... @@ -95,9 +95,11 @@
95 95  
96 96  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.
97 97  
98 -== Issues specific to XWiki <version> ==
125 +== Issues specific to XWiki 8.1 ==
99 99  
100 -<issues specific to the project>
127 +* Since we've modified content of the Quick Links Panel, the Distribution Wizard may detect a merge conflict if this panel was customized. In addition, the Quick Links panel may disappear after an upgrade to 8.1M1+. You can add it back from the administration UI if you want to keep it (e.g. if it has been customized).
128 +* The WebJars URL format has been modified to support relative WebJars URL in subwikis. The new format is {{code language="none"}}/webjars/<namespace>/<path/to/resource>?...{{/code}}. Reminder: you should not use this format directly and instead you should use the Script Service to generate a valid WebJars URL; this isolate you from any URL change. Example from Velocity: {{code language="none"}}$services.webjars.url(...){{/code}}.
129 +* The ##xwiki.usedefaultweb## parameter has been removed from ##xwii.cfg##. This parameter had not been working since XWiki 7.2-milestone-1; when we introduced Nested Pages we had to make a choice and we decided to support addressing top-level Nested Pages without having to have ##WebHome## in the URL (nor having to finish URLs with a trailing ##/##). For example, ##http:~/~/<server>/xwiki/bin/view/something## points to ##something.WebHome## by default since XWiki 7.2-milestone-1.
101 101  
102 102  == API Breakages ==
103 103  

Get Connected