Repository: ant Updated Branches: refs/heads/master ca91b859f -> 44c81c627
Update the release notes to include a the potential breaking change to "delete" task Project: http://git-wip-us.apache.org/repos/asf/ant/repo Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/44c81c62 Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/44c81c62 Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/44c81c62 Branch: refs/heads/master Commit: 44c81c6272dd974f16a3bd2e2814dee1dad1a011 Parents: ca91b85 Author: Jaikiran Pai <[email protected]> Authored: Thu Dec 21 10:51:44 2017 +0530 Committer: Jaikiran Pai <[email protected]> Committed: Thu Dec 21 10:51:44 2017 +0530 ---------------------------------------------------------------------- WHATSNEW | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant/blob/44c81c62/WHATSNEW ---------------------------------------------------------------------- diff --git a/WHATSNEW b/WHATSNEW index fe9326b..89a3e7b 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -7,6 +7,21 @@ Changes that could break older environments: * updated the dependency of BCEL to 6.2. Bugzilla Report 61196 + * delete task previously would silently accept wildcard (*) + value for the "file" attribute. That's no longer the case + and an exception could get thrown by the underlying filesystem + for such use. Usage like: + + <delete file="/foo/bar/*.something"/> + + should instead be changed to use resource collections like: + + <delete> + <fileset dir="/foo/bar/" includes="*.something"/> + </delete> + + + Fixed bugs: -----------
