Version 18.1 by Caleb James DeLisle on 2012/06/11

Hide last authors
Thomas Mortagne 1.1 1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
Caleb James DeLisle 8.1 5 {{warning}}This release is not finished yet, this is a work in progress{{/warning}}
6
Caleb James DeLisle 8.2 7 This is the first and hopefully final release candidate of the 4.1 release cycle ([[Roadmap>>Main.Roadmap]]). Being a release candidate, this release is sparse on new features, concentrating instead on stabilization of the features brought in [[Milestone 1>>ReleaseNotesXWikiEnterprise41M1]] and [[Milestone 2>>ReleaseNotesXWikiEnterprise41M2]].
Caleb James DeLisle 7.1 8
Caleb James DeLisle 6.1 9 = New and Noteworthy (since XWiki Enterprise 4.1 Milestone 2) =
Thomas Mortagne 1.1 10
11 == Extension Manager improvements ==
12
Marius Dumitru Florea 11.1 13 The merge conflict resolution UI is now displaying all document changes as if you are comparing two versions from a document's history.
Thomas Mortagne 1.1 14
Marius Dumitru Florea 11.1 15 {{image reference="EM-mergeConflict.png"/}}
16
Thomas Mortagne 1.1 17 == For developers ==
18
Thomas Mortagne 3.1 19 === Diff module ===
Thomas Mortagne 1.1 20
21 A new diff/merge module has been added to make easier to deal with diff and merge both from component and scripts. See [[Diff module >>extensions:Extension.Diff Module]] for details.
22
Thomas Mortagne 16.1 23 == Bug fixes and improvements ==
Thomas Mortagne 1.1 24
Eduard Moraru 4.1 25 * The activity macro no longer allows sending messages. That functionality has been extracted into a reusable macro called messageSender. See {{jira style="enum" notes="false" url="http://jira.xwiki.org"}}XWIKI-7679{{/jira}} and {{jira style="enum" notes="false" url="http://jira.xwiki.org"}}XWIKI-7875{{/jira}} for more details.
Vincent Massol 13.1 26 * The Windows Installer should now work fine on Windows 7. The issue is that on Windows 7 the "Program Files" directory is now read only and since XWiki wanted to write in it it was causing startup issues. We've temporarily solved this in 4.1 by installing XWiki at the root of the ##C:## drive for all Windows versions. This will be [[properly fixed in XWiki 4.2M1>>http://jira.xwiki.org/browse/XE-1051]].
Eduard Moraru 4.1 27
Thomas Mortagne 1.1 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%2C+XEM%29+and+status+%3D+Closed+and+resolution+%3D+Fixed+and+fixVersion+%3D+%224.1-rc-1%22&tempMax=1000]] fixed in this release.
29
30 == Upgrades ==
31
32 The following dependencies have been upgraded:
33
34 {{todo/}}
35
Thomas Mortagne 14.1 36 == Translations ==
37
38 image:da.png Danish translation has been added.
39
Thomas Mortagne 1.1 40 = Test Report =
41
42 You can check the [[manual test report>>TestReports.ManualTestReportXE41RC1]] to learn about what was tested and the results on various browsers.
43
44 == Tested Browsers ==
45
46 Here's the list of browsers tested with this version (i.e. browsers that we've tested as working - Check the list of [[supported browsers>>dev:Community.BrowserSupportStrategy]]):
47
48 {{todo/}}
49
50 == Tested Databases ==
51
52 {{todo/}}
53
54 = Known issues =
55
56 * [[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]]
57
58 = Upgrade Notes =
59
60 == Version-specific Upgrade Notes ==
61
62 {{todo/}}
63
64 == General Upgrade Notes ==
65
66 {{info}}
67 If you're running in a multiwiki setup you'll also need to define the property //xwiki.store.migration.databases// in your //xwiki.cfg// file if you want to explicitly name some databases to be migrated as the default is now to migrate all databases. Database that are not migrated could not be accessed.
68 {{/info}}
69
70 You may also want to [[import the default wiki XAR>>Main.Download]] in order to benefit from all the improvements listed above.
71
72 {{warning}}
73 Always make sure you compare your ##xwiki.cfg## and ##xwiki.properties## files with the newest version since some configuration parameters were 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.
74 {{/warning}}
75
76 == API Breakages ==
77
Vincent Massol 17.2 78 The following APIs were modified since version 4.0:
Thomas Mortagne 1.1 79
Vincent Massol 17.1 80 * Breakage in Query module done to support adding several Filters to a Query:(((
Thomas Mortagne 1.1 81 {{code language="none"}}
Vincent Massol 17.1 82 org.xwiki.query.QueryFilter: Method 'public java.util.List filterResults(java.util.List)' has been added to an interface
83 {{/code}}
84 )))
85 * This method should have been internal from the beginning:(((
86 {{code language="none"}}
Caleb James DeLisle 12.1 87 org.xwiki.environment.EnvironmentConfiguration: Class org.xwiki.environment.EnvironmentConfiguration removed
Vincent Massol 17.1 88 {{/code}}
89 )))
90 * The Job module is new and is still considered a "young API":(((
91 {{code language="none"}}
Caleb James DeLisle 12.1 92 org.xwiki.job.AbstractJob: Changed type of field status from org.xwiki.job.internal.DefaultJobStatus to org.xwiki.job.internal.AbstractJobStatus
93 org.xwiki.job.AbstractJob: Return type of method 'protected org.xwiki.job.internal.DefaultJobStatus createNewStatus(org.xwiki.job.Request)' has been changed to org.xwiki.job.internal.AbstractJobStatus
94 org.xwiki.job.AbstractJob: Method 'protected java.lang.String getId()' has been removed
95 org.xwiki.job.AbstractRequest: Return type of method 'public java.lang.String getId()' has been changed to java.util.List
96 org.xwiki.job.Job: Method 'public void join()' has been added to an interface
97 org.xwiki.job.Job: Method 'public boolean join(long, java.util.concurrent.TimeUnit)' has been added to an interface
98 org.xwiki.job.JobManager: Method 'public org.xwiki.job.event.status.JobStatus getJobStatus(java.util.List)' has been added to an interface
99 org.xwiki.job.Request: Return type of method 'public java.lang.String getId()' has been changed to java.util.List
100 org.xwiki.job.event.JobEvent: Return type of method 'public java.lang.String getJobId()' has been changed to java.util.List
101 org.xwiki.job.event.JobFinishedEvent: Return type of method 'public java.lang.String getJobId()' has been changed to java.util.List
102 org.xwiki.job.event.JobStartedEvent: Return type of method 'public java.lang.String getJobId()' has been changed to java.util.List
103 org.xwiki.job.event.status.JobStatus: Method 'public java.util.Date getEndDate()' has been added to an interface
104 org.xwiki.job.event.status.JobStatus: Method 'public java.util.Date getStartDate()' has been added to an interface
Vincent Massol 17.1 105 {{/code}}
106 )))
107 * The Extension module is relatively new and is still undergoing some API tuning:(((
108 {{code language="none"}}
109 org.xwiki.extension.job.plan.ExtensionPlan: Return type of method 'public java.util.Collection getTree()' has been changed to org.xwiki.extension.job.plan.ExtensionPlanTree
110 org.xwiki.extension.version.VersionConstraint: Method 'public boolean isCompatible(org.xwiki.extension.version.Version)' has been added to an interface
111 {{/code}}
112 )))
113 * This class was added in 3.2M2 by error in a user-public package. It's been moved again in the internal package as it should have been. We don't expect many users to be affected by this:(((
114 {{code language="none"}}
Caleb James DeLisle 12.1 115 com.xpn.xwiki.doc.merge.MergeUtils: Class com.xpn.xwiki.doc.merge.MergeUtils removed
Vincent Massol 17.1 116 {{/code}}
117 )))
118 * In 2.2M1 we refactored BaseCollection to add getXClass() but we forgot to add it to the ObjectInterface interface. Even though this could break user we think it's very limited since nobody should implement directly ObjectInterface; instead everyone should extend BaseClass or BaseCollection:(((
119 {{code language="none"}}
Caleb James DeLisle 12.1 120 com.xpn.xwiki.objects.ObjectInterface: Method 'public com.xpn.xwiki.objects.classes.BaseClass getXClass(com.xpn.xwiki.XWikiContext)' has been added to an interface
Vincent Massol 17.1 121 {{/code}}
122 )))
123 * The Autotag plugin has been extracted from the oldcore module and is now a module on its own so the following are not real breakages:(((
124 {{code language="none"}}
Caleb James DeLisle 12.1 125 com.xpn.xwiki.plugin.autotag.AutoTagPlugin: Class com.xpn.xwiki.plugin.autotag.AutoTagPlugin removed
126 com.xpn.xwiki.plugin.autotag.AutoTagPluginAPI: Class com.xpn.xwiki.plugin.autotag.AutoTagPluginAPI removed
127 com.xpn.xwiki.plugin.autotag.FrenchStemmer: Class com.xpn.xwiki.plugin.autotag.FrenchStemmer removed
128 com.xpn.xwiki.plugin.autotag.Tag: Class com.xpn.xwiki.plugin.autotag.Tag removed
129 com.xpn.xwiki.plugin.autotag.TagCloud: Class com.xpn.xwiki.plugin.autotag.TagCloud removed
Vincent Massol 17.1 130 {{/code}}
131 )))
132 * The WYSIWYG Diff and Sync plugins have been extracted into their own modules so the following are not real breakages:(((
133 {{code language="none"}}
Caleb James DeLisle 18.1 134 org.xwiki.environment.EnvironmentConfiguration: Class org.xwiki.environment.EnvironmentConfiguration removed
135 org.xwiki.extension.job.plan.ExtensionPlan: Return type of method 'public java.util.Collection getTree()' has been changed to org.xwiki.extension.job.plan.ExtensionPlanTree
136 org.xwiki.extension.version.VersionConstraint: Method 'public boolean isCompatible(org.xwiki.extension.version.Version)' has been added to an interface
137 org.xwiki.job.AbstractJob: Changed type of field status from org.xwiki.job.internal.DefaultJobStatus to org.xwiki.job.internal.AbstractJobStatus
138 org.xwiki.job.AbstractJob: Return type of method 'protected org.xwiki.job.internal.DefaultJobStatus createNewStatus(org.xwiki.job.Request)' has been changed to org.xwiki.job.internal.AbstractJobStatus
139 org.xwiki.job.AbstractJob: Method 'protected java.lang.String getId()' has been removed
140 org.xwiki.job.AbstractRequest: Return type of method 'public java.lang.String getId()' has been changed to java.util.List
141 org.xwiki.job.Job: Method 'public void join()' has been added to an interface
142 org.xwiki.job.Job: Method 'public boolean join(long, java.util.concurrent.TimeUnit)' has been added to an interface
143 org.xwiki.job.JobManager: Method 'public org.xwiki.job.event.status.JobStatus getJobStatus(java.util.List)' has been added to an interface
144 org.xwiki.job.Request: Return type of method 'public java.lang.String getId()' has been changed to java.util.List
145 org.xwiki.job.event.JobEvent: Return type of method 'public java.lang.String getJobId()' has been changed to java.util.List
146 org.xwiki.job.event.JobFinishedEvent: Return type of method 'public java.lang.String getJobId()' has been changed to java.util.List
147 org.xwiki.job.event.JobStartedEvent: Return type of method 'public java.lang.String getJobId()' has been changed to java.util.List
148 org.xwiki.job.event.status.JobStatus: Method 'public java.util.Date getEndDate()' has been added to an interface
149 org.xwiki.job.event.status.JobStatus: Method 'public java.util.Date getStartDate()' has been added to an interface
150 com.xpn.xwiki.doc.merge.MergeUtils: Class com.xpn.xwiki.doc.merge.MergeUtils removed
151 com.xpn.xwiki.objects.ObjectInterface: Method 'public com.xpn.xwiki.objects.classes.BaseClass getXClass(com.xpn.xwiki.XWikiContext)' has been added to an interface
152 com.xpn.xwiki.plugin.autotag.AutoTagPlugin: Class com.xpn.xwiki.plugin.autotag.AutoTagPlugin removed
153 com.xpn.xwiki.plugin.autotag.AutoTagPluginAPI: Class com.xpn.xwiki.plugin.autotag.AutoTagPluginAPI removed
154 com.xpn.xwiki.plugin.autotag.FrenchStemmer: Class com.xpn.xwiki.plugin.autotag.FrenchStemmer removed
155 com.xpn.xwiki.plugin.autotag.Tag: Class com.xpn.xwiki.plugin.autotag.Tag removed
156 com.xpn.xwiki.plugin.autotag.TagCloud: Class com.xpn.xwiki.plugin.autotag.TagCloud removed
157 org.xwiki.query.QueryFilter: Method 'public java.util.List filterResults(java.util.List)' has been added to an interface
Caleb James DeLisle 12.1 158 org.xwiki.gwt.wysiwyg.client.Images: Method 'public com.google.gwt.resources.client.ImageResource sync()' has been removed
159 org.xwiki.gwt.wysiwyg.client.Strings: Method 'public java.lang.String sync()' has been removed
160 org.xwiki.gwt.wysiwyg.client.diff.AddDelta: Class org.xwiki.gwt.wysiwyg.client.diff.AddDelta removed
161 org.xwiki.gwt.wysiwyg.client.diff.ChangeDelta: Class org.xwiki.gwt.wysiwyg.client.diff.ChangeDelta removed
162 org.xwiki.gwt.wysiwyg.client.diff.Chunk: Class org.xwiki.gwt.wysiwyg.client.diff.Chunk removed
163 org.xwiki.gwt.wysiwyg.client.diff.DeleteDelta: Class org.xwiki.gwt.wysiwyg.client.diff.DeleteDelta removed
164 org.xwiki.gwt.wysiwyg.client.diff.Delta: Class org.xwiki.gwt.wysiwyg.client.diff.Delta removed
165 org.xwiki.gwt.wysiwyg.client.diff.Diff: Class org.xwiki.gwt.wysiwyg.client.diff.Diff removed
166 org.xwiki.gwt.wysiwyg.client.diff.DiffAlgorithm: Class org.xwiki.gwt.wysiwyg.client.diff.DiffAlgorithm removed
167 org.xwiki.gwt.wysiwyg.client.diff.DiffException: Class org.xwiki.gwt.wysiwyg.client.diff.DiffException removed
168 org.xwiki.gwt.wysiwyg.client.diff.DifferentiationFailedException: Class org.xwiki.gwt.wysiwyg.client.diff.DifferentiationFailedException removed
169 org.xwiki.gwt.wysiwyg.client.diff.PatchFailedException: Class org.xwiki.gwt.wysiwyg.client.diff.PatchFailedException removed
170 org.xwiki.gwt.wysiwyg.client.diff.Revision: Class org.xwiki.gwt.wysiwyg.client.diff.Revision removed
171 org.xwiki.gwt.wysiwyg.client.diff.RevisionVisitor: Class org.xwiki.gwt.wysiwyg.client.diff.RevisionVisitor removed
172 org.xwiki.gwt.wysiwyg.client.diff.SimpleDiff: Class org.xwiki.gwt.wysiwyg.client.diff.SimpleDiff removed
173 org.xwiki.gwt.wysiwyg.client.diff.ToString: Class org.xwiki.gwt.wysiwyg.client.diff.ToString removed
174 org.xwiki.gwt.wysiwyg.client.diff.myers.DiffNode: Class org.xwiki.gwt.wysiwyg.client.diff.myers.DiffNode removed
175 org.xwiki.gwt.wysiwyg.client.diff.myers.MyersDiff: Class org.xwiki.gwt.wysiwyg.client.diff.myers.MyersDiff removed
176 org.xwiki.gwt.wysiwyg.client.diff.myers.PathNode: Class org.xwiki.gwt.wysiwyg.client.diff.myers.PathNode removed
177 org.xwiki.gwt.wysiwyg.client.diff.myers.Snake: Class org.xwiki.gwt.wysiwyg.client.diff.myers.Snake removed
178 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncPlugin: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncPlugin removed
179 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncPluginFactory: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncPluginFactory removed
180 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncResult: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncResult removed
181 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncService: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncService removed
182 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncServiceAsync: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncServiceAsync removed
183 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncStatus: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncStatus removed
184 org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncTools: Class org.xwiki.gwt.wysiwyg.client.plugin.sync.SyncTools removed
185 org.xwiki.wysiwyg.server.plugin.sync.SyncEngine: Class org.xwiki.wysiwyg.server.plugin.sync.SyncEngine removed
186 org.xwiki.wysiwyg.server.plugin.sync.SyncException: Class org.xwiki.wysiwyg.server.plugin.sync.SyncException removed
Thomas Mortagne 1.1 187 {{/code}}
Vincent Massol 17.1 188 )))

Get Connected