Browse Source

Update the release notes to include a the potential breaking change to "delete" task

master
Jaikiran Pai 7 years ago
parent
commit
44c81c6272
1 changed files with 15 additions and 0 deletions
  1. +15
    -0
      WHATSNEW

+ 15
- 0
WHATSNEW View File

@@ -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:
-----------



Loading…
Cancel
Save