Removed superfluous property from pom.
Removed includeDeletion parameter since it is always set to true.
Add toString for Country for easier debugging.
Avoid overriding deprecated method and rather do so with the recommended alternative in RevisionRepositoryFactory. Java 8 polishing in RevisionRepositoryFactory's constructor.
We now make use of the RevisionSort type introduced in Spring Data Commons [0] to determine the order of the revisions to be read.
[0] https://jira.spring.io/browse/DATACMNS-888
Adapted to a signature change in Spring Data JPA. Improved test configuration and removed XML configuration completely. Upgraded to the latest Spring 3.2.x version.
We now eagerly return an empty Revisions instance in case we don't
find revision numbers for an entity with a given ID. Not doing so
caused issues with database vendors as they might expect at least a
single revision number.
Upgraded to Spring Data JPA 1.1.0 GA release. Adapted to change in Spring Data Commons 1.3.0 GA release API. Reduced H2 and Spring Test context framework dependency to test scope. Reduced CGLib dependency to runtime scope. Remove obsolete WAR plugin dependency and repository declarations.
Added an implementation of the Spring Data Commons historiography API based on Hibernate Envers. The implementation is a contribution of @hygl to a large degree.