DATACMNS-463 - Prepare release 1.6.5.RELEASE.
Updated readme, template, changelog and notice to reflect recent version and changes. Update reference to reflect spring.io urls.
This commit is contained in:
committed by
Oliver Gierke
parent
35c05c2777
commit
6ec6eb7269
2
pom.xml
2
pom.xml
@@ -12,7 +12,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
<version>1.2.1.RELEASE</version>
|
||||
<version>1.2.2.RELEASE</version>
|
||||
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Spring Data Commons #
|
||||
|
||||
[Spring Data Commons](http://www.springsource.org/spring-data/commons) is part of the umbrella Spring Data project that provides shared infrastructure across the Spring Data projects.
|
||||
[Spring Data Commons](http://projects.spring.io/spring-data-commons) is part of the umbrella Spring Data project that provides shared infrastructure across the Spring Data projects.
|
||||
Most importantly at the moment it contains technology neutral repository interfaces as well as a metadata model for persisting Java classes.
|
||||
|
||||
## Features ##
|
||||
@@ -19,7 +19,7 @@ This README as well as the [reference documentation](http://static.springsource.
|
||||
|
||||
The main project [website](http://www.springsource.org/spring-data) contains links to basic project information such as source code, JavaDocs, Issue tracking, etc.
|
||||
|
||||
For more detailed questions, use the [forum](http://forum.springsource.org/forumdisplay.php?f=27). If you are new to Spring as well as to Spring Data, look for information about [Spring projects](http://www.springsource.org/projects).
|
||||
For more detailed questions, use the [forum](http://forum.spring.io/forum/spring-projects/data/nosql). If you are new to Spring as well as to Spring Data, look for information about [Spring projects](http://projects.spring.io).
|
||||
|
||||
|
||||
## Contributing to Spring Data Commons##
|
||||
|
||||
@@ -535,7 +535,7 @@ List<User> findByLastname(String lastname, Pageable pageable);</programlis
|
||||
/></code> elements inside <code><repositories /></code>.
|
||||
The semantics are exactly equivalent to the elements in Spring's
|
||||
context namespace. For details, see <ulink
|
||||
url="http://static.springsource.org/spring/docs/2.5.x/reference/beans.html#beans-scanning-filters"
|
||||
url="http://docs.spring.io/spring/docs/3.0.x/reference/beans.html#beans-scanning-filters"
|
||||
vendor="">Spring reference documentation</ulink> on these
|
||||
elements.</para>
|
||||
|
||||
@@ -566,7 +566,7 @@ List<User> findByLastname(String lastname, Pageable pageable);</programlis
|
||||
configuration of the Spring container, see the reference
|
||||
documentation.<footnote>
|
||||
<para>JavaConfig in the Spring reference documentation - <ulink
|
||||
url="http://static.springsource.org/spring/docs/3.1.x/spring-framework-reference/html/beans.html#beans-java"/></para>
|
||||
url="http://docs.spring.io/spring/docs/3.1.x/spring-framework-reference/html/beans.html#beans-java"/></para>
|
||||
</footnote></para>
|
||||
|
||||
<para>A sample configuration to enable Spring Data repositories looks
|
||||
@@ -882,7 +882,7 @@ public class MyRepositoryFactoryBean<R extends JpaRepository<T, I>, T,
|
||||
|
||||
<para><footnote>
|
||||
<para>Spring HATEOAS - <ulink
|
||||
url="https://github.com/SpringSource/spring-hateoas">https://github.com/SpringSource/spring-hateoas</ulink></para>
|
||||
url="https://github.com/spring-projects/spring-hateoas">https://github.com/spring-projects/spring-hateoas</ulink></para>
|
||||
</footnote>In general, the integration support is enabled by using the
|
||||
<interfacename>@EnableSpringDataWebSupport</interfacename> annotation in
|
||||
your JavaConfig configuration class.</para>
|
||||
|
||||
@@ -1,6 +1,33 @@
|
||||
Spring Data Commons Changelog
|
||||
=============================
|
||||
|
||||
Changes in version 1.6.5.RELEASE (2014-03-10)
|
||||
---------------------------------------------
|
||||
** Bug
|
||||
* [DATACMNS-442] - Additional documentation on @NoRepositoryBean annotation for intermediate repository interface.
|
||||
* [DATACMNS-460] - Support for repository queries returning array type.
|
||||
* [DATACMNS-462] - Fully initialize collection and map properties.
|
||||
|
||||
Changes in version 1.7.0.RELEASE (2014-02-24)
|
||||
---------------------------------------------
|
||||
** Bug
|
||||
* [DATACMNS-432] - ConcurrentModificationException in Repositories.getRepoInfoFor(Repositories.java:183)
|
||||
* [DATACMNS-436] - Order.ignoreCase not taken into account in equals(), hashCode() and toString()
|
||||
* [DATACMNS-441] - Analyzing @Query annotated bridge methods lead to NPEs during QueryMethod processing in Java 8
|
||||
* [DATACMNS-442] - ID type not detected for intermediate repository interface
|
||||
|
||||
** Improvement
|
||||
* [DATACMNS-433] - Add IsLike and IsNotLike
|
||||
* [DATACMNS-434] - Update spring-data-parent's slf4j dependencies to version 1.7.5
|
||||
* [DATACMNS-439] - AnnotationRepositoryConfigurationSource support for REGEX
|
||||
* [DATACMNS-440] - Special map type causes fallback to Object in ParameterizedTypeInformation
|
||||
* [DATACMNS-446] - Add toString() methods to ClassTypeInformation
|
||||
|
||||
** Task
|
||||
* [DATACMNS-443] - Release 1.7 GA.
|
||||
* [DATACMNS-444] - DefaultPersistentPropertyPath should drop null path segments in toDotPath(…)
|
||||
* [DATACMNS-445] - Documentation overhaul
|
||||
|
||||
Changes in version 1.6.4.RELEASE (2014-02-17)
|
||||
---------------------------------------------
|
||||
** Bug
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Spring Data Commons 1.6.4
|
||||
Spring Data Commons 1.6.5
|
||||
Copyright (c) [2010-2014] Pivotal Software, Inc.
|
||||
|
||||
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Spring Data Commons 1.6.4 (Feb 17th, 2014)
|
||||
------------------------------------------
|
||||
Spring Data Commons 1.6.5 (March 10th, 2014)
|
||||
--------------------------------------------
|
||||
|
||||
Spring Data Commons is released under the terms of the Apache Software License Version 2.0 (see license.txt).
|
||||
|
||||
@@ -13,5 +13,5 @@ The reference manual and javadoc are located in the 'docs' directory.
|
||||
|
||||
ADDITIONAL RESOURCES:
|
||||
|
||||
Spring Data Homepage: http://www.springsource.org/spring-data
|
||||
Spring Data Forum: http://forum.springsource.org/forumdisplay.php?f=??
|
||||
Spring Data Homepage: http://projects.spring.io/spring-data
|
||||
Spring Data Forum: http://forum.spring.io/forum/spring-projects/data/nosql
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Bundle-SymbolicName: org.springframework.data.core
|
||||
Bundle-Name: Spring Data Commons Core
|
||||
Bundle-Vendor: SpringSource
|
||||
Bundle-Vendor: Pivotal Software, Inc.
|
||||
Bundle-ManifestVersion: 2
|
||||
Import-Package:
|
||||
sun.reflect;version="0";resolution:=optional
|
||||
|
||||
Reference in New Issue
Block a user