Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. jvdrean1 +XWiki.VincentMassol - Content
-
... ... @@ -47,4 +47,26 @@ 47 47 48 48 {{warning}}Always make sure you compare your //xwiki.cfg// file with the newest version since some configuration parameters were added. Of note, 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.{{/warning}} 49 49 50 +== Migration Notes == 50 50 52 +* The CSS for the Search Panel has been modified to apply to the CLASS attributes ##globalsearch## and ##globalsearchinput## (See [[XSCOLIBRI-85>>http://jira.xwiki.org/jira/browse/XSCOLIBRI-85]] for more details). As a result you'll need to reimport the Panels.Search panel (from the XE XAR for example) in your wiki or the search panel will not be displayed correctly. 53 + 54 +== API Breakages == 55 + 56 +The following APIs were modified since XWiki Enterprise 2.0.x: 57 + 58 +=== Rendering api === 59 + 60 +* properties (rendering macros api and xwiki-properties module) "name" field has been changed for "id" and "name" now mean display/pretty name 61 + 62 +{{code language="none"}} 63 +ERROR] org.xwiki.rendering.macro.descriptor.ParameterDescriptor: Method 'public java.lang.String getId()' has been added to an interface 64 +[ERROR] org.xwiki.component.manager.ComponentManager: Method 'public org.xwiki.component.manager.ComponentEventManager getComponentEventManager()' has been added to an interface 65 +[ERROR] org.xwiki.component.manager.ComponentManager: Method 'public org.xwiki.component.manager.ComponentManager getParent()' has been added to an interface 66 +[ERROR] org.xwiki.component.manager.ComponentManager: Method 'public void setParent(org.xwiki.component.manager.ComponentManager)' has been added to an interface 67 +[ERROR] org.xwiki.rendering.block.HeaderBlock: Method 'public void generateId()' has been removed 68 +[ERROR] org.xwiki.rendering.block.HeaderBlock: Method 'public java.lang.String getPlainTextTitle()' has been removed 69 +[ERROR] org.xwiki.rendering.listener.chaining.LookaheadChainingListener: Return type of method 'public org.xwiki.rendering.listener.chaining.LookaheadChainingListener$Event getNextEvent()' has been changed to org.xwiki.rendering.listener.QueueListener$Event 70 +[ERROR] org.xwiki.rendering.listener.chaining.LookaheadChainingListener: Return type of method 'public org.xwiki.rendering.listener.chaining.LookaheadChainingListener$Event getNextEvent(int)' has been changed to org.xwiki.rendering.listener.QueueListener$Event 71 +[ERROR] org.xwiki.rendering.listener.chaining.LookaheadChainingListener$Event: Class org.xwiki.rendering.listener.chaining.LookaheadChainingListener$Event removed 72 +{{/code}}