From 6ec6eb7269e9df5f4f8db71382671689b4842e25 Mon Sep 17 00:00:00 2001 From: Christoph Strobl Date: Mon, 10 Mar 2014 13:18:20 +0100 Subject: [PATCH] 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. --- pom.xml | 2 +- readme.md | 4 ++-- src/docbkx/repositories.xml | 6 +++--- src/main/resources/changelog.txt | 27 +++++++++++++++++++++++++++ src/main/resources/notice.txt | 2 +- src/main/resources/readme.txt | 8 ++++---- template.mf | 2 +- 7 files changed, 39 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index 3f6fc8790..f5ece1396 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ org.springframework.data.build spring-data-parent - 1.2.1.RELEASE + 1.2.2.RELEASE ../spring-data-build/parent/pom.xml diff --git a/readme.md b/readme.md index 790aa2628..1095c788f 100644 --- a/readme.md +++ b/readme.md @@ -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## diff --git a/src/docbkx/repositories.xml b/src/docbkx/repositories.xml index 0f9af6348..66fee556d 100644 --- a/src/docbkx/repositories.xml +++ b/src/docbkx/repositories.xml @@ -535,7 +535,7 @@ List<User> findByLastname(String lastname, Pageable pageable); elements inside <repositories />. The semantics are exactly equivalent to the elements in Spring's context namespace. For details, see Spring reference documentation on these elements. @@ -566,7 +566,7 @@ List<User> findByLastname(String lastname, Pageable pageable); JavaConfig in the Spring reference documentation - + url="http://docs.spring.io/spring/docs/3.1.x/spring-framework-reference/html/beans.html#beans-java"/> A sample configuration to enable Spring Data repositories looks @@ -882,7 +882,7 @@ public class MyRepositoryFactoryBean<R extends JpaRepository<T, I>, T, Spring HATEOAS - https://github.com/SpringSource/spring-hateoas + url="https://github.com/spring-projects/spring-hateoas">https://github.com/spring-projects/spring-hateoas In general, the integration support is enabled by using the @EnableSpringDataWebSupport annotation in your JavaConfig configuration class. diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt index 57a440c11..ff1aaa3f1 100644 --- a/src/main/resources/changelog.txt +++ b/src/main/resources/changelog.txt @@ -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 diff --git a/src/main/resources/notice.txt b/src/main/resources/notice.txt index ca0b99c21..c8ee7ff2d 100644 --- a/src/main/resources/notice.txt +++ b/src/main/resources/notice.txt @@ -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"). diff --git a/src/main/resources/readme.txt b/src/main/resources/readme.txt index fad3ef9c6..e4a833662 100644 --- a/src/main/resources/readme.txt +++ b/src/main/resources/readme.txt @@ -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 diff --git a/template.mf b/template.mf index 8c92f4195..d8c1279bc 100644 --- a/template.mf +++ b/template.mf @@ -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