Skip to content

Commit 8ccaf61

Browse files
author
Thomas Risberg
committed
preparing for 1.0.0.M5 MongoDB release
1 parent 2c46cfd commit 8ccaf61

File tree

7 files changed

+61
-13
lines changed

7 files changed

+61
-13
lines changed

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.springframework.data</groupId>
66
<artifactId>spring-data-mongo-dist</artifactId>
77
<name>Spring Data MongoDB Distribution</name>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.M5</version>
99
<packaging>pom</packaging>
1010
<modules>
1111
<module>spring-data-mongodb</module>
@@ -89,7 +89,7 @@
8989
<properties>
9090
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9191
<!-- dist.* properties are used by the antrun tasks below -->
92-
<dist.id>spring-data-document</dist.id>
92+
<dist.id>spring-data-mongo</dist.id>
9393
<dist.name>Spring Data Mongo</dist.name>
9494
<dist.key>SDMONGO</dist.key>
9595
<dist.version>${project.version}</dist.version>
@@ -174,7 +174,7 @@
174174
</fileset>
175175
</copy>
176176
<move file="${project.basedir}/target/site/reference/pdf/index.pdf"
177-
tofile="${project.basedir}/target/site/reference/pdf/spring-data-document-reference.pdf"
177+
tofile="${project.basedir}/target/site/reference/pdf/spring-data-mongo-reference.pdf"
178178
failonerror="false"/>
179179
</postProcess>
180180
</configuration>
@@ -257,8 +257,8 @@
257257
</dependencies>
258258
</plugin>
259259
</plugins>
260-
<!-- the name of this project is 'spring-data-document-dist';
261-
make sure the zip file is just 'spring-data-document'. -->
260+
<!-- the name of this project is 'spring-data-mongo-dist';
261+
make sure the zip file is just 'spring-data-mongo'. -->
262262
<finalName>${dist.finalName}</finalName>
263263
</build>
264264

spring-data-mongodb-cross-store/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.springframework.data</groupId>
66
<artifactId>spring-data-mongodb-parent</artifactId>
7-
<version>1.0.0.BUILD-SNAPSHOT</version>
7+
<version>1.0.0.M5</version>
88
<relativePath>../spring-data-mongodb-parent/pom.xml</relativePath>
99
</parent>
1010
<artifactId>spring-data-mongodb-cross-store</artifactId>

spring-data-mongodb-log4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-mongodb-parent</artifactId>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.M5</version>
99
<relativePath>../spring-data-mongodb-parent/pom.xml</relativePath>
1010
</parent>
1111
<artifactId>spring-data-mongodb-log4j</artifactId>

spring-data-mongodb-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-data-mongodb-parent</artifactId>
77
<name>Spring Data MongoDB Parent</name>
88
<url>http://www.springsource.org/spring-data/mongodb</url>
9-
<version>1.0.0.BUILD-SNAPSHOT</version>
9+
<version>1.0.0.M5</version>
1010
<packaging>pom</packaging>
1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

spring-data-mongodb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-mongodb-parent</artifactId>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.M5</version>
99
<relativePath>../spring-data-mongodb-parent/pom.xml</relativePath>
1010
</parent>
1111
<artifactId>spring-data-mongodb</artifactId>

src/ant/upload-dist.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
88
ant -f src/ant/upload-dist.xml \
99
-Ddist.id=spring-data-document \
10-
-Ddist.name='Spring Data Document' \
10+
-Ddist.name='Spring Data MongoDB' \
1111
-Ddist.key=DATADOC \
1212
-Ddist.releaseType=milestone \
1313
-Ddist.accessKey=<access key> \
1414
-Ddist.secretKey=<secret key> \
1515
-Ddist.bucketName=dist.springframework.org \
16-
-Ddist.fileName=spring-data-document-1.0.0.M1.zip \
17-
-Ddist.filePath=../../spring-data-document-1.0.0.M1.zip \
18-
-Ddist.version=1.0.0.M1 \
16+
-Ddist.fileName=spring-data-mongodb-1.0.0.M5.zip \
17+
-Ddist.filePath=../../spring-data-mongodb-1.0.0.M5.zip \
18+
-Ddist.version=1.0.0.M5 \
1919
upload-dist
2020
-->
2121

src/main/resources/changelog.txt

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

4+
Changes in version 1.0.0.M5 MongoDB (2011-10-24)
5+
------------------------------------------------
6+
7+
** Bug
8+
* [DATAMONGO-259] - Maps inside collections are not written correctly
9+
* [DATAMONGO-268] - CustomConversions is too liberal in registering "simple types" (asymmetric conversion)
10+
* [DATAMONGO-269] - XML configuration for replica sets is not working
11+
* [DATAMONGO-275] - DBRef fields and collections are returning nulls
12+
* [DATAMONGO-281] - Improve the <mongo:db-factory> to handle blank username and password when using property placholders like ${mongo.username}
13+
* [DATAMONGO-282] - Cannot create a "range" query
14+
* [DATAMONGO-284] - Execution of Querydsl query maps id incorrectly
15+
* [DATAMONGO-285] - NPE in MappingMongoConverter.writeMapInternal when saving a Map<String,Object> with val instance of Collection
16+
* [DATAMONGO-288] - querying same property multiple times produces incorrect query
17+
* [DATAMONGO-289] - AbstractMongoEventListener will never call onAfterLoad
18+
* [DATAMONGO-294] - List elements nested in Map lose their type when persisted
19+
20+
** Improvement
21+
* [DATAMONGO-65] - Allow Spring EL usage in collection name attribute of @Document
22+
* [DATAMONGO-183] - Query count() support for pagination
23+
* [DATAMONGO-258] - M4 documentation states SD Commons 1.1.0.M1 required but actually needs 1.2.0.M1
24+
* [DATAMONGO-261] - Reference documentation for geoNear queries has no stable section id
25+
* [DATAMONGO-270] - Approach Sonar results to improve code quality
26+
* [DATAMONGO-271] - Remove 'document' from cross-store package names
27+
* [DATAMONGO-272] - Namespace configuration file still resides in 'document' package
28+
* [DATAMONGO-276] - QueryUtils should be public
29+
* [DATAMONGO-280] - Add maxAutoConnectRetryTime for <mongo:db-factory> and MongoOptionsFactoryBean
30+
* [DATAMONGO-283] - $and support
31+
* [DATAMONGO-286] - MongoDB Repository no query methods for $lte and $gte
32+
* [DATAMONGO-291] - Path expressions in repository methods should honour mapping metadata
33+
* [DATAMONGO-293] - Add support for new polygon based within search in Mongo 2.0.
34+
* [DATAMONGO-295] - Allow MongoTemplate to be configured using MongoURI
35+
* [DATAMONGO-300] - Re-work the Query/Criteria to better support $and, $or and $nor queries
36+
* [DATAMONGO-302] - Consistently handle null values given to CrudRepository implementation
37+
38+
** New Feature
39+
* [DATAMONGO-230] - MongoTemplate missing method remove(Object object, String collectionName)
40+
41+
** Refactoring
42+
* [DATAMONGO-274] - Split up repository package according to the structure in Spring Data JPA
43+
44+
** Task
45+
* [DATAMONGO-264] - Ensure Data Document examples work
46+
* [DATAMONGO-265] - Create new github repository for mongodb
47+
* [DATAMONGO-266] - Create new github repository for CouchDB
48+
* [DATAMONGO-297] - Prune project directory
49+
* [DATAMONGO-303] - Update to QueryDsl 2.2.4
50+
51+
452
Changes in version 1.0.0.M4 MongoDB (2011-09-01)
553
------------------------------------------------
654

0 commit comments

Comments
 (0)