Skip to content

Commit 40aa6bb

Browse files
Thomas Darimontodrotbohm
Thomas Darimont
authored andcommitted
DATAMONGO-859 - Prepare release 1.5 M1.
Updated readme.md and mongodb.xml to reflect recent version. Updated Spring Data Commons and Spring Data Build versions in pom.xml. Update pom.xml to use release repository. Updated docbkx to use recent Spring Data Commons version. Updated changelog to reflect changes and releases. Original pull request: spring-projects#161.
1 parent 5e43f58 commit 40aa6bb

File tree

5 files changed

+70
-9
lines changed

5 files changed

+70
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Add the Maven dependency:
2626
<dependency>
2727
<groupId>org.springframework.data</groupId>
2828
<artifactId>spring-data-mongodb</artifactId>
29-
<version>1.4.0.RELEASE</version>
29+
<version>1.4.1.RELEASE</version>
3030
</dependency>
3131
```
3232

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>org.springframework.data.build</groupId>
1717
<artifactId>spring-data-parent</artifactId>
18-
<version>1.4.0.BUILD-SNAPSHOT</version>
18+
<version>1.4.0.M1</version>
1919
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
2020
</parent>
2121

@@ -29,7 +29,7 @@
2929
<properties>
3030
<project.type>multi</project.type>
3131
<dist.id>spring-data-mongodb</dist.id>
32-
<springdata.commons>1.8.0.BUILD-SNAPSHOT</springdata.commons>
32+
<springdata.commons>1.8.0.M1</springdata.commons>
3333
<mongo>2.11.4</mongo>
3434
<mongo-osgi>${mongo}</mongo-osgi>
3535
</properties>
@@ -124,8 +124,8 @@
124124

125125
<repositories>
126126
<repository>
127-
<id>spring-libs-snapshot</id>
128-
<url>http://repo.spring.io/libs-snapshot/</url>
127+
<id>spring-libs-milestone</id>
128+
<url>http://repo.spring.io/libs-milestone/</url>
129129
</repository>
130130
</repositories>
131131

src/docbkx/index.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<xi:include href="introduction/introduction.xml"/>
6969
<xi:include href="introduction/requirements.xml"/>
7070
<xi:include href="introduction/getting-started.xml"/>
71-
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.7.0.RELEASE/src/docbkx/repositories.xml">
71+
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.8.0.M1/src/docbkx/repositories.xml">
7272
<xi:fallback href="../../../spring-data-commons/src/docbkx/repositories.xml" />
7373
</xi:include>
7474
</part>
@@ -88,10 +88,10 @@
8888
<part id="appendix">
8989
<title>Appendix</title>
9090

91-
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.7.0.RELEASE/src/docbkx/repository-namespace-reference.xml">
91+
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.8.0.M1/src/docbkx/repository-namespace-reference.xml">
9292
<xi:fallback href="../../../spring-data-commons/src/docbkx/repository-namespace-reference.xml" />
9393
</xi:include>
94-
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.7.0.RELEASE/src/docbkx/repository-query-keywords-reference.xml">
94+
<xi:include href="https://raw.github.com/spring-projects/spring-data-commons/1.8.0.M1/src/docbkx/repository-query-keywords-reference.xml">
9595
<xi:fallback href="../../../spring-data-commons/src/docbkx/repository-query-keywords-reference.xml" />
9696
</xi:include>
9797
</part>

src/docbkx/reference/mongodb.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
&lt;dependency&gt;
108108
&lt;groupId&gt;org.springframework.data&lt;/groupId&gt;
109109
&lt;artifactId&gt;spring-data-mongodb&lt;/artifactId&gt;
110-
&lt;version&gt;1.3.4.RELEASE&lt;/version&gt;
110+
&lt;version&gt;1.4.1.RELEASE&lt;/version&gt;
111111
&lt;/dependency&gt;
112112

113113
&lt;/dependencies&gt;</programlisting>

src/main/resources/changelog.txt

+61
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,67 @@
11
Spring Data MongoDB Changelog
22
=============================
33

4+
Changes in version 1.5.0.M1 (2014-03-31)
5+
----------------------------------------
6+
** Fix
7+
* [DATAMONGO-471] - Update operation $addToSet does not support adding a list with $each.
8+
* [DATAMONGO-773] - Spring Data MongoDB projection search on @DBref fields.
9+
* [DATAMONGO-821] - MappingException for $size queries on subcollections containing dbrefs.
10+
* [DATAMONGO-829] - NearQuery, when used in conjunction with a Query, it sets num=0, unless Query specifies otherwise.
11+
* [DATAMONGO-833] - EnumSet is not handled correctly.
12+
* [DATAMONGO-843] - Unable to use @EnableMongoAuditing annotation in Java config.
13+
* [DATAMONGO-862] - Update Array Field Using Positional Operator ($) Does Not Work.
14+
* [DATAMONGO-863] - QueryMapper.getMappedValue Fails To Handle Arrays Mapped To $in.
15+
* [DATAMONGO-868] - findAndModify method does not increment @Version field.
16+
* [DATAMONGO-871] - Declarative query method with array return type causes NPE.
17+
* [DATAMONGO-877] - AbstractMongoConfiguration.getMappingBasePackage() throws NullPointerException if config class resides in default package.
18+
* [DATAMONGO-880] - Error when trying to persist an object containing a DBRef which was lazy loaded.
19+
* [DATAMONGO-884] - Potential NullPointerException for lazy DBRefs.
20+
* [DATAMONGO-887] - Repository not instantiated when entity contains field of type TreeMap.
21+
* [DATAMONGO-890] - Point class toString method is confusing.
22+
23+
** Improvement
24+
* [DATAMONGO-809] - Make filename optional in GridFsOperations doc and GridFsTemplate implementation.
25+
* [DATAMONGO-858] - Add support for common geospatial structures.
26+
* [DATAMONGO-865] - Adjust test dependencies to avoid ClassNotFoundException during test runs.
27+
* [DATAMONGO-881] - Cannot override default converters in CustomConversions.
28+
* [DATAMONGO-882] - Adapt to removal of obsolete generics in BeanWrapper.
29+
30+
** New Feature
31+
* [DATAMONGO-566] - Provide support for removeBy… / deleteBy… methods like for findBy… on repository interfaces.
32+
* [DATAMONGO-870] - Add support for sliced query method execution.
33+
34+
** Task
35+
* [DATAMONGO-876] - Adapt to changes introduced for property access configuration.
36+
* [DATAMONGO-883] - Update auditing configuration to enable auditing annotations on accessors.
37+
* [DATAMONGO-859] - Release 1.5 M1.
38+
39+
Changes in version 1.4.1.RELEASE (2014-03-13)
40+
---------------------------------------------
41+
** Fix
42+
* [DATAMONGO-773] - Verify that @DBRef fields can be included in query.
43+
* [DATAMONGO-821] - Fixed handling of keyword expressions for DBRefs.
44+
* [DATAMONGO-829] - NearQuery should not default 'num' to zero.
45+
* [DATAMONGO-833] - Support for EnumSet and EnumMap in MappingMongoConverter.
46+
* [DATAMONGO-843] - Back-port of defaulting of the MappingContext for auditing.
47+
* [DATAMONGO-862] - Fixed handling of unmapped paths for updates.
48+
* [DATAMONGO-863] - UpdateMapper doesn't convert raw DBObjects anymore.
49+
* [DATAMONGO-868] - MongoTemplate.findAndModify(…) increases version if not handled manually.
50+
* [DATAMONGO-871] - Add support for arrays as query method return types.
51+
* [DATAMONGO-877] - Added guard against null-package in AbstractMappingConfiguration.
52+
53+
** Improvement
54+
* [DATAMONGO-865] - Adjust test dependencies to avoid ClassNotFoundException during test runs.
55+
56+
Changes in version 1.3.5.RELEASE (2014-03-10)
57+
---------------------------------------------
58+
** Fix
59+
* [DATAMONGO-829] - NearQuery, when used in conjunction with a Query, no longer sets num=0, unless Query specifies otherwise.
60+
* [DATAMONGO-871] - Repository queries support array return type.
61+
62+
** Improvement
63+
* [DATAMONGO-865] - Avoid ClassNotFoundException during test runs.
64+
465
Changes in version 1.4.0.RELEASE (2014-02-24)
566
---------------------------------------------
667

0 commit comments

Comments
 (0)