DATAJPA-481 - Prepare release 1.6 M1.

Updated Spring Data Commons and Spring Data Build version in pom.xml. Update pom.xml to use milestone repository. Update reference documentation to use recent Spring Data Commons version. Update changelog to reflect recent changes / releases. Update version in notice & readme.

Original pull request: #75.
This commit is contained in:
Thomas Darimont
2014-03-31 15:57:01 +02:00
committed by Oliver Gierke
parent 44d7e2ef24
commit 398c87007d
6 changed files with 60 additions and 11 deletions

View File

@@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>1.4.0.BUILD-SNAPSHOT</version>
<version>1.4.0.M1</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.3.0</openjpa>
<springdata.commons>1.8.0.BUILD-SNAPSHOT</springdata.commons>
<springdata.commons>1.8.0.M1</springdata.commons>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
@@ -424,8 +424,8 @@
<repositories>
<repository>
<id>spring-libs-snapshot</id>
<url>http://repo.spring.io/libs-snapshot</url>
<id>spring-libs-milestone</id>
<url>http://repo.spring.io/libs-milestone</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.0.RELEASE</version>
<version>1.5.1.RELEASE</version>
</dependency>
```

View File

@@ -74,7 +74,7 @@
<part id="reference">
<title>Reference Documentation</title>
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.7.0.RELEASE/src/docbkx/repositories.xml"
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.8.0.M1/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/SpringSource/spring-data-commons/1.7.0.RELEASE/src/docbkx/repository-namespace-reference.xml"
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.8.0.M1/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/SpringSource/spring-data-commons/1.7.0.RELEASE/src/docbkx/repository-query-keywords-reference.xml"
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.8.0.M1/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,55 @@
Spring Data JPA Changelog
=========================
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)
* Mitigate spec violations in Hibernate for query creation. (DATAJPA-476)
* Fixed parameter binding detection with parentheses. (DATAJPA-483)
* Upgraded to Hibernate profiles to 4.3.4 and 4.2.10. (DATAJPA-485)
* Support order by arbitrarily nested association paths with Querydsl. (DATAJPA-491)
* Altered implementation of findAll(Iterable<ID>) to work around bug in OpenJPA. (DATAJPA-492)
* Fix template.mf to make sure auditing can be used on OSGi. (DATAJPA-494)
* Query derivation doesn't create joins for in-clauses on element collections. (DATAJPA-496)
Changes in version 1.4.5.RELEASE (2014-03-10)
---------------------------------------------
* When used "LIKE expression" and "other expression" at the same time, occurred the QuerySyntaxException of Hibernate. (DATAJPA-473)
* IllegalStateException caused by QueryUtils.toExpressionRecursively(…). (DATAJPA-476)
* findAll(Iterable<ID>) : Invalid comparation Exception thrown. (DATAJPA-492)
* Improve FAQ, C2.1 on the SessionFactory replacement. (DATAJPA-462)
* Documentation on CDI setup is incomplete. (DATAJPA-474)
* Upgrade Hibernate build profiles to latest version. (DATAJPA-485)
* Release 1.4.5. (DATAJPA-488)
Changes in version 1.5.0.RELEASE (2014-02-24)
-----------------------------------------

View File

@@ -1,4 +1,4 @@
Spring Data JPA 1.5.0 RELEASE
Spring Data JPA 1.6.0 M1
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.0 RELEASE (Feb 24th, 2014)
----------------------------------------------
Spring Data JPA 1.6.0 M1 (March 31th, 2014)
-------------------------------------------
Spring Data Jpa is released under the terms of the Apache Software License Version 2.0 (see license.txt).