Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Barbin2018-02-26 09:45:14 +0000
committerFlorian Barbin2018-02-28 16:00:16 +0000
commit78798cff4a6052687fe39ab9db0e3be8f2bba5d4 (patch)
tree0238384b530a9607769a712dd9756a90ff68b3ea
parent871d8dc5b2a009ee0c206dbf98c891120e68a380 (diff)
downloadorg.eclipse.sirius-78798cff4a6052687fe39ab9db0e3be8f2bba5d4.tar.gz
org.eclipse.sirius-78798cff4a6052687fe39ab9db0e3be8f2bba5d4.tar.xz
org.eclipse.sirius-78798cff4a6052687fe39ab9db0e3be8f2bba5d4.zip
[457804] Updates the release note.
Bug: 457804 Change-Id: Ie0aac38e8aa67a425c91f4b03f86b8ba16021e4b Signed-off-by: Florian Barbin <florian.barbin@obeo.fr>
-rw-r--r--plugins/org.eclipse.sirius.doc/doc/Release_Notes.html16
-rw-r--r--plugins/org.eclipse.sirius.doc/doc/Release_Notes.textile4
2 files changed, 20 insertions, 0 deletions
diff --git a/plugins/org.eclipse.sirius.doc/doc/Release_Notes.html b/plugins/org.eclipse.sirius.doc/doc/Release_Notes.html
index d65e89298c..8b3087f5f9 100644
--- a/plugins/org.eclipse.sirius.doc/doc/Release_Notes.html
+++ b/plugins/org.eclipse.sirius.doc/doc/Release_Notes.html
@@ -159,6 +159,22 @@
</ul>
<h3 id="DeveloperVisibleChanges">Developer-Visible Changes</h3>
<ul>
+ <li><span class="label label-info">Modified</span> The SWTBot test framework version has been upgraded toward SWTBot 2.6. The main impacts are described below:
+ <ul>
+ <li>The way we retrieved some views by using
+ <code>bot.viewByTitle</code> (like &#8220;Problems&#8221; or &#8220;Error Log&#8221;) may not work anymore. Use
+ <code>bot.viewByPartName</code> instead.
+ </li>
+ <li>
+ <code>org.eclipse.swtbot.swt.finder.widgets.AbstractSWTBot.contextMenu(String)</code> raise a
+ <code>WidgetNotFoundException</code> instead of a
+ <code>TimeoutException</code>.
+ </li>
+ <li>The
+ <code>org.eclipse.sirius.tests.swtbot.support.utils.dnd.DndUtil</code> has been updated to be compatible with Oxygen and Photon platforms. Some methods may not work anymore on Neon platform.
+ </li>
+ </ul>
+ </li>
<li><span class="label label-danger">Removed</span> Since Sirius 5.0.0,
<code>org.eclipse.sirius.ext.jface.viewers.IToolTipProvider</code> is not used anymore to provide a tooltip on diagram element decorations defined in the VSM. The tooltip is defined directly with an interpreted expression on
<code>GenericDecorationDescription</code>,
diff --git a/plugins/org.eclipse.sirius.doc/doc/Release_Notes.textile b/plugins/org.eclipse.sirius.doc/doc/Release_Notes.textile
index 822e19d053..ccbbbe804d 100644
--- a/plugins/org.eclipse.sirius.doc/doc/Release_Notes.textile
+++ b/plugins/org.eclipse.sirius.doc/doc/Release_Notes.textile
@@ -22,6 +22,10 @@ h3. Specifier-Visible Changes
h3. Developer-Visible Changes
+* <span class="label label-info">Modified</span> The SWTBot test framework version has been upgraded toward SWTBot 2.6. The main impacts are described below:
+** The way we retrieved some views by using @bot.viewByTitle@ (like "Problems" or "Error Log") may not work anymore. Use @bot.viewByPartName@ instead.
+** @org.eclipse.swtbot.swt.finder.widgets.AbstractSWTBot.contextMenu(String)@ raise a @WidgetNotFoundException@ instead of a @TimeoutException@.
+** The @org.eclipse.sirius.tests.swtbot.support.utils.dnd.DndUtil@ has been updated to be compatible with Oxygen and Photon platforms. Some methods may not work anymore on Neon platform.
* <span class="label label-danger">Removed</span> Since Sirius 5.0.0, @org.eclipse.sirius.ext.jface.viewers.IToolTipProvider@ is not used anymore to provide a tooltip on diagram element decorations defined in the VSM. The tooltip is defined directly with an interpreted expression on @GenericDecorationDescription@, @MappingBasedDecoration@ and @SemanticBasedDecoration@.
h4. Changes in @org.eclipse.sirius.common@

Back to the top