From 3db7169d69a9eda351c5c7d011384765654c16f9 Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Tue, 21 Aug 2007 09:42:22 +0000 Subject: [PATCH] adding componentdef to WHATSNEW git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@568040 13f79535-47bb-0310-9956-ffa450edef68 --- WHATSNEW | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/WHATSNEW b/WHATSNEW index e235acdc0..fa19f869c 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -10,6 +10,17 @@ Changes that could break older environments: task for registering delegates and/or replacing the registered PropertyHelper instance. Bugzilla report 42736. +* Added a restricted form of typedef called . This allows + definition of elements that can only be within tasks or types. This + method is now used to define conditions, selectors and selectors. This + means that tasks may now have nested conditions just by implementing + the Condition interface, rather than extending ConditionBase. It also + means that the use of namespaces for some of the selectors introduced + in Ant 1.7.0 is no longer necessary. + Implementing this means that the DynamicElement work-around introduced + in Ant 1.7.0 has been removed. + Bugzilla report 40511. + Fixed bugs: -----------