Skip to content

Commit 5737f2d

Browse files
author
Thomas Darimont
committed
DATAMONGO-801 - Prepare release 1.4.0 M1.
Updated project metadata and bumped versions.
1 parent 60494a6 commit 5737f2d

File tree

5 files changed

+92
-19
lines changed

5 files changed

+92
-19
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.3.0.RELEASE</version>
29+
<version>1.3.2.RELEASE</version>
3030
</dependency>
3131
```
3232

pom.xml

+27-16
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.3.0.BUILD-SNAPSHOT</version>
18+
<version>1.3.0.M1</version>
1919
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
2020
</parent>
2121

@@ -29,28 +29,28 @@
2929
<properties>
3030
<project.type>multi</project.type>
3131
<dist.id>spring-data-mongodb</dist.id>
32-
<springdata.commons>1.7.0.BUILD-SNAPSHOT</springdata.commons>
32+
<springdata.commons>1.7.0.M1</springdata.commons>
3333
<mongo>2.11.3</mongo>
3434
</properties>
3535

3636
<developers>
3737
<developer>
3838
<id>ogierke</id>
3939
<name>Oliver Gierke</name>
40-
<email>ogierke at vmware.com</email>
41-
<organization>SpringSource</organization>
42-
<organizationUrl>http://www.springsource.com</organizationUrl>
40+
<email>ogierke at gopivotal.com</email>
41+
<organization>Pivotal</organization>
42+
<organizationUrl>http://www.gopivotal.com</organizationUrl>
4343
<roles>
44-
<role>Project Lean</role>
44+
<role>Project Lead</role>
4545
</roles>
4646
<timezone>+1</timezone>
4747
</developer>
4848
<developer>
4949
<id>trisberg</id>
5050
<name>Thomas Risberg</name>
5151
<email>trisberg at vmware.com</email>
52-
<organization>SpringSource</organization>
53-
<organizationUrl>http://www.springsource.com</organizationUrl>
52+
<organization>Pivotal</organization>
53+
<organizationUrl>http://www.gopivotal.com</organizationUrl>
5454
<roles>
5555
<role>Developer</role>
5656
</roles>
@@ -59,9 +59,9 @@
5959
<developer>
6060
<id>mpollack</id>
6161
<name>Mark Pollack</name>
62-
<email>mpollack at vmware.com</email>
63-
<organization>SpringSource</organization>
64-
<organizationUrl>http://www.springsource.com</organizationUrl>
62+
<email>mpollack at gopivotal.com</email>
63+
<organization>Pivotal</organization>
64+
<organizationUrl>http://www.gopivotal.com</organizationUrl>
6565
<roles>
6666
<role>Developer</role>
6767
</roles>
@@ -70,14 +70,25 @@
7070
<developer>
7171
<id>jbrisbin</id>
7272
<name>Jon Brisbin</name>
73-
<email>jbrisbin at vmware.com</email>
74-
<organization>SpringSource</organization>
75-
<organizationUrl>http://www.springsource.com</organizationUrl>
73+
<email>jbrisbin at gopivotal.com</email>
74+
<organization>Pivotal</organization>
75+
<organizationUrl>http://www.gopivotal.com</organizationUrl>
7676
<roles>
7777
<role>Developer</role>
7878
</roles>
7979
<timezone>-6</timezone>
8080
</developer>
81+
<developer>
82+
<id>tdarimont</id>
83+
<name>Thomas Darimont</name>
84+
<email>tdarimont at gopivotal.com</email>
85+
<organization>Pivotal</organization>
86+
<organizationUrl>http://www.gopivotal.com</organizationUrl>
87+
<roles>
88+
<role>Developer</role>
89+
</roles>
90+
<timezone>+1</timezone>
91+
</developer>
8192
</developers>
8293

8394
<dependencies>
@@ -91,8 +102,8 @@
91102

92103
<repositories>
93104
<repository>
94-
<id>spring-lib-snapshot</id>
95-
<url>http://repo.springsource.org/libs-snapshot-local</url>
105+
<id>spring-libs-milestone</id>
106+
<url>http://repo.springsource.org/libs-milestone-local</url>
96107
</repository>
97108
</repositories>
98109

src/main/resources/changelog.txt

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

4+
Changes in version 1.4.0.M1 (2013-11-19)
5+
---------------------------------------------
6+
** Bug
7+
* [DATAMONGO-534] - The GridFs query execution does not return sorted resources, when the sorting fields are defined in the query definition
8+
* [DATAMONGO-630] - Add support of $setOnInsert modifier for upsert
9+
* [DATAMONGO-746] - IndexInfo cannot be read for indices created via mongo shell
10+
* [DATAMONGO-752] - QueryMapper prevents searching for values that start with a $ [dollarsign]
11+
* [DATAMONGO-753] - Add support for nested field references in group operations
12+
* [DATAMONGO-758] - Reject excludes other than _id in projection operations
13+
* [DATAMONGO-759] - Render group operation without non synthetic fields correctly.
14+
* [DATAMONGO-761] - ClassCastException in SpringDataMongodbSerializer.getKeyForPath
15+
* [DATAMONGO-768] - Improve documentation of how to use @PersistenceConstructor
16+
* [DATAMONGO-788] - Projection operations do not render synthetic fields properly.
17+
* [DATAMONGO-789] - Support login via different (e.g. admin) authentication database
18+
* [DATAMONGO-795] - When adding custom converters to the mongo template it is possible to get unpredictable behaviour
19+
** Improvement
20+
* [DATAMONGO-757] - Projections should follow mongodb conventions more precisely.
21+
* [DATAMONGO-764] - Add support for SSL connections to Mongo
22+
* [DATAMONGO-766] - Allow nested field references on properties through e.g. @Field("a.b")
23+
* [DATAMONGO-769] - Support arithmetic operators for properties
24+
* [DATAMONGO-770] - Repository - findBy<Field>IgnoreCase doesnt work
25+
* [DATAMONGO-771] - Saving raw JSON through MongoTemplate.insert(…) fails
26+
* [DATAMONGO-774] - Support SpEL expressions to define arithmetical projection operations in the aggregation framework
27+
* [DATAMONGO-776] - TypeBasedAggregationOperationContext should use MappingContext.getPersistentPropertyPath(String, Class<?>)
28+
* [DATAMONGO-780] - Add support for nested repositories
29+
* [DATAMONGO-782] - Typo in reference documentation
30+
* [DATAMONGO-785] - Add support for geospatial 2Dsphere and geohaystack index types
31+
* [DATAMONGO-787] - Upgrade to Spring 3.2.4
32+
* [DATAMONGO-791] - make newAggregation() method to accept list
33+
* [DATAMONGO-793] - Adapt to changes in Spring Data Commons triggered by repository initialization changes
34+
* [DATAMONGO-800] - AuditingIntegrationTests fail on fast machines
35+
** New Feature
36+
* [DATAMONGO-348] - Lazy Load for DbRef
37+
* [DATAMONGO-653] - Support for index operations in GridFsOperations
38+
* [DATAMONGO-760] - Add support for custom findAll Queries
39+
* [DATAMONGO-792] - Add support to configure Auditing via JavaConfig.
40+
** Task
41+
* [DATAMONGO-777] - Upgrade to Mongo Java Driver in 2.11
42+
43+
Changes in version 1.3.2.RELEASE (2013-10-25)
44+
---------------------------------------------
45+
** Bug
46+
* [DATAMONGO-746] IndexInfo cannot be read for indices created via mongo shell
47+
* [DATAMONGO-752] QueryMapper prevents searching for values that start with a $ [dollarsign]
48+
* [DATAMONGO-753] Add support for nested field references in group operations
49+
* [DATAMONGO-758] Reject excludes other than _id in projection operations
50+
* [DATAMONGO-759] Render group operation without non synthetic fields correctly.
51+
* [DATAMONGO-761] ClassCastException in SpringDataMongodbSerializer.getKeyForPath
52+
* [DATAMONGO-768] Improve documentation of how to use @PersistenceConstructor
53+
54+
** Improvement
55+
* [DATAMONGO-757] - Projections should follow mongodb conventions more precisely.
56+
* [DATAMONGO-769] - Support arithmetic operators for properties
57+
* [DATAMONGO-771] - Saving raw JSON through MongoTemplate.insert(…) fails
58+
** Task
59+
* [DATAMONGO-772] - Release 1.3.2
60+
61+
Changes in version 1.3.1.RELEASE (2013-09-09)
62+
---------------------------------------------
63+
** Task
64+
* [DATAMONGO-751] Upgraded to Spring Data Commons 1.6.1.
65+
466
Changes in version 1.3.0.RELEASE (2013-09-09)
567
---------------------------------------------
668
** Bug

src/main/resources/notice.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Spring Data Document 1.3.0 RELEASE
1+
Spring Data Document 1.4.0 M1
22
Copyright (c) [2010-2013] Pivotal Inc.
33

44
This product is licensed to you under the Apache License, Version 2.0 (the "License").

src/main/resources/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SPRING DATA MongoDB 1.3.0.RELEASE
1+
SPRING DATA MongoDB 1.4.0.M1
22
-----------------------------
33

44
Spring Data MongoDB is released under the terms of the Apache Software License Version 2.0 (see license.txt).

0 commit comments

Comments
 (0)