Hi everyone, We are using Hibernate Envers 6.1.7.Final for our Auditing functionality. The Problem we’re facing right now is the following: We have an Audited Entity (provided below) that contains some ManyToMany / ElementCollection Fields that also need to be audited. However, when I change the value of any filed (e.g. changing the name from “x” to “y”), Envers detects that change, and it marks also all ManyToMany / ElementCollection Fields as changed. This is not true. They should not be marked as changed. The Entity:
Am I doing something wrong that’s causing this issue? Or is it a limitation in HN Envers? P.S. A Test case that reproduces this issue is being created and will be provided soon. Many thanks for considering my request. |