hibernate-orm/migration-guide.adoc

22 lines
908 B
Plaintext
Raw Normal View History

2021-08-27 10:22:59 -04:00
= 5.6 Migration Guide
2015-08-20 15:29:48 -04:00
:toc:
2021-10-14 17:06:01 -04:00
This guide discusses migration from Hibernate ORM version 5.5 to version 5.6.
2021-08-27 10:22:59 -04:00
For migration from other versions, see https://github.com/hibernate/hibernate-orm/wiki/Migration-Guides .
2018-01-17 23:02:35 -05:00
== Known changes
2021-08-27 10:22:59 -04:00
This version is very similar to Hibernate ORM 5.5, with the exception of having removed some long standing deprecated features.
2021-08-27 10:22:59 -04:00
=== Javassist removed
2021-08-27 10:22:59 -04:00
It is no longer an option to choose Javassist as implementation used for the bytecode enhancement of entities.
Byte Buddy has been the default for some time, and Javassist has been deprecated for some time and now has been removed.
2021-08-27 10:22:59 -04:00
This should have no functional impact on applications; the only exception being that it's not longer valid to
configure `hibernate.bytecode.provider=javassist`: remove the property if you're using this.
2021-08-27 10:22:59 -04:00
A side effect is that Hibenate ORM no longer lists javassist among its dependencies.