DATAJPA-515 - Prepare release 1.5.2.

Upgraded to Spring Data Commons 1.7.2, Spring Data Build parent 1.3.2. Update pom.xml to use release repository. Update changelog to reflect recent changes / releases. Update version in notice & readme.

Original pull request: #78.
This commit is contained in:
Thomas Darimont
2014-04-15 14:35:08 +02:00
committed by Oliver Gierke
parent b71cd3e2f9
commit 15c97d8020
6 changed files with 52 additions and 12 deletions

View File

@@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>1.3.2.BUILD-SNAPSHOT</version>
<version>1.3.2.RELEASE</version>
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
</parent>
@@ -27,7 +27,7 @@
<hsqldb1>1.8.0.10</hsqldb1>
<jpa>2.0.0</jpa>
<openjpa>2.2.1</openjpa>
<springdata.commons>1.7.2.BUILD-SNAPSHOT</springdata.commons>
<springdata.commons>1.7.2.RELEASE</springdata.commons>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
@@ -423,8 +423,8 @@
<repositories>
<repository>
<id>spring-libs-snapshot</id>
<url>http://repo.spring.io/libs-snapshot</url>
<id>spring-libs-release</id>
<url>http://repo.spring.io/libs-release</url>
</repository>
</repositories>

View File

@@ -30,7 +30,7 @@ Download the jar though Maven:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.5.1.RELEASE</version>
<version>1.5.2.RELEASE</version>
</dependency>
```

View File

@@ -5,7 +5,7 @@
<bookinfo>
<title>Spring Data JPA - Reference Documentation</title>
<releaseinfo>version;</releaseinfo>
<releaseinfo>&version;</releaseinfo>
<authorgroup>
<author>
@@ -74,7 +74,7 @@
<part id="reference">
<title>Reference Documentation</title>
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.7.1.RELEASE/src/docbkx/repositories.xml"
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.7.2.RELEASE/src/docbkx/repositories.xml"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:fallback href="../../../spring-data-commons/src/docbkx/repositories.xml" />
</xi:include>
@@ -85,12 +85,12 @@
<part id="appendix">
<title>Appendix</title>
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.7.1.RELEASE/src/docbkx/repository-namespace-reference.xml"
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.7.2.RELEASE/src/docbkx/repository-namespace-reference.xml"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:fallback href="../../../spring-data-commons/src/docbkx/repository-namespace-reference.xml" />
</xi:include>
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.7.1.RELEASE/src/docbkx/repository-query-keywords-reference.xml"
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.7.2.RELEASE/src/docbkx/repository-query-keywords-reference.xml"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:fallback href="../../../spring-data-commons/src/docbkx/repository-query-keywords-reference.xml" />
</xi:include>

View File

@@ -1,6 +1,46 @@
Spring Data JPA Changelog
=========================
Changes in version 1.5.2.RELEASE (2014-04-15)
---------------------------------------------
* Sorting for a field in a composite primary key throws "Can't cast to EntityPath". (DATAJPA-497)
* Sorting of Embeddables raises ClassCastException. (DATAJPA-500)
* OSGi version conflict regarding joda-time. (DATAJPA-502)
* Error on QueryDSL after upgrade (DATAJPA-504)
* Blob query result only returns first byte. (DATAJPA-505)
* Entity name used in 'count' queries ignores the entity name set in ORM mapping file. (DATAJPA-509)
* Performance tuning LockModePopulatingMethodIntercceptor.invoke(). (DATAJPA-507)
* Improve error message for missing @Param annotations for query methods with named parameters. (DATAJPA-513)
* Release 1.5.2. (DATAJPA-515)
Changes in version 1.6.0.M1 (2014-03-31)
----------------------------------------
* Can't use pagination (Pageable) with @IdClass entities (spring-data-jpa 1.4.3 & Hibernate 4.1.9). (DATAJPA-472)
* IllegalStateException caused by QueryUtils.toExpressionRecursively(…). (DATAJPA-476)
* Parameter binding detection for in clause broken for parameters surrounded with parentheses. (DATAJPA-483)
* findAll(Iterable<ID>) : Invalid comparation Exception thrown. (DATAJPA-492)
* Missing Imports in Spring Data JPA for Auditing. (DATAJPA-494)
* Query derivation doesn't create joins for in-clauses on element collections. (DATAJPA-496)
* Sorting for a field in a composite primary key throws "Can't cast to EntityPath". (DATAJPA-497)
* Sorting of Embeddables raises ClassCastException. (DATAJPA-500)
* OSGi version conflict regarding joda-time. (DATAJPA-502)
* Error on QueryDSL after upgrade. (DATAJPA-504)
* Blob query result only returns first byte. (DATAJPA-505)
* Support for @QueryHints on CRUD methods. (DATAJPA-173)
* Add support for returning subtypes of Repository Entity in JpaRepository.saveAndFlush. (DATAJPA-464)
* Postpone the construction of AuditorAware in AuditEntityListener. (DATAJPA-478)
* Repositories should expose a single MappingContext instance. (DATAJPA-484)
* Sort by property of an associated object generates left join only for the first level. (DATAJPA-491)
* Update auditing configuration to be able to use accessor annotations. (DATAJPA-501)
* Query creation for deleteBy / removeBy prefix. (DATAJPA-460)
* Add support for lazy loading configuration via JPA 2.1 fetch-/loadgraph. (DATAJPA-466)
* Add support for sliced execution. (DATAJPA-486)
* Upgrade Hibernate build profiles to latest version. (DATAJPA-485)
* Adapt to auditing configuration changes in Spring Data Commons. (DATAJPA-487)
* Adapt to API changes in RepositoryProxyPostProcessor. (DATAJPA-489)
* Upgrade to OpenJPA 2.3.0. (DATAJPA-493)
* Release 1.6 M1. (DATAJPA-481)
Changes in version 1.5.1.RELEASE (2014-03-13)
---------------------------------------------
* Verify that pagination works with entities with @IdClass. (DATAJPA-472)

View File

@@ -1,4 +1,4 @@
Spring Data JPA 1.5.1 RELEASE
Spring Data JPA 1.5.2 RELEASE
Copyright (c) [2011-2014] Pivotal Software, Inc.
This product is licensed to you under the Apache License, Version 2.0 (the "License").

View File

@@ -1,5 +1,5 @@
Spring Data JPA 1.5.1 RELEASE (Mar 13th, 2014)
----------------------------------------------
Spring Data JPA 1.5.2 RELEASE (April 15th, 2014)
------------------------------------------------
Spring Data JPA is released under the terms of the Apache Software License Version 2.0 (see license.txt).