I have an entity
@Entity
@Audited
class ValuesHolder(
// other fields
@Column(columnDefinition = "NUMERIC(18,6)[]", nullable = false)
var values: List<BigDecimal?>,
)
When I make any changes to the values hibernate envers doesn't recognize it as a change and doesn't audit the changes. Why is that? And how do I make it so? Do i need to do that manually?