Skip to content

Commit a7dfb9c

Browse files
committed
DATACMNS-313 - Prepare 1.6.0.M1 release.
Upgraded to Spring Data Build 1.1.0.RELEASE, upgraded to Spring HATEOAS 0.6.0.RELEASE. Updated changelog.
1 parent bd65718 commit a7dfb9c

File tree

3 files changed

+74
-6
lines changed

3 files changed

+74
-6
lines changed

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
<parent>
1313
<groupId>org.springframework.data.build</groupId>
1414
<artifactId>spring-data-parent</artifactId>
15-
<version>1.1.0.BUILD-SNAPSHOT</version>
15+
<version>1.1.0.RELEASE</version>
1616
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
1717
</parent>
1818

1919
<properties>
2020
<jackson>1.9.7</jackson>
2121
<jackson2>2.2.2</jackson2>
22-
<springhateoas>0.6.0.BUILD-SNAPSHOT</springhateoas>
22+
<springhateoas>0.6.0.RELEASE</springhateoas>
2323
<dist.key>DATACMNS</dist.key>
2424
</properties>
2525

@@ -211,8 +211,8 @@
211211

212212
<repositories>
213213
<repository>
214-
<id>spring.libs-snapshots</id>
215-
<url>http://repo.springsource.org/libs-snapshot-local</url>
214+
<id>spring-libs-releases</id>
215+
<url>http://repo.springsource.org/libs-release-local</url>
216216
</repository>
217217
</repositories>
218218

src/main/resources/changelog.txt

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,74 @@
11
Spring Data Commons Changelog
22
=============================
33

4+
Changes in version 1.6.0.M1 (2013-05-31)
5+
----------------------------------------
6+
** Bug
7+
* [DATACMNS-281] - Change Order class so that case insensitive sorts can be performed by setting an ignore case flag
8+
* [DATACMNS-283] - Improve exception message for failed instantiations in ReflectionEntityInstatiator
9+
* [DATACMNS-285] - Spring Data Commons Maven artifactId seems outdated on springsource.org
10+
* [DATACMNS-300] - ReflectionEntityInstantiator should actually throw created exception
11+
* [DATACMNS-306] - RepositoryBeanDefinitionBuilder does not populate the source of created BeanDefinitions
12+
* [DATACMNS-309] - TypeDiscoverer does not correctly resolve nested property path expressions
13+
* [DATACMNS-320] - Mapping ambiguation detection is too aggressive
14+
* [DATACMNS-322] - CdiRepositoryBean should implement PassivationCapable
15+
* [DATACMNS-323] - PageImpl.getTotalPages() possibly returns incorrect result when PageImpl is instantiated with simple constructor
16+
* [DATACMNS-326] - RepositoryInterfaceAwareBeanFactoryPostProcessor should implement PriorityOrdered
17+
* [DATACMNS-327] - AbstractMappingContext has to init domain classes in afterPropertiesSet()
18+
* [DATACMNS-330] - Ease configuration for Spring MVC integration
19+
* [DATACMNS-331] - Add ResourceAssembler implementation to convert Page instances into PagedResources
20+
* [DATACMNS-333] - Support for Jackson 2.x for JSON repository populators
21+
22+
** Improvement
23+
* [DATACMNS-117] - Add HandlerMethodArgumentResolver alternative to the PageableArgumentResolver
24+
* [DATACMNS-282] - Improve caching in AnnotationBasedPersistentProperty
25+
* [DATACMNS-284] - As a user I'd like to use Spring Data Commons without changes in Virgo 3.6.0.RELEASE
26+
* [DATACMNS-286] - Extend Pageable/Page APIs to allow accessing Pageables pointing to the next or previous Page
27+
* [DATACMNS-287] - Polish JavaDoc
28+
* [DATACMNS-288, DATACMNS-289] - Upgrade to Spring Data Build 1.0.2.RELEASE
29+
* [DATACMNS-295] - Ability to set modifyOnCreation flag on AuditingHandler
30+
* [DATACMNS-299] - Scope of CDI bean should default to ApplicationScoped
31+
* [DATACMNS-301] - Upgrade to Querydsl 3.0.0
32+
* [DATACMNS-303] - Add support for count projections
33+
* [DATACMNS-305] - Add toString() methods to PersistentProperty implementations
34+
* [DATACMNS-318] - Introduce dedicated annotation to enable exception translation
35+
* [DATACMNS-319] - Repositories should lookup repository beans less aggressively
36+
* [DATACMNS-324] - Open up OSGi manifest for Spring 4
37+
* [DATACMNS-325] - Open up lower boundary of Slf4j in manifest
38+
* [DATACMNS-328] - Typo in field name of PageableArgumentResolver
39+
* [DATACMNS-329] - Add integration test to guard against potential regressions for SPR-10517
40+
* [DATACMNS-334] - Adapt to new features in Spring Data Build 1.1.0
41+
42+
** New Feature
43+
* [DATACMNS-310] - Integrate best-effort TransactionManager from Spring Data Neo4j
44+
* [DATACMNS-311] - TypeDiscoverer fails to resolve properties expressed through read methods in supertypes
45+
46+
** Task
47+
* [DATACMNS-313] - Release 1.6 M1
48+
* [DATACMNS-332] - Performance improvements in conversion system hotspots
49+
50+
Changes in version 1.5.1.RELEASE (2013-04-16)
51+
---------------------------------------------
52+
** Bug
53+
* [DATACMNS-283] - Improve exception message for failed instantiations in ReflectionEntityInstatiator
54+
* [DATACMNS-285] - Spring Data Commons Maven artifactId seems outdated on springsource.org
55+
* [DATACMNS-300] - ReflectionEntityInstantiator should actually throw created exception
56+
* [DATACMNS-306] - RepositoryBeanDefinitionBuilder does not populate the source of created BeanDefinitions
57+
* [DATACMNS-309] - TypeDiscoverer does not correctly resolve nested property path expressions
58+
59+
** Improvement
60+
* [DATACMNS-282] - Improve caching in AnnotationBasedPersistentProperty
61+
* [DATACMNS-284] - As a user I'd like to use Spring Data Commons without changes in Virgo 3.6.0.RELEASE
62+
* [DATACMNS-287] - Polish JavaDoc
63+
* [DATACMNS-288, DATACMNS-289] - Upgrade to Spring Data Build 1.0.2.RELEASE
64+
* [DATACMNS-305] - Add toString() methods to PersistentProperty implementations
65+
66+
** New Feature
67+
* [DATACMNS-311] - TypeDiscoverer fails to resolve properties expressed through read methods in supertypes
68+
69+
** Task
70+
* [DATACMNS-312] - Release 1.5.1
71+
472
Changes in version 1.5.0.RELEASE (2013-02-07)
573
---------------------------------------------
674
** Bug

src/main/resources/notice.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Spring Data Commons 1.5
2-
Copyright (c) [2010] SpringSource, a division of VMware, Inc.
1+
Spring Data Commons 1.6
2+
Copyright (c) [2010-2013] SpringSource, a division of VMware, Inc.
33

44
This product is licensed to you under the Apache License, Version 2.0 (the "License").
55
You may not use this product except in compliance with the License.

0 commit comments

Comments
 (0)