DATAJPA-351 - Prepare 1.4 M1 release.
Upgraded to Spring Data Build 1.1.0. Upgraded to Spring Data Commons 1.6 M1. Added milestone repository. Updated documentation references to the 1.6 M1 artifacts.
This commit is contained in:
10
pom.xml
10
pom.xml
@@ -14,7 +14,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
<version>1.1.0.BUILD-SNAPSHOT</version>
|
||||
<version>1.1.0.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.6.0.BUILD-SNAPSHOT</springdata.commons>
|
||||
<springdata.commons>1.6.0.M1</springdata.commons>
|
||||
|
||||
</properties>
|
||||
|
||||
@@ -371,7 +371,7 @@
|
||||
<plugin>
|
||||
<groupId>com.mysema.maven</groupId>
|
||||
<artifactId>apt-maven-plugin</artifactId>
|
||||
<version>1.0.8</version>
|
||||
<version>${apt}</version>
|
||||
<configuration>
|
||||
<processor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</processor>
|
||||
</configuration>
|
||||
@@ -416,8 +416,8 @@
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>spring-libs-snapshot</id>
|
||||
<url>http://repo.springsource.org/lib-snapshot-local</url>
|
||||
<id>spring-libs-milestone</id>
|
||||
<url>http://repo.springsource.org/libs-milestone-local</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
<part id="reference">
|
||||
<title>Reference Documentation</title>
|
||||
|
||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.4.0.RELEASE/src/docbkx/repositories.xml">
|
||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.0.M1/src/docbkx/repositories.xml">
|
||||
<xi:fallback href="../../../spring-data-commons/src/docbkx/repositories.xml" />
|
||||
</xi:include>
|
||||
|
||||
@@ -57,10 +57,10 @@
|
||||
<part id="appendix">
|
||||
<title>Appendix</title>
|
||||
|
||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.4.0.RELEASE/src/docbkx/repository-namespace-reference.xml">
|
||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.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.4.0.RELEASE/src/docbkx/repository-query-keywords-reference.xml">
|
||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.0.M1/src/docbkx/repository-query-keywords-reference.xml">
|
||||
<xi:fallback href="../../../spring-data-commons/src/docbkx/repository-query-keywords-reference.xml" />
|
||||
</xi:include>
|
||||
|
||||
|
||||
@@ -1,6 +1,47 @@
|
||||
Spring Data JPA Changelog
|
||||
=========================
|
||||
|
||||
Changes in version 1.4.0.M1 (2012-06-04)
|
||||
----------------------------------------
|
||||
* Upgrade to Querydsl 3.0.0 (DATAJPA-321, DATAJPA-320)
|
||||
* Support query internal LIKE expressions (DATAJPA-292, DATAJPA-341)
|
||||
* Support to 'countBy' query methods. (DATAJPA-231)
|
||||
* Support for case insensitive sorting in Pageable and Sort (DATAJPA-296, DATAJPA-327)
|
||||
* Code doesn't compile with JDK 6 due to generic method signature (DATAJPA-304)
|
||||
* XML Schema Validation errors in STS (DATAJPA-314)
|
||||
* Allow building against Hibernate 4 (DATAJPA-316)
|
||||
* JpaRepository interface should have @NoRepositoryBean (DATAJPA-317)
|
||||
* findAll(ids) throws SQL grammar exception when given an empty collection (DATAJPA-332)
|
||||
* Repository injection fails if BeanPostProcessor depends on repository (DATAJPA-335)
|
||||
* Release 1.3.1 breaks auditing (DATAJPA-336)
|
||||
* Wrong calculation of total number of elements when using DISTINCT clause (DATAJPA-342)
|
||||
* Subselect bug introduced in the snapshot on 20130507 (DATAJPA-343)
|
||||
* Improve query validation by creating explicit EntityManager instance (DATAJPA-350)
|
||||
* JpaEntityInformationSupport could inspect potentially available @Version annotated field for null to discover isNew (DATAJPA-119)
|
||||
* Specifications must support null as a parent Specification (DATAJPA-300)
|
||||
* Prevent duplicate registration of PersistenceAnnotationBeanPostProcessor (DATAJPA-308)
|
||||
* CDI repository beans should be application scoped (DATAJPA-319)
|
||||
* Invalid class name referenced in readme.md (DATAJPA-334)
|
||||
* Impove OSGi manifest to allow usage with Spring 4 and Slf4j 1.6.x (DATAJPA-340, DATAJPA-339)
|
||||
* @QueryHints can now be used in a meta annotation (DATAJPA-345)
|
||||
* Release 1.4. M1 (DATAJPA-351)
|
||||
|
||||
Changes in version 1.3.2.RELEASE (2013-05-02)
|
||||
---------------------------------------------
|
||||
* Release 1.3.1 breaks auditing (DATAJPA-336)
|
||||
* findAll(ids) throws SQL grammar exception when given an empty collection (DATAJPA-332)
|
||||
* Invalid class name referenced in readme.md (DATAJPA-334)
|
||||
|
||||
Changes in version 1.3.1.RELEASE (2013-04-16)
|
||||
---------------------------------------------
|
||||
* Support query internal LIKE expressions (DATAJPA-292)
|
||||
* Code doesn't compile with JDK 6 due to generic method signature (DATAJPA-304)
|
||||
* XML Schema Validation errors in STS (DATAJPA-314)
|
||||
* Allow building against Hibernate 4 (DATAJPA-316)
|
||||
* JpaRepository interface should have @NoRepositoryBean (DATAJPA-317)
|
||||
* Specifications must support null as a parent Specification (DATAJPA-300)
|
||||
* Prevent duplicate registration of PersistenceAnnotationBeanPostProcessor (DATAJPA-308)
|
||||
|
||||
Changes in version 1.3.0.RELEASE (2012-02-07)
|
||||
---------------------------------------------
|
||||
* Added support for annotation based auditing (DATAJPA-116)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Spring Data JPA 1.0
|
||||
Copyright (c) [2011] SpringSource, a division of VMware, Inc.
|
||||
Spring Data JPA 1.4 M1
|
||||
Copyright (c) [2011-2013] SpringSource, a division of VMware, Inc.
|
||||
|
||||
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
||||
You may not use this product except in compliance with the License.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
SPRING DATA JPA 1.0.0 M1 (Feb 10, 2011)
|
||||
SPRING DATA JPA 1.4.0 M1 (Jun 04, 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