diff --git a/pom.xml b/pom.xml index 96970e6e5..59f61e721 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.springframework.data spring-data-jpa - 1.0.1.BUILD-SNAPSHOT + 1.0.1.RELEASE Spring Data JPA Spring Data module to provide sophisticated support for JPA repositories diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt index 1d0cd0aeb..b3d12b27d 100644 --- a/src/main/resources/changelog.txt +++ b/src/main/resources/changelog.txt @@ -1,6 +1,18 @@ Spring Data JPA Changelog ========================= +Changes in version 1.0.1 (2011-09-05) +---------------------------------------- +* Fixed pagination for queries using group-by clause (DATAJPA-86) +* Fixed NoSuchElementException for queries using dynamic sorting (DATAJPA-90) +* JpaEntityInformationSupport.getMetadata(...) throws IllegalArgumentException if entity not found in JPA metamodel (DATAJPA-93) +* Sort handed via Pageable instance is now again regarded by query execution (DATAJPA-94) +* Fixed creating CriteriaQuery instances for some keywords when deriving queries from method names (DATAJPA-96) +* Fixed manifest version reference of javax.annotation (DATAJPA-79) +* Improved performanve of SimpleJpaRepository.exists(…) by not loading the entity (DATAJPA-81) +* Updated reference documentation covering persistence exception translation, custom namespace attributes (DATAJPA-91, DATAJPA-88, DATAJPA-80) +* Reformatted sources with Spring Data Eclipse formatter and added settings to project (DATAJPA-98) + Changes in version 1.0.0.GA (2011-07-21) ---------------------------------------- * Updated to Spring Data Commons 1.1.0.RELEASE - (DATACMNS-53, DATACMNS-49)