diff --git a/README.md b/README.md index bab7a194f..1d7d9bafe 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Add the Maven dependency: org.springframework.data spring-data-mongodb - 1.3.0.RELEASE + 1.3.2.RELEASE ``` diff --git a/pom.xml b/pom.xml index e56640af0..e2dc28e2e 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ org.springframework.data.build spring-data-parent - 1.3.0.BUILD-SNAPSHOT + 1.3.0.M1 ../spring-data-build/parent/pom.xml @@ -29,7 +29,7 @@ multi spring-data-mongodb - 1.7.0.BUILD-SNAPSHOT + 1.7.0.M1 2.11.3 @@ -37,11 +37,11 @@ ogierke Oliver Gierke - ogierke at vmware.com - SpringSource - http://www.springsource.com + ogierke at gopivotal.com + Pivotal + http://www.gopivotal.com - Project Lean + Project Lead +1 @@ -49,8 +49,8 @@ trisberg Thomas Risberg trisberg at vmware.com - SpringSource - http://www.springsource.com + Pivotal + http://www.gopivotal.com Developer @@ -59,9 +59,9 @@ mpollack Mark Pollack - mpollack at vmware.com - SpringSource - http://www.springsource.com + mpollack at gopivotal.com + Pivotal + http://www.gopivotal.com Developer @@ -70,14 +70,25 @@ jbrisbin Jon Brisbin - jbrisbin at vmware.com - SpringSource - http://www.springsource.com + jbrisbin at gopivotal.com + Pivotal + http://www.gopivotal.com Developer -6 + + tdarimont + Thomas Darimont + tdarimont at gopivotal.com + Pivotal + http://www.gopivotal.com + + Developer + + +1 + @@ -91,8 +102,8 @@ - spring-lib-snapshot - http://repo.springsource.org/libs-snapshot-local + spring-libs-milestone + http://repo.springsource.org/libs-milestone-local diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt index 59aa5b582..2ac392276 100644 --- a/src/main/resources/changelog.txt +++ b/src/main/resources/changelog.txt @@ -1,6 +1,68 @@ Spring Data MongoDB Changelog ============================= +Changes in version 1.4.0.M1 (2013-11-19) +--------------------------------------------- +** Bug + * [DATAMONGO-534] - The GridFs query execution does not return sorted resources, when the sorting fields are defined in the query definition + * [DATAMONGO-630] - Add support of $setOnInsert modifier for upsert + * [DATAMONGO-746] - IndexInfo cannot be read for indices created via mongo shell + * [DATAMONGO-752] - QueryMapper prevents searching for values that start with a $ [dollarsign] + * [DATAMONGO-753] - Add support for nested field references in group operations + * [DATAMONGO-758] - Reject excludes other than _id in projection operations + * [DATAMONGO-759] - Render group operation without non synthetic fields correctly. + * [DATAMONGO-761] - ClassCastException in SpringDataMongodbSerializer.getKeyForPath + * [DATAMONGO-768] - Improve documentation of how to use @PersistenceConstructor + * [DATAMONGO-788] - Projection operations do not render synthetic fields properly. + * [DATAMONGO-789] - Support login via different (e.g. admin) authentication database + * [DATAMONGO-795] - When adding custom converters to the mongo template it is possible to get unpredictable behaviour +** Improvement + * [DATAMONGO-757] - Projections should follow mongodb conventions more precisely. + * [DATAMONGO-764] - Add support for SSL connections to Mongo + * [DATAMONGO-766] - Allow nested field references on properties through e.g. @Field("a.b") + * [DATAMONGO-769] - Support arithmetic operators for properties + * [DATAMONGO-770] - Repository - findByIgnoreCase doesnt work + * [DATAMONGO-771] - Saving raw JSON through MongoTemplate.insert(…) fails + * [DATAMONGO-774] - Support SpEL expressions to define arithmetical projection operations in the aggregation framework + * [DATAMONGO-776] - TypeBasedAggregationOperationContext should use MappingContext.getPersistentPropertyPath(String, Class) + * [DATAMONGO-780] - Add support for nested repositories + * [DATAMONGO-782] - Typo in reference documentation + * [DATAMONGO-785] - Add support for geospatial 2Dsphere and geohaystack index types + * [DATAMONGO-787] - Upgrade to Spring 3.2.4 + * [DATAMONGO-791] - make newAggregation() method to accept list + * [DATAMONGO-793] - Adapt to changes in Spring Data Commons triggered by repository initialization changes + * [DATAMONGO-800] - AuditingIntegrationTests fail on fast machines +** New Feature + * [DATAMONGO-348] - Lazy Load for DbRef + * [DATAMONGO-653] - Support for index operations in GridFsOperations + * [DATAMONGO-760] - Add support for custom findAll Queries + * [DATAMONGO-792] - Add support to configure Auditing via JavaConfig. +** Task + * [DATAMONGO-777] - Upgrade to Mongo Java Driver in 2.11 + +Changes in version 1.3.2.RELEASE (2013-10-25) +--------------------------------------------- +** Bug + * [DATAMONGO-746] IndexInfo cannot be read for indices created via mongo shell + * [DATAMONGO-752] QueryMapper prevents searching for values that start with a $ [dollarsign] + * [DATAMONGO-753] Add support for nested field references in group operations + * [DATAMONGO-758] Reject excludes other than _id in projection operations + * [DATAMONGO-759] Render group operation without non synthetic fields correctly. + * [DATAMONGO-761] ClassCastException in SpringDataMongodbSerializer.getKeyForPath + * [DATAMONGO-768] Improve documentation of how to use @PersistenceConstructor + +** Improvement + * [DATAMONGO-757] - Projections should follow mongodb conventions more precisely. + * [DATAMONGO-769] - Support arithmetic operators for properties + * [DATAMONGO-771] - Saving raw JSON through MongoTemplate.insert(…) fails +** Task + * [DATAMONGO-772] - Release 1.3.2 + +Changes in version 1.3.1.RELEASE (2013-09-09) +--------------------------------------------- +** Task + * [DATAMONGO-751] Upgraded to Spring Data Commons 1.6.1. + Changes in version 1.3.0.RELEASE (2013-09-09) --------------------------------------------- ** Bug diff --git a/src/main/resources/notice.txt b/src/main/resources/notice.txt index 0b7b8ff62..dac0e4227 100644 --- a/src/main/resources/notice.txt +++ b/src/main/resources/notice.txt @@ -1,4 +1,4 @@ -Spring Data Document 1.3.0 RELEASE +Spring Data Document 1.4.0 M1 Copyright (c) [2010-2013] Pivotal 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 65499873a..2ccd716d5 100644 --- a/src/main/resources/readme.txt +++ b/src/main/resources/readme.txt @@ -1,4 +1,4 @@ -SPRING DATA MongoDB 1.3.0.RELEASE +SPRING DATA MongoDB 1.4.0.M1 ----------------------------- Spring Data MongoDB is released under the terms of the Apache Software License Version 2.0 (see license.txt).