You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spring-boot-starter-parent-3.3.5: OK
spring-boot-starter-parent-3.4.0: FAILURE
Since boot 3.4.0, the following test fails.
Has there been a change on purpose, so that the prior behavior was actually false, and has now been corrected?
Or is this a bug?
I noticed: downgrading hibernate also fixed the issue: <hibernate.version>6.5.3.Final</hibernate.version>` (= version from boot 3.3.5)
Sidenote: I cannot remember exactly why I was setting the ID here manually. Probably there was an issue with the generated sequence ids at time of writing.
The text was updated successfully, but these errors were encountered:
This sounds very much like a Hibernate issue, since all the JPA mapping is done by it, including the id generation.
I recommend creating a reproducer based purely on Hibernate and submitting an issue with them.
If you think this is actually a Spring Data issue, please provide a reproducer for the issue including a test case that demonstrates the correct behaviour using the EntityManager directly.
spring-boot-starter-parent-3.3.5: OK
spring-boot-starter-parent-3.4.0: FAILURE
Since boot 3.4.0, the following test fails.
Has there been a change on purpose, so that the prior behavior was actually false, and has now been corrected?
Or is this a bug?
I noticed: downgrading
hibernate also fixed the issue:
<hibernate.version>6.5.3.Final</hibernate.version>` (= version from boot 3.3.5)demo.zip
Sidenote: I cannot remember exactly why I was setting the ID here manually. Probably there was an issue with the generated sequence ids at time of writing.
The text was updated successfully, but these errors were encountered: