blob: 2f4703c582253bdde7f2920eee75860f7898a64c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Xtend - Modernized Java</title>
<description>Xtend is a flexible and expressive dialect of Java, which compiles into readable Java 5 compatible source code. You can use any existing Java library seamlessly. The compiled output is readable and pretty-printed, and tends to run as fast as the equivalent handwritten Java code.
</description>
<link>http://xtend-lang.org/xtend/</link>
<atom:link href="http://xtend-lang.org/xtend/feed.xml" rel="self" type="application/rss+xml"/>
<pubDate>Wed, 03 Apr 2019 07:33:40 -0400</pubDate>
<lastBuildDate>Wed, 03 Apr 2019 07:33:40 -0400</lastBuildDate>
<generator>Jekyll v2.5.3</generator>
<item>
<title>Xtend 2.17.1 Release Notes</title>
<description>&lt;p&gt;This is a hotfix release. Here is the list of fixed issues:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;There was a &lt;a href=&quot;https://bugs.eclipse.org/bugs/show_bug.cgi?id=545343&quot;&gt;bug&lt;/a&gt; in the Xtext Builder that leads to non Xtext projects being built by Xtext.&lt;/li&gt;
&lt;li&gt;The &lt;a href=&quot;https://github.com/eclipse/xtext-core/issues/1059&quot;&gt;LSP4J&lt;/a&gt; version in Xtext 2.17.0 did not match the one in Eclipse 2019-03. Upgraded to LSP4J 0.7.0.&lt;/li&gt;
&lt;li&gt;The &lt;a href=&quot;https://github.com/eclipse/xtext-xtend/issues/750&quot;&gt;Xtend Batch Compiler&lt;/a&gt; preferred classes found on the classpath over local classes.&lt;/li&gt;
&lt;/ul&gt;
</description>
<pubDate>Wed, 03 Apr 2019 00:00:00 -0400</pubDate>
<link>http://xtend-lang.org/xtend/releasenotes/2019/04/03/version-2-17-1.html</link>
<guid isPermaLink="true">http://xtend-lang.org/xtend/releasenotes/2019/04/03/version-2-17-1.html</guid>
<category>releasenotes</category>
</item>
<item>
<title>Xtend 2.17.0 Release Notes</title>
<description>&lt;p&gt;This release focuses on the compatibility with Java 11 &amp;amp; Eclipse 2019-03, stability, performance and technical debt reduction.&lt;/p&gt;
&lt;h2 id=&quot;java-11&quot;&gt;Java 11&lt;/h2&gt;
&lt;p&gt;Xtend is now fully compliant with Java 11. Java 11 can be chosen as runtime VM and as target version for the compiler.&lt;/p&gt;
&lt;h2 id=&quot;xtend-maven-plugin&quot;&gt;xtend-maven-plugin&lt;/h2&gt;
&lt;h3 id=&quot;bom-managed-dependencies&quot;&gt;BOM Managed Dependencies&lt;/h3&gt;
&lt;p&gt;One major pain point with past releases was that the xtend-maven-plugin used ranged dependencies. This lead sometimes to &lt;a href=&quot;https://github.com/eclipse/xtext/issues/1231&quot;&gt;problems with the plugin execution&lt;/a&gt;, which had to be worked around by clients by explicit dependency management.&lt;/p&gt;
&lt;p&gt;Solving this problem was one of the main motivations behind the &lt;a href=&quot;https://www.eclipse.org/Xtext/releasenotes.html#/releasenotes/2019/03/05/version-2-17-0&quot;&gt;introduction of the new Maven BOM&lt;/a&gt;. With this BOM all external dependencies of Xtext and its Maven plugins are managed in compatible versions without room for interpretation of dependency version ranges.&lt;/p&gt;
&lt;h3 id=&quot;upgrade-to-maven-3-api&quot;&gt;Upgrade to Maven 3 API&lt;/h3&gt;
&lt;p&gt;The &lt;code&gt;xtext-maven-plugin&lt;/code&gt; has been refactored to use the latest Maven 3 API. The most significant internal change is that all doclet based configurations have been changed to use Maven 3 annotation API.&lt;/p&gt;
&lt;h3 id=&quot;faster-startup&quot;&gt;Faster Startup&lt;/h3&gt;
&lt;p&gt;The plugin was using version ranges for some of its dependencies, especially Google Guava. Resolving the metadata of these ranged dependencies lead to a short time delay on execution of the plugin. All used dependency versions have been pinned to a single version, which speeds up the plugin execution.&lt;/p&gt;
&lt;h3 id=&quot;resolve-usage-of-deprecated-api&quot;&gt;Resolve Usage of Deprecated API&lt;/h3&gt;
&lt;p&gt;The plugin has been refactored to resolve all usages of deprecated API from Eclipse Platform and m2e bundles. (&lt;a href=&quot;https://github.com/eclipse/xtext-xtend/issues/647&quot;&gt;to issue&lt;/a&gt;)&lt;/p&gt;
&lt;h2 id=&quot;quickfixes&quot;&gt;Quickfixes&lt;/h2&gt;
&lt;h3 id=&quot;quickfix-for-unused-private-member&quot;&gt;Quickfix for ‘unused private member’&lt;/h3&gt;
&lt;p&gt;The &lt;em&gt;unused private member&lt;/em&gt; issue can now be resolved by a quickfix. The quickfix is capable to resolve multiple selected issues at once when selected from the &lt;em&gt;Problems&lt;/em&gt; view. (&lt;a href=&quot;https://github.com/eclipse/xtext-xtend/issues/671&quot;&gt;details&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_17_Xtend-quickfix-remove-unused-member.gif&quot; alt=&quot;Quickfix for &#39;unused private member&#39;&quot; height=&quot;50%&quot; width=&quot;50%&quot; /&gt;&lt;/p&gt;
&lt;h3 id=&quot;quickfix-to-add-the-abstract-modifier&quot;&gt;Quickfix to Add the Abstract Modifier&lt;/h3&gt;
&lt;p&gt;If a class is named something like ‘AbstractFoo’ but is not declared abstract. A warning is raised and can be resolved via quickfix insertion of the abstract modifier. (&lt;a href=&quot;https://github.com/eclipse/xtext-xtend/issues/719&quot;&gt;details&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_17_Xtend-quickfix-add-abstract-modifier-bc-classname.gif&quot; alt=&quot;Quickfix to add the abstract modifier&quot; height=&quot;50%&quot; width=&quot;50%&quot; /&gt;&lt;/p&gt;
&lt;h2 id=&quot;static-member-favorites&quot;&gt;Static Member Favorites&lt;/h2&gt;
&lt;p&gt;Annoyed by typing &lt;code&gt;org.junit.Assert.assertEquals&lt;/code&gt; to use static methods? Wouldn’t it be cool having all your favorite static methods at hand and let the language do the import automatically? In JDT this feature is known as Static Member Favorites and it comes with a preference page, where you can configure which class’s methods should be visible. Besides wildcard imports you could make a single method visible - it’s up to you.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_17_Xtend-static-favorites_1.gif&quot; alt=&quot;Use favorites for static import&quot; height=&quot;50%&quot; width=&quot;50%&quot; /&gt;&lt;/p&gt;
&lt;p&gt;We thought it’s a good idea to reuse the already defined JDT preferences in Xtend. Since this release Xtend supports Static Member Favorites like Java does - but a bit more.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_17_Xtend-static-favorites_2.png&quot; alt=&quot;Invoke content assist static import&quot; height=&quot;50%&quot; width=&quot;50%&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In Xtend we have &lt;em&gt;extension methods&lt;/em&gt;. Here the first parameter becomes the implicit receiver. The visible static methods are analysed to fit as an extension method and then gets imported like that.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_17_Xtend-static-favorites_3.png&quot; alt=&quot;Invoke content assist static import&quot; height=&quot;50%&quot; width=&quot;50%&quot; /&gt;&lt;/p&gt;
&lt;h2 id=&quot;deprecations&quot;&gt;Deprecations&lt;/h2&gt;
&lt;h3 id=&quot;deprecation-of-android-archetype&quot;&gt;Deprecation of Android Archetype&lt;/h3&gt;
&lt;p&gt;The Maven archetype &lt;code&gt;org.eclipse.xtend.maven.android.archetype&lt;/code&gt; has been deprecated with this version and is no longer published.&lt;/p&gt;
&lt;h3 id=&quot;deprecation-of-gwt-related-artifacts&quot;&gt;Deprecation of GWT related artifacts&lt;/h3&gt;
&lt;p&gt;The bundles &lt;code&gt;org.eclipse.xtend.lib.gwt&lt;/code&gt; and &lt;code&gt;org.eclipse.xtext.xbase.lib.gwt&lt;/code&gt; are now deprecated. They are subject for removal in one of the next releases.&lt;/p&gt;
&lt;h2 id=&quot;credits&quot;&gt;Credits&lt;/h2&gt;
&lt;p&gt;The Xtend Language project is thankful for the dedication of each committer and contributor. This release has been made possible by the following persons (in order of the number of contributed commits to this release):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Christian Dietrich (itemis)&lt;/li&gt;
&lt;li&gt;Karsten Thoms (itemis)&lt;/li&gt;
&lt;li&gt;Holger Schill (itemis)&lt;/li&gt;
&lt;li&gt;Tamas Miklossy (itemis)&lt;/li&gt;
&lt;li&gt;Sebastian Zarnekow (itemis)&lt;/li&gt;
&lt;li&gt;Arne Deutsch (itemis)&lt;/li&gt;
&lt;li&gt;Prajwal Gowda (itemis) &lt;img src=&quot;https://img.shields.io/badge/-first%20time%20contributor-green.svg&quot; alt=&quot;&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Eva Poell (itemis) &lt;img src=&quot;https://img.shields.io/badge/-first%20time%20contributor-green.svg&quot; alt=&quot;&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Stéphane Galland&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;fixed-issues&quot;&gt;Fixed Issues&lt;/h2&gt;
&lt;p&gt;As in every release cycle we were eagerly hunting down bugs, and reviewed and integrated plenty of contributions. More than 18 issues and almost 50 pull requests have made it into this release. For further details please refer to the following lists:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/search?q=is%3Aissue+milestone%3ARelease_2.17+is%3Aclosed+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&quot;&gt;Fixed GitHub issues&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/search?q=is%3Apr+milestone%3ARelease_2.17+is%3Aclosed+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&quot;&gt;Closed Pull Requests&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;amp;bug_status=VERIFIED&amp;amp;bug_status=CLOSED&amp;amp;classification=Modeling&amp;amp;classification=Tools&amp;amp;columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Ckeywords&amp;amp;f0=OP&amp;amp;f1=OP&amp;amp;f3=CP&amp;amp;f4=CP&amp;amp;known_name=Xtext%202.17&amp;amp;list_id=16618269&amp;amp;product=TMF&amp;amp;product=Xtend&amp;amp;query_based_on=Xtext%202.17&amp;amp;query_format=advanced&amp;amp;status_whiteboard=v2.17&amp;amp;status_whiteboard_type=allwordssubstr&quot;&gt;Fixed Eclipse Bugzilla tickets&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
<pubDate>Tue, 05 Mar 2019 00:00:00 -0500</pubDate>
<link>http://xtend-lang.org/xtend/releasenotes/2019/03/05/version-2-17-0.html</link>
<guid isPermaLink="true">http://xtend-lang.org/xtend/releasenotes/2019/03/05/version-2-17-0.html</guid>
<category>releasenotes</category>
</item>
<item>
<title>Xtend 2.16.0 Release Notes</title>
<description>&lt;p&gt;This release focuses on stability, performance and the compatibility with Eclipse 2018-12.&lt;/p&gt;
&lt;h2 id=&quot;hover-and-hyperlink-on-links-in-javadoc-comments&quot;&gt;Hover and Hyperlink on links in Javadoc comments&lt;/h2&gt;
&lt;p&gt;Inside Xtend source files, hovering over a link inside a Javadoc will now display the Javadoc comments in a hover pop-up. F3 is also supported on these links.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_16_hover_javadoc_link.png&quot; alt=&quot;Hover Example&quot; /&gt;&lt;/p&gt;
&lt;h2 id=&quot;triple-equals-quickfix-is-now-a-multifix&quot;&gt;Triple-equals quickfix is now a multifix&lt;/h2&gt;
&lt;p&gt;Warnings of the type &lt;code&gt;The operator &#39;!=&#39; should be replaced by &#39;!==&#39; when null is one of the arguments.&lt;/code&gt; could only be fixed one by one. The quickfix has been extended to allow fixing multiple issues at once.&lt;/p&gt;
&lt;h2 id=&quot;deprecation-of-gwt&quot;&gt;Deprecation of GWT&lt;/h2&gt;
&lt;p&gt;We will no longer maintain the GWT versions of Xbase and Xtend Lib. The corresponding jars will be no longer published with future versions of Xtext (likely from 2.17 on).&lt;/p&gt;
&lt;h2 id=&quot;outlook-for-217&quot;&gt;Outlook for 2.17&lt;/h2&gt;
&lt;p&gt;Java 11 Support, a Maven BOM and a new MWE version are planned for 2.17.&lt;/p&gt;
&lt;h2 id=&quot;fixed-issues&quot;&gt;Fixed Issues&lt;/h2&gt;
&lt;p&gt;As in every release cycle we were eagerly hunting down bugs, and reviewed and integrated plenty of contributions. More than 90 issues and almost 300 pull requests have made it into this release. For further details please refer to the following lists:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/search?utf8=%E2%9C%93&amp;amp;q=is%3Aissue+milestone%3ARelease_2.16+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&amp;amp;ref=searchresults&quot;&gt;Fixed GitHub issues&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/search?utf8=%E2%9C%93&amp;amp;q=is%3Apr+milestone%3ARelease_2.16+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&amp;amp;ref=searchresults&quot;&gt;Closed Pull Requests&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;amp;bug_status=VERIFIED&amp;amp;bug_status=CLOSED&amp;amp;classification=Modeling&amp;amp;classification=Tools&amp;amp;columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Ckeywords&amp;amp;f0=OP&amp;amp;f1=OP&amp;amp;f3=CP&amp;amp;f4=CP&amp;amp;known_name=Xtext%202.16&amp;amp;list_id=16618269&amp;amp;product=TMF&amp;amp;product=Xtend&amp;amp;query_based_on=Xtext%202.16&amp;amp;query_format=advanced&amp;amp;status_whiteboard=v2.16&amp;amp;status_whiteboard_type=allwordssubstr&quot;&gt;Fixed Eclipse Bugzilla tickets&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
<pubDate>Tue, 04 Dec 2018 00:00:00 -0500</pubDate>
<link>http://xtend-lang.org/xtend/releasenotes/2018/12/04/version-2-16-0.html</link>
<guid isPermaLink="true">http://xtend-lang.org/xtend/releasenotes/2018/12/04/version-2-16-0.html</guid>
<category>releasenotes</category>
</item>
<item>
<title>Xtend 2.15.0 Release Notes</title>
<description>&lt;p&gt;This release focuses on stability, performance and the integration in Eclipse 2018-09.&lt;/p&gt;
&lt;h2 id=&quot;minimal-required-target-platform&quot;&gt;Minimal Required Target Platform&lt;/h2&gt;
&lt;p&gt;Xtext and Xtend 2.15 are built and tested against Eclipse Oxygen.3a and newer. Thus we recommend to use at least Eclipse Oxygen.3a or even better Eclipse 2018-09. For older versions of the Eclipse Platform we cannot guarantee backwards compatibility even though we carefully assess any changes that are made.&lt;/p&gt;
&lt;h2 id=&quot;smarter-organize-imports&quot;&gt;Smarter Organize Imports&lt;/h2&gt;
&lt;p&gt;In the past there were a couple of corner cases where organize imports did not yield the optimal result. It could even lead to broken code under certain conditions. We fixed these scenarios and organize imports now works nicely, even when multicatch or static extensions are involved.&lt;/p&gt;
&lt;h2 id=&quot;improved-performance-of-the-gradle-build&quot;&gt;Improved Performance of the Gradle Build&lt;/h2&gt;
&lt;p&gt;The Gradle build performance was greatly improved. Tasks that consumed lots of memory and even more CPU cycles could be fixed such that it’s now way faster to build Xtend with Gradle.&lt;/p&gt;
&lt;p&gt;2.14:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_15_xtext_core.png&quot; alt=&quot;&quot; height=&quot;50%&quot; width=&quot;50%&quot; /&gt;&lt;/p&gt;
&lt;p&gt;2.15:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_15_xtext_core_fast.png&quot; alt=&quot;&quot; height=&quot;50%&quot; width=&quot;50%&quot; /&gt;&lt;/p&gt;
&lt;h2 id=&quot;fixed-quickfixes&quot;&gt;Fixed QuickFixes&lt;/h2&gt;
&lt;p&gt;In some cases, quick fixes broke existing code, this no longer happens.&lt;/p&gt;
&lt;h2 id=&quot;improved-junit-support&quot;&gt;Improved JUnit Support&lt;/h2&gt;
&lt;p&gt;Test methods must return void to be valid test cases. This is now statically checked by the Xtend validation.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_15_junit_quickfix.png&quot; alt=&quot;&quot; height=&quot;50%&quot; width=&quot;50%&quot; /&gt;&lt;/p&gt;
&lt;h2 id=&quot;new-api-iterableextensionsrejectclass&quot;&gt;New API IterableExtensions.reject(Class)&lt;/h2&gt;
&lt;p&gt;An overloaded variant of &lt;code&gt;reject()&lt;/code&gt; was added for convience, this allows type based rejection of elements from an iterable.&lt;/p&gt;
&lt;h2 id=&quot;fixed-issues&quot;&gt;Fixed Issues&lt;/h2&gt;
&lt;p&gt;As in every release cycle we were eagerly hunting down bugs, and reviewed and integrated plenty of contributions. More than a 100 issues and almost 300 pull requests have made it into this release. For further details please refer to the following lists:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/search?utf8=%E2%9C%93&amp;amp;q=is%3Aissue+milestone%3ARelease_2.15+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&amp;amp;ref=searchresults&quot;&gt;Fixed GitHub issues&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/search?utf8=%E2%9C%93&amp;amp;q=is%3Apr+milestone%3ARelease_2.15+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&amp;amp;ref=searchresults&quot;&gt;Closed Pull Requests&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;amp;bug_status=VERIFIED&amp;amp;bug_status=CLOSED&amp;amp;classification=Modeling&amp;amp;classification=Tools&amp;amp;columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Ckeywords&amp;amp;f0=OP&amp;amp;f1=OP&amp;amp;f3=CP&amp;amp;f4=CP&amp;amp;known_name=Xtext%202.15&amp;amp;list_id=16618269&amp;amp;product=TMF&amp;amp;product=Xtend&amp;amp;query_based_on=Xtext%202.15&amp;amp;query_format=advanced&amp;amp;status_whiteboard=v2.15&amp;amp;status_whiteboard_type=allwordssubstr&quot;&gt;Fixed Eclipse Bugzilla tickets&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
<pubDate>Tue, 04 Sep 2018 00:00:00 -0400</pubDate>
<link>http://xtend-lang.org/xtend/releasenotes/2018/09/04/version-2-15-0.html</link>
<guid isPermaLink="true">http://xtend-lang.org/xtend/releasenotes/2018/09/04/version-2-15-0.html</guid>
<category>releasenotes</category>
</item>
<item>
<title>Xtend 2.14.0 Release Notes</title>
<description>&lt;h2 id=&quot;java-9-and-10-support&quot;&gt;Java 9 and 10 Support&lt;/h2&gt;
&lt;p&gt;Xtext and Xtend 2.14 are able to compile with and against Java 10. Here are a few notes on the Support&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;There is no native support for Java 9/10 module visibilities but we fall back to jdt/javac on that topic.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;compiler&quot;&gt;Compiler&lt;/h2&gt;
&lt;h3 id=&quot;avoid-generation-of-unnecessary-exception-variables&quot;&gt;Avoid generation of unnecessary exception variables&lt;/h3&gt;
&lt;p&gt;When an exception variable is not used within a catch block, the transpiled Java code contained an unused variable.&lt;/p&gt;
&lt;p&gt;Considering the following Xtend snippet:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;try {
... some code ...
} catch (SomeException e) {
// do nothing with &quot;e&quot;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The catch block was transpiled to:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;catch (final Throwable _t) {
if (_t instanceof SomeException) {
final SomeException e = (SomeException)_t;
} else {
throw Exceptions.sneakyThrow(_t);
}
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Xtend will now avoid the generation of the variable when it is not used within the catch block:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;catch (final Throwable _t) {
if (_t instanceof SomeException) {
} else {
throw Exceptions.sneakyThrow(_t);
}
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id=&quot;multi-catch-support&quot;&gt;Multi-Catch Support&lt;/h3&gt;
&lt;p&gt;With Xtend 2.14 the exception handling supports multi-catch clauses.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_14_0_xtend-multi-catch-new.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The multi-catch clause can handle an arbitrary number of exceptions separated by “|”. &lt;br /&gt;
Within the catch block, the intersection exception type of the exceptions caught by the multi-catch statement is available for further processing.&lt;br /&gt;
Multi-catch support leads to semantically rich and more concise catch statements.&lt;/p&gt;
&lt;h3 id=&quot;multi-type-guard-support&quot;&gt;Multi-Type Guard Support&lt;/h3&gt;
&lt;p&gt;The type guard feature in switch statements is enhanced by support for testing multiple types in one case statement.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_14_0_xtend-multi-type-guard-new.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;As for the multi-catch statements the different types handled by a single case statement are separated by “|”.&lt;br /&gt;
The intersection type of the types specified in the multi-type guard statement is available within the case block.&lt;/p&gt;
&lt;h2 id=&quot;unnecessary-modifiers-validation&quot;&gt;Unnecessary Modifiers Validation&lt;/h2&gt;
&lt;p&gt;Xtend detects unnecessary modifiers in code, e.g. the &lt;code&gt;public&lt;/code&gt; modifier on types. By default issues of this kind are raised as warnings, the severity level is configurable.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_14_unnecessary_modifier.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;For convenient resolution of these issues a quick fix has been added.&lt;/p&gt;
&lt;h2 id=&quot;eclipse-integration&quot;&gt;Eclipse Integration&lt;/h2&gt;
&lt;h3 id=&quot;organize-imports&quot;&gt;Organize Imports&lt;/h3&gt;
&lt;p&gt;The Organize Imports feature has been improved to consider inner types properly.&lt;/p&gt;
&lt;h2 id=&quot;links&quot;&gt;Links&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://blogs.itemis.com/en/xtend-2-14-unnecessary-modifiers-validation&quot;&gt;“Unnecessary modifiers validation” blog post&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;fixed-issues&quot;&gt;Fixed Issues&lt;/h2&gt;
&lt;p&gt;As in every release we are eagerly hunting down the bugs, review and integrate lots of contributions. 88 issues, 62 Pull Requests and 20 Bugzilla tickets have made it into this release. For further details please refer to the following lists:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/search?utf8=%E2%9C%93&amp;amp;q=is%3Aissue+milestone%3ARelease_2.14+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&amp;amp;ref=searchresults&quot;&gt;Fixed GitHub issues&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/search?utf8=%E2%9C%93&amp;amp;q=is%3Apr+milestone%3ARelease_2.14+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&amp;amp;ref=searchresults&quot;&gt;Closed Pull Requests&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;amp;bug_status=VERIFIED&amp;amp;bug_status=CLOSED&amp;amp;classification=Modeling&amp;amp;classification=Tools&amp;amp;columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Ckeywords&amp;amp;f0=OP&amp;amp;f1=OP&amp;amp;f3=CP&amp;amp;f4=CP&amp;amp;known_name=Xtext%202.14&amp;amp;list_id=16618269&amp;amp;product=TMF&amp;amp;product=Xtend&amp;amp;query_based_on=Xtext%202.14&amp;amp;query_format=advanced&amp;amp;status_whiteboard=v2.14&amp;amp;status_whiteboard_type=allwordssubstr&quot;&gt;Fixed Eclipse Bugzilla tickets&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
<pubDate>Wed, 23 May 2018 00:00:00 -0400</pubDate>
<link>http://xtend-lang.org/xtend/releasenotes/2018/05/23/version-2-14-0.html</link>
<guid isPermaLink="true">http://xtend-lang.org/xtend/releasenotes/2018/05/23/version-2-14-0.html</guid>
<category>releasenotes</category>
</item>
<item>
<title>Xtext 2.13.0 Release Notes</title>
<description>&lt;h3 id=&quot;xtend-213-is-out&quot;&gt;Xtend 2.13 is out&lt;/h3&gt;
&lt;p&gt;Xtend 2.13 is mainly a bugfix release.&lt;/p&gt;
&lt;h2 id=&quot;fixed-issues&quot;&gt;Fixed Issues&lt;/h2&gt;
&lt;p&gt;As in every release we are eagerly hunting down the bugs, review and integrate lots of contributions. 88 issues, 62 Pull Requests and 60 Bugzilla tickets have made it into this release. For further details please refer to the following lists:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/search?utf8=%E2%9C%93&amp;amp;q=is%3Aissue+milestone%3ARelease_2.13+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&amp;amp;ref=searchresults&quot;&gt;Fixed GitHub issues&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/search?utf8=%E2%9C%93&amp;amp;q=is%3Apr+milestone%3ARelease_2.13+is%3Aclosed+repo%3Aeclipse%2Fxtext+repo%3Aeclipse%2Fxtext-core+repo%3Aeclipse%2Fxtext-lib+repo%3Aeclipse%2Fxtext-extras+repo%3Aeclipse%2Fxtext-eclipse+repo%3Aeclipse%2Fxtext-idea+repo%3Aeclipse%2Fxtext-web+repo%3Aeclipse%2Fxtext-maven+repo%3Aeclipse%2Fxtext-xtend&amp;amp;type=Issues&amp;amp;ref=searchresults&quot;&gt;Closed Pull Requests&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;amp;bug_status=VERIFIED&amp;amp;bug_status=CLOSED&amp;amp;classification=Modeling&amp;amp;classification=Tools&amp;amp;columnlist=product%2Ccomponent%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cchangeddate%2Ckeywords&amp;amp;f0=OP&amp;amp;f1=OP&amp;amp;f3=CP&amp;amp;f4=CP&amp;amp;known_name=Xtext%202.13&amp;amp;list_id=16618269&amp;amp;product=TMF&amp;amp;product=Xtend&amp;amp;query_based_on=Xtext%202.13&amp;amp;query_format=advanced&amp;amp;status_whiteboard=v2.13&amp;amp;status_whiteboard_type=allwordssubstr&quot;&gt;Fixed Eclipse Bugzilla tickets&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
<pubDate>Fri, 20 Oct 2017 00:00:00 -0400</pubDate>
<link>http://xtend-lang.org/xtend/releasenotes/2017/10/20/version-2-13-0.html</link>
<guid isPermaLink="true">http://xtend-lang.org/xtend/releasenotes/2017/10/20/version-2-13-0.html</guid>
<category>releasenotes</category>
</item>
<item>
<title>Xtend 2.11.0 Release Notes</title>
<description>&lt;p&gt;Xtend version 2.11 comes with a new source repository and plenty of improvements and bug fixes.&lt;/p&gt;
&lt;h2 id=&quot;new-source-repository&quot;&gt;New Source Repository&lt;/h2&gt;
&lt;p&gt;The Xtend code base has been moved to a dedicated repository &lt;a href=&quot;https://github.com/eclipse/xtext-xtend&quot;&gt;xtext-xtend&lt;/a&gt; in the course of the restructuring of Xtext (see the &lt;a href=&quot;https://www.eclipse.org/Xtext/releasenotes.html&quot;&gt;Xtext 2.11.0 Release Notes&lt;/a&gt;).&lt;/p&gt;
&lt;h2 id=&quot;the-xtend-language-and-library&quot;&gt;The Xtend Language and Library&lt;/h2&gt;
&lt;h3 id=&quot;string-concatenation-performance-improvements&quot;&gt;String Concatenation Performance Improvements&lt;/h3&gt;
&lt;p&gt;The performance of string concatenation, e.g. as used for rich strings, &lt;a href=&quot;https://bugs.eclipse.org/bugs/show_bug.cgi?id=427909&quot;&gt;has been improved&lt;/a&gt;. This change has important consequences for working with Xtend: you should make sure that you use consistent versions of Xtend in your host IDE and your target platform in order to avoid &lt;a href=&quot;https://github.com/eclipse/xtext-xtend/issues/122&quot;&gt;compatibility problems&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;improved-compiler&quot;&gt;Improved Compiler&lt;/h3&gt;
&lt;p&gt;The Java code produced by the Xtend compiler is now &lt;a href=&quot;https://bugs.eclipse.org/bugs/show_bug.cgi?id=492072&quot;&gt;less verbose and more readable&lt;/a&gt;. For many situations Xtend does not produce synthetic variables anymore.&lt;/p&gt;
&lt;p&gt;For &lt;a href=&quot;https://bugs.eclipse.org/bugs/show_bug.cgi?id=501975&quot;&gt;switch statements on Strings&lt;/a&gt; an additional null guard is produced. This lead to NPEs when a null argument was passed to the switch statement.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_11_xbase-switch-nullguard.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A for-loop over an array resulted in uncompilable Java code. This has been &lt;a href=&quot;https://bugs.eclipse.org/bugs/show_bug.cgi?id=440006&quot;&gt;fixed&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;comparison-with-null&quot;&gt;Comparison with null&lt;/h3&gt;
&lt;p&gt;For comparison expressions with &lt;code&gt;null&lt;/code&gt; as argument it is more efficient to use the triple (not) equals operator &lt;code&gt;===&lt;/code&gt; and &lt;code&gt;!==&lt;/code&gt; instead of &lt;code&gt;==&lt;/code&gt; and &lt;code&gt;!=&lt;/code&gt;. While the “normal” operators will result in a call of &lt;code&gt;Objects.equal&lt;/code&gt;, the triple equals operator can perform a direct comparison.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_11_xbase-compare-null-gen.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;For these situations &lt;a href=&quot;https://bugs.eclipse.org/bugs/show_bug.cgi?id=401012&quot;&gt;a warning is produced&lt;/a&gt; and &lt;a href=&quot;https://bugs.eclipse.org/bugs/show_bug.cgi?id=403018&quot;&gt;a quickfix is offered&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_11_xbase-compare-null-quickfix.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2 id=&quot;new-class-wizard&quot;&gt;New Class Wizard&lt;/h2&gt;
&lt;p&gt;The New Xtend Class wizard has an option to create a main method.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_11_xtend-new-main-class.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
</description>
<pubDate>Wed, 01 Feb 2017 03:00:00 -0500</pubDate>
<link>http://xtend-lang.org/xtend/releasenotes/2017/02/01/version-2-11-0.html</link>
<guid isPermaLink="true">http://xtend-lang.org/xtend/releasenotes/2017/02/01/version-2-11-0.html</guid>
<category>releasenotes</category>
</item>
<item>
<title>Xtend 2.9.0 Release Notes</title>
<description>&lt;p&gt;Version 2.9 adds support for IntelliJ and includes many bug fixes. (&lt;a href=&quot;https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&amp;amp;bug_status=VERIFIED&amp;amp;bug_status=CLOSED&amp;amp;list_id=11217573&amp;amp;query_format=advanced&amp;amp;status_whiteboard=v2.9&amp;amp;status_whiteboard_type=allwordssubstr&quot;&gt;full bugzilla list&lt;/a&gt;).&lt;/p&gt;
&lt;h2 id=&quot;intellij-idea-support&quot;&gt;IntelliJ IDEA support&lt;/h2&gt;
&lt;p&gt;There is now an Xtend plug-in for IntelliJ IDEA. The plug-in provides a smart code editor for Xtend files, including syntax highlighting, code completion, on-the-fly validation, automatic compilation in the background, and more. The plug-in uses the same parser and compiler as Eclipse, but we had to re-implement large parts of the UI integration code.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_9_0_intellij_new_xtend_type.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
Create a new Xtend type (class, interface, or enum) inside Java packages.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/xtend/images/releasenotes/2_9_0_intellij_editor.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
Enjoy the smart code editor with syntax highlighting and code completion. The latter also proposes Xtend’s extension methods. The example from this screenshot is a small JUnit test, which - obviously - can also be launched as such.&lt;/p&gt;
&lt;h2 id=&quot;android-studio-support&quot;&gt;Android Studio Support&lt;/h2&gt;
&lt;p&gt;Xtend now supports &lt;a href=&quot;http://developer.android.com/tools/revisions/studio.html&quot;&gt;Android Studio&lt;/a&gt;, which uses IntelliJ IDEA as a foundation. This is not to be confused with the &lt;a href=&quot;http://developer.android.com/tools/help/adt.html&quot;&gt;Android Developer Tools&lt;/a&gt;, which are based on Eclipse and which have been supported by Xtend since the very beginning.&lt;/p&gt;
&lt;p&gt;This is exciting news as it allows you to use lambda expressions and Active Annotations for Android development - something neither Android Studio nor ADT support out of the box.&lt;/p&gt;
</description>
<pubDate>Tue, 01 Dec 2015 04:30:00 -0500</pubDate>
<link>http://xtend-lang.org/xtend/releasenotes/2015/12/01/version-2-9-0.html</link>
<guid isPermaLink="true">http://xtend-lang.org/xtend/releasenotes/2015/12/01/version-2-9-0.html</guid>
<category>releasenotes</category>
</item>
<item>
<title>IntelliJ IDEA Support Released</title>
<description>&lt;p&gt;Finally! The team is proud to release Xtend 2.9.0 and with it the new IDEA plugin. &lt;br /&gt;
For more details please have a look at the &lt;a href=&quot;/xtend/releasenotes.html#/releasenotes/2015/12/01/version-2-9-0&quot;&gt;release notes&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.jetbrains.com/idea/docs/logo_intellij_idea.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
</description>
<pubDate>Tue, 01 Dec 2015 00:00:00 -0500</pubDate>
<link>http://xtend-lang.org/xtend/news/2015/12/01/Xtend-2-9-0.html</link>
<guid isPermaLink="true">http://xtend-lang.org/xtend/news/2015/12/01/Xtend-2-9-0.html</guid>
<category>news</category>
</item>
<item>
<title>Intellij IDEA Plug-in Preview</title>
<description>&lt;p&gt;Today we are pleased to announce, that we have put out a preview (beta version) of the upcoming IntelliJ IDEA plugin.&lt;br /&gt;
The repository URL is:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://download.eclipse.org/modeling/tmf/xtext/idea/2.9.0.beta5/updatePlugins.xml&quot;&gt;http://download.eclipse.org/modeling/tmf/xtext/idea/2.9.0.beta5/updatePlugins.xml&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Note, that it requires &lt;a href=&quot;https://www.jetbrains.com/idea/nextversion/&quot;&gt;IDEA 15 Preview&lt;/a&gt;.&lt;br /&gt;
Please try it out and &lt;a href=&quot;https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Xtend&quot;&gt;file tickets&lt;/a&gt; when you hit any bugs!&lt;/p&gt;
</description>
<pubDate>Fri, 02 Oct 2015 00:00:00 -0400</pubDate>
<link>http://xtend-lang.org/xtend/news/2015/10/02/Xtend-Intellij-IDEA-Preview.html</link>
<guid isPermaLink="true">http://xtend-lang.org/xtend/news/2015/10/02/Xtend-Intellij-IDEA-Preview.html</guid>
<category>news</category>
</item>
</channel>
</rss>