DATAJPA-428 - Prepare release 1.5.0.M1.

Upgraded to Spring Data Commons 1.7.0.M1 and Spring Data Build 1.3.0.M1. Use milestone repository instead of snapshot repo. Let reference documentation refer to 1.7 M1 reference in Spring Data Commons. Updated changelog, notice and readme.
This commit is contained in:
Oliver Gierke
2013-11-19 12:43:33 +01:00
parent 0d089a3d61
commit 8aafc4fb6c
6 changed files with 43 additions and 10 deletions

View File

@@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.3.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.2.1</openjpa>
<springdata.commons>1.7.0.BUILD-SNAPSHOT</springdata.commons>
<springdata.commons>1.7.0.M1</springdata.commons>
</properties>
@@ -418,8 +418,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-milestone-local</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.4.1.RELEASE</version>
<version>1.4.2.RELEASE</version>
</dependency>
```

View File

@@ -61,7 +61,7 @@
<part id="reference">
<title>Reference Documentation</title>
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.0.RELEASE/src/docbkx/repositories.xml">
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.7.0.M1/src/docbkx/repositories.xml">
<xi:fallback href="../../../spring-data-commons/src/docbkx/repositories.xml" />
</xi:include>
@@ -71,10 +71,10 @@
<part id="appendix">
<title>Appendix</title>
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.0.RELEASE/src/docbkx/repository-namespace-reference.xml">
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.7.0.M1/src/docbkx/repository-namespace-reference.xml">
<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.6.0.RELEASE/src/docbkx/repository-query-keywords-reference.xml">
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.7.0.M1/src/docbkx/repository-query-keywords-reference.xml">
<xi:fallback href="../../../spring-data-commons/src/docbkx/repository-query-keywords-reference.xml" />
</xi:include>

View File

@@ -1,6 +1,39 @@
Spring Data JPA Changelog
=========================
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)
* Unnecessary OUTER JOIN are generated for querying one single table (DATAJPA-401)
* Unnecessary OUTER JOIN are generated when sorting on ElementCollection (DATAJPA-403)
* Reference and Javadoc inconsistence - @Modifying.clearAutomatically default value (DATAJPA-406)
* ClasspathScanningPersistenceUnitPostProcessor throws IndexOutOfBoundsException on Windows (DATAJPA-407)
* Add Java Config example to readme.md (DATAJPA-399)
* Release 1.4.2 (DATAJPA-411)
Changes in version 1.4.1.RELEASE (2013-09-09)
---------------------------------------------
* Update to Spring Data Commons 1.6.1 (DATAJPA-400)
Changes in version 1.4.0.RELEASE (2013-09-09)
---------------------------------------------
* The H2 database needs a quoted name parameter in a @Query annotation (DATAJPA-354)

View File

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

View File

@@ -1,4 +1,4 @@
SPRING DATA JPA 1.4.0 RC1 (Aug 01, 2013)
SPRING DATA JPA 1.5.0 M1 (Nov 19, 2013)
---------------------------------------
Spring Data Jpa is released under the terms of the Apache Software License Version 2.0 (see license.txt).