diff --git a/pom.xml b/pom.xml index 3b19057d0..efb093b74 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ 1.8.0.10 2.0.0 2.2.1 - 1.6.3.BUILD-SNAPSHOT + 1.6.3.RELEASE @@ -422,8 +422,8 @@ - spring-libs-snapshot - http://repo.springsource.org/libs-snapshot-local + spring-libs-milestone + http://repo.springsource.org/libs-release-local diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt index 01f1cbeb6..4a81b22b2 100644 --- a/src/main/resources/changelog.txt +++ b/src/main/resources/changelog.txt @@ -1,6 +1,35 @@ Spring Data JPA Changelog ========================= +Changes in version 1.4.3.RELEASE (2013-12-11) +--------------------------------------------- +* Improved documentation on jpa:repository namespace (DATAJPA-410) +* Fixed count projection for manual queries with projections (DATAJPA-420) +* Guard against null predicates on query creation. (DATAJPA-405) +* Fixed alias detection in manually defined queries using SpEL (DATAJPA-424) +* Generate left joins for referenced associations in sort expressions (DATAJPA-427) +* Tweaks to be compatible with Hibernate 4.3 (DATAJPA-430) +* Release 1.4.3 (DATAJPA-434) + +Changes in version 1.5.0.M1 (2013-11-19) +--------------------------------------------- +* CriteriaQuery caching causes problems with Hibernate's alias name generation in multithreaded environments (DATAJPA-396) +* Unnecessary OUTER JOIN are generated for querying one single table (DATAJPA-401) +* Unnecessary OUTER JOIN are generated when sorting on ElementCollection (DATAJPA-403) +* Custom repository method doesn't parse OrderBy clause properly (DATAJPA-405) +* Reference and Javadoc inconsistence - @Modifying.clearAutomatically default value (DATAJPA-406) +* ClasspathScanningPersistenceUnitPostProcessor throws IndexOutOfBoundsException on Windows (DATAJPA-407) +* org.springframework.data.jpa.repository.Query is not supported varargs (DATAJPA-415) +* #entityName SpEL does not match alias regex when detecting alias (DATAJPA-424) +* Make it possible to configure auditing with Java Config (DATAJPA-265) +* Improve execution of native queries (DATAJPA-389) +* Allow turning a CRUD method into a query method by annotating it with @Query (DATAJPA-398) +* Add support for nested repositories (DATAJPA-416) +* Upgrade to Spring Framework 3.2.5 (DATAJPA-418) +* Improve accessibility of methods in SimpleJpaRepository (DATAJPA-426) +* Add getReference method to the SimpleJpaRepository (DATAJPA-83) +* @Lazy for interface defined repositories (DATAJPA-419) + Changes in version 1.4.2.RELEASE (2013-10-25) --------------------------------------------- * CriteriaQuery caching causes problems with Hibernate's alias name generation in multithreaded environments (DATAJPA-396) diff --git a/src/main/resources/notice.txt b/src/main/resources/notice.txt index 2b304937b..c9c6b67d7 100644 --- a/src/main/resources/notice.txt +++ b/src/main/resources/notice.txt @@ -1,4 +1,4 @@ -Spring Data JPA 1.4.2 RELEASE +Spring Data JPA 1.4.3 RELEASE Copyright (c) [2011-2013] Pivotal Inc. This product is licensed to you under the Apache License, Version 2.0 (the "License"). diff --git a/src/main/resources/readme.txt b/src/main/resources/readme.txt index 0161e40e3..870cbd36c 100644 --- a/src/main/resources/readme.txt +++ b/src/main/resources/readme.txt @@ -1,4 +1,4 @@ -SPRING DATA JPA 1.4.2 RELEASE (Oct 25, 2013) +SPRING DATA JPA 1.4.3 RELEASE (Dec 11, 2013) -------------------------------------------- Spring Data JPA is released under the terms of the Apache Software License Version 2.0 (see license.txt).