From c0c0ae1c386240d305da6602dae5d05efdb6c27d Mon Sep 17 00:00:00 2001 From: Steve Ebersole Date: Thu, 19 Apr 2018 12:47:00 -0500 Subject: [PATCH] document changes to EnhancementTask in 5.3 migration log --- migration-guide.adoc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/migration-guide.adoc b/migration-guide.adoc index f0e1226ec2..52cfca7de3 100644 --- a/migration-guide.adoc +++ b/migration-guide.adoc @@ -83,6 +83,18 @@ The change for HHH-11356 required changes in its consumers. One such consumer i Statistics system.... +=== EnhancementTask changes + +The API of the `org.hibernate.tool.enhance.EnhancementTask` Ant task was changed, specifically +the `#addFileset` method was dropped in favor of `#setBase` and `#setDir` + +See details on the https://hibernate.atlassian.net/browse/HHH-11795[HHH-11795] Jira issue. + +The main gist is that EnhancementTask was fixed (through a contribution) to actually work with +`Enhancer` from `BytecodeProvider`. Previously it had not. And part of fixing that required this +change. + + === 5.3 -> 6.0 compatibility changes