DATAJPA-434 - Prepare release 1.4.3.
Updated changelog, notice and readme. Updated SD commons dependency to 1.6.3.RELEASE.
This commit is contained in:
6
pom.xml
6
pom.xml
@@ -27,7 +27,7 @@
|
||||
<hsqldb1>1.8.0.10</hsqldb1>
|
||||
<jpa>2.0.0</jpa>
|
||||
<openjpa>2.2.1</openjpa>
|
||||
<springdata.commons>1.6.3.BUILD-SNAPSHOT</springdata.commons>
|
||||
<springdata.commons>1.6.3.RELEASE</springdata.commons>
|
||||
|
||||
</properties>
|
||||
|
||||
@@ -422,8 +422,8 @@
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>spring-libs-snapshot</id>
|
||||
<url>http://repo.springsource.org/libs-snapshot-local</url>
|
||||
<id>spring-libs-milestone</id>
|
||||
<url>http://repo.springsource.org/libs-release-local</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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").
|
||||
|
||||
@@ -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).
|
||||
|
||||
Reference in New Issue
Block a user