From de494756a47c88582cd99447212de49de9b8a1c5 Mon Sep 17 00:00:00 2001 From: Jan Schatteman Date: Thu, 12 Sep 2024 14:15:44 +0200 Subject: [PATCH] Add notes about removal of EmptyInterceptor and TestForIssue to migration guide doc Signed-off-by: Jan Schatteman --- migration-guide.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/migration-guide.adoc b/migration-guide.adoc index e98582cc34..b06f3b76b5 100644 --- a/migration-guide.adoc +++ b/migration-guide.adoc @@ -330,11 +330,13 @@ While most users will never see this change, it might impact integrations which ** Removed `@LazyCollection` ** Removed `@IndexColumn` ** Replaced uses of `CacheModeType` with `CacheMode` +** Removed `@TestForIssue` (for testing purposes) -> use `org.hibernate.testing.orm.junit.JiraKey` and `org.hibernate.testing.orm.junit.JiraKeyGroup` * Classes/interfaces ** Removed `SqmQualifiedJoin` (all joins are qualified) ** Removed `AdditionalJaxbMappingProducer` -> `AdditionalMappingContributor` ** Removed `MetadataContributor` -> `AdditionalMappingContributor` +** Removed `EmptyInterceptor` -> implement `org.hibernate.Interceptor` directly * Behavior ** Removed `org.hibernate.Session#save` in favor of `org.hibernate.Session#persist`