Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Tycho/Release Notes/0.18"

m (grouped p2 changes into fixes/enhancements; minor formatting)
(link to workaround for partial IU build failure)
Line 13: Line 13:
 
==== Target Platform & Dependency Resolution  ====
 
==== Target Platform & Dependency Resolution  ====
  
* (INCOMPATIBLE CHANGE) The build now fails if a p2 repository is referenced that has installable units from an old-style update site. These so-called "partial IUs" cannot be used for dependency resolution and used to be silently dropped from the target platform. This often lead to strange resolution problems ([https://bugs.eclipse.org/bugs/show_bug.cgi?id=380438 bug 380438], [http://stackoverflow.com/questions/12647177/tycho-cant-find-android-development-tools-bundles question on stackoverflow]). Now the build fails with a clear error message.
+
* (INCOMPATIBLE CHANGE) The build now fails if a p2 repository is referenced that has installable units from an old-style update site. These so-called "partial IUs" cannot be used for dependency resolution and used to be silently dropped from the target platform. This often lead to strange resolution problems ([https://bugs.eclipse.org/bugs/show_bug.cgi?id=380438 bug 380438], [http://stackoverflow.com/questions/12647177/tycho-cant-find-android-development-tools-bundles question on stackoverflow]). Now the build fails with a clear error message. (See the [[Tycho/Additional Tools#publish-features-and-bundles goal|Additional Tools]] page for an example of how to convert an old-style update site into a p2 repository.)
 
* Use a newer version of p2 (from between Kepler RC2 and Kepler RC3). In particular, this version includes the enhancements of [https://bugs.eclipse.org/bugs/show_bug.cgi?id=406960 bug 406960], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=406942 bug 406942], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=406902 bug 406902] and fixes for [https://bugs.eclipse.org/bugs/show_bug.cgi?id=409051 bug 409051], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=408691 bug 408691].
 
* Use a newer version of p2 (from between Kepler RC2 and Kepler RC3). In particular, this version includes the enhancements of [https://bugs.eclipse.org/bugs/show_bug.cgi?id=406960 bug 406960], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=406942 bug 406942], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=406902 bug 406902] and fixes for [https://bugs.eclipse.org/bugs/show_bug.cgi?id=409051 bug 409051], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=408691 bug 408691].
  

Revision as of 10:58, 29 May 2013

List of bug fixes and enhancements in 0.18.0

New and Noteworthy

This is mostly a bug-fix release with changes needed by projects participating in the Eclipse Kepler release train.

Target Platform & Dependency Resolution

  • (INCOMPATIBLE CHANGE) The build now fails if a p2 repository is referenced that has installable units from an old-style update site. These so-called "partial IUs" cannot be used for dependency resolution and used to be silently dropped from the target platform. This often lead to strange resolution problems (bug 380438, question on stackoverflow). Now the build fails with a clear error message. (See the Additional Tools page for an example of how to convert an old-style update site into a p2 repository.)
  • Use a newer version of p2 (from between Kepler RC2 and Kepler RC3). In particular, this version includes the enhancements of bug 406960, bug 406942, bug 406902 and fixes for bug 409051, bug 408691.

Packaging

  • Added experimental support for bundled Mac OS X applications (bugs 378021, 407676). Note that you have to apply a workaround if you want to use this new p2 feature.
  • Several source bundle/feature generation fixes/enhancements:
    • bin.includes from license features now taken over into generated source features (bug 403950)
    • Source feature branding bundle can now be configured (Bug 407706)
    • Source feature.xml now has line-breaks, indentation and an XML declaration (bug 408168)
    • Allow to include non-root content in source bundle (bug 407172)

Other

  • Stricter and OSGi-specific MANIFEST syntax validation yielding better error messages (bug 383192)

Back to the top