From 44c81c6272dd974f16a3bd2e2814dee1dad1a011 Mon Sep 17 00:00:00 2001 From: Jaikiran Pai Date: Thu, 21 Dec 2017 10:51:44 +0530 Subject: [PATCH] Update the release notes to include a the potential breaking change to "delete" task --- WHATSNEW | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/WHATSNEW b/WHATSNEW index fe9326bfc..89a3e7b37 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: + + + + should instead be changed to use resource collections like: + + + + + + + Fixed bugs: -----------