Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion marlo-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<ciat-adauth.version>5.5</ciat-adauth.version>
<hibernate-core-version>4.3.5.Final</hibernate-core-version>
<hibernate-core-version>5.3.38.Final</hibernate-core-version>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hibernate 5 upgrade breaks Spring ORM integration

High Severity

Upgrading hibernate-core-version from 4.3.5.Final to 5.3.38.Final is a major version upgrade that breaks existing code. The codebase uses Spring's Hibernate 4-specific classes (org.springframework.orm.hibernate4.HibernateTransactionManager and LocalSessionFactoryBuilder) and Hibernate 4's org.hibernate.metamodel.source.MetadataImplementor, none of which exist in Hibernate 5. This upgrade requires corresponding code changes to use org.springframework.orm.hibernate5.* classes and org.hibernate.boot.spi.MetadataImplementor.

Fix in Cursor Fix in Web

<org.springframework-version>4.3.24.RELEASE</org.springframework-version>
<junit.version>4.13.1</junit.version>
<logback-classic.version>1.1.7</logback-classic.version>
Expand Down