SHA256
1
0
forked from pool/ant

- Update to 1.9.2

- Incompatible changes:
 * ProjectHelper's implementation import and include tasks
   defaults the targetPrefix to ProjectHelper.USE_PROJECT_NAME_AS_TARGET_PREFIX.
   ProjectHelper2 is not affected, apache#54940.
 * FixCRLF used to treat the EOL value ASIS to convert to the system property
   line.separator. Specified was that ASIS would leave the EOL characters alone,
   the task now really leaves the EOL characters alone. This also implies that
   EOL ASIS will not insert a newline even if fixlast is set to true.
   apache#53036
 * The CommandLauncher hierarchy that used to be a set of inner
   classes of Execute has been extracted to the
   org.apache.tools.ant.taskdefs.launcher package.
 * Any FileResource whose represented File has a parent also has a basedir.
 * Removing the Perforce Ant tasks replaced by tasks supplied by Perforce Inc.
 * Setting the default encoding of StringResource to UTF-8 instead of null
- Bugfixes:
 * <javadoc> post-process generated docs to migitiate frame
    injection attack (CVE-2013-1571) apache#55132
 * Parsing of zip64 extra fields has become more lenient
 * TarInputStream should now properly read GNU longlink entries' names.
   apache#55040.
 * <java> and <exec> used to be too restrictive when evaluating
   whether a given set of options is compatible with spawning the new
   process, apache#55112.
 * Corrected XSLTC error in <junitreport>, apache#54641.
 * and many more, see WHATSNEW for details

OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=40
This commit is contained in:
2013-08-22 09:27:53 +00:00
committed by Git OBS Bridge
parent b28cca6b25
commit 20cb0abf56
7 changed files with 247 additions and 268 deletions

View File

@@ -1,3 +1,34 @@
-------------------------------------------------------------------
Thu Aug 22 07:47:26 UTC 2013 - mvyskocil@suse.com
- Update to 1.9.2
- Incompatible changes:
* ProjectHelper's implementation import and include tasks
defaults the targetPrefix to ProjectHelper.USE_PROJECT_NAME_AS_TARGET_PREFIX.
ProjectHelper2 is not affected, apache#54940.
* FixCRLF used to treat the EOL value ASIS to convert to the system property
line.separator. Specified was that ASIS would leave the EOL characters alone,
the task now really leaves the EOL characters alone. This also implies that
EOL ASIS will not insert a newline even if fixlast is set to true.
apache#53036
* The CommandLauncher hierarchy that used to be a set of inner
classes of Execute has been extracted to the
org.apache.tools.ant.taskdefs.launcher package.
* Any FileResource whose represented File has a parent also has a basedir.
* Removing the Perforce Ant tasks replaced by tasks supplied by Perforce Inc.
* Setting the default encoding of StringResource to UTF-8 instead of null
- Bugfixes:
* <javadoc> post-process generated docs to migitiate frame
injection attack (CVE-2013-1571) apache#55132
* Parsing of zip64 extra fields has become more lenient
* TarInputStream should now properly read GNU longlink entries' names.
apache#55040.
* <java> and <exec> used to be too restrictive when evaluating
whether a given set of options is compatible with spawning the new
process, apache#55112.
* Corrected XSLTC error in <junitreport>, apache#54641.
* and many more, see WHATSNEW for details
-------------------------------------------------------------------
Mon Jan 7 12:15:09 UTC 2013 - mvyskocil@suse.com