DATAJPA-463 - Prepare release 1.4.4.
Updated pom.xml, change log, references to Spring Data Commons reference documentation etc.
This commit is contained in:
committed by
Oliver Gierke
parent
5d1f41ed62
commit
ca96e1bae9
15
pom.xml
15
pom.xml
@@ -14,7 +14,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
<version>1.2.0.RELEASE</version>
|
||||
<version>1.2.1.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.3.RELEASE</springdata.commons>
|
||||
<springdata.commons>1.6.4.RELEASE</springdata.commons>
|
||||
|
||||
</properties>
|
||||
|
||||
@@ -420,11 +420,18 @@
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<repositories>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>spring-libs-milestone</id>
|
||||
<url>http://repo.springsource.org/libs-release-local</url>
|
||||
<url>http://repo.spring.io/libs-release</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>spring-plugins-release</id>
|
||||
<url>http://repo.spring.io/plugins-release</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -29,7 +29,7 @@ Download the jar though Maven:
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-jpa</artifactId>
|
||||
<version>1.4.2.RELEASE</version>
|
||||
<version>1.4.4.RELEASE</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<affiliation>
|
||||
<jobtitle>Software Engineer</jobtitle>
|
||||
|
||||
<orgname>GoPivotal Deutschland GmbH</orgname>
|
||||
<orgname>Pivotal Software, Inc.</orgname>
|
||||
</affiliation>
|
||||
|
||||
<email>ogierke@gopivotal.com</email>
|
||||
@@ -30,7 +30,7 @@
|
||||
<affiliation>
|
||||
<jobtitle>Software Engineer</jobtitle>
|
||||
|
||||
<orgname>GoPivotal Deutschland GmbH</orgname>
|
||||
<orgname>Pivotal Software, Inc.</orgname>
|
||||
</affiliation>
|
||||
|
||||
<email>tdarimont@gopivotal.com</email>
|
||||
@@ -61,7 +61,7 @@
|
||||
<part id="reference">
|
||||
<title>Reference Documentation</title>
|
||||
|
||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.2.RELEASE/src/docbkx/repositories.xml">
|
||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.4.RELEASE/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.2.RELEASE/src/docbkx/repository-namespace-reference.xml">
|
||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.4.RELEASE/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.2.RELEASE/src/docbkx/repository-query-keywords-reference.xml">
|
||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.4.RELEASE/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,31 @@
|
||||
Spring Data JPA Changelog
|
||||
=========================
|
||||
|
||||
Changes in version 1.4.4.RELEASE (2014-02-17)
|
||||
---------------------------------------------
|
||||
* PersistenceProvider enum should also match org.hibernate.jpa.HibernateEntityManager (DATAJPA-444)
|
||||
* Query on byte array fails (DATAJPA-454)
|
||||
* Regression in parameter binding (DATAJPA-461)
|
||||
* Upgrade Hibernate 4 build to latest versions (DATAJPA-443)
|
||||
* Add contribution guidelines (DATAJPA-448)
|
||||
* Release 1.4.4 (DATAJPA-463)
|
||||
|
||||
Changes in version 1.5.0.RC1 (2014-01-29)
|
||||
-----------------------------------------
|
||||
* Add Sort implementations that use JPA Metamodel API and/or QueryDsl API (DATAJPA-12)
|
||||
* Enable support to inject EntityManager via constructor (DATAJPA-445)
|
||||
* <jpa:repositories> needs explicitly given transaction manager even when there is only one tx manager (DATAJPA-410)
|
||||
* COUNT syntax error when use scalar select (select a.b, a.c from …) with paging (DATAJPA-420)
|
||||
* Sort by property of an associated object generates inner join instead of left join with QueryDsl and Hibernate (DATAJPA-427)
|
||||
* Fix incompatibilities with latest Hibernate 4.3 (CR2 currently) (DATAJPA-430)
|
||||
* Repository initialization causes transaction rollback in CDI environments (DATAJPA-442)
|
||||
* PersistenceProvider enum should also match org.hibernate.jpa.HibernateEntityManager (DATAJPA-444)
|
||||
* EntityManagerBeanDefinitionRegistrarPostProcessor doesn't find EntityManagerFactory definitions in BeanFactory hierarchy (DATAJPA-453)
|
||||
* Upgrade to EclipseLink 2.5.1 (DATAJPA-417)
|
||||
* Upgrade Hibernate 4 build to latest versions (DATAJPA-443)
|
||||
* Add contribution guidelines (DATAJPA-448)
|
||||
* Release Spring Data JPA 1.5.0.RC1 (DATAJPA-450)
|
||||
|
||||
Changes in version 1.4.3.RELEASE (2013-12-11)
|
||||
---------------------------------------------
|
||||
* Improved documentation on jpa:repository namespace (DATAJPA-410)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Spring Data JPA 1.4.3 RELEASE
|
||||
Copyright (c) [2011-2013] Pivotal Inc.
|
||||
Spring Data JPA 1.4.4 RELEASE
|
||||
Copyright (c) [2011-2014] Pivotal Software, 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,5 +1,5 @@
|
||||
SPRING DATA JPA 1.4.3 RELEASE (Dec 11, 2013)
|
||||
--------------------------------------------
|
||||
Spring Data JPA 1.4.4 RELEASE (Feb 17th, 2014)
|
||||
----------------------------------------------
|
||||
|
||||
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