DATAMONGO-801 - Prepare release 1.4.0 M1.
Updated project metadata and bumped versions.
This commit is contained in:
@@ -26,7 +26,7 @@ Add the Maven dependency:
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-mongodb</artifactId>
|
||||
<version>1.3.0.RELEASE</version>
|
||||
<version>1.3.2.RELEASE</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
||||
43
pom.xml
43
pom.xml
@@ -15,7 +15,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
<version>1.3.0.BUILD-SNAPSHOT</version>
|
||||
<version>1.3.0.M1</version>
|
||||
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
<properties>
|
||||
<project.type>multi</project.type>
|
||||
<dist.id>spring-data-mongodb</dist.id>
|
||||
<springdata.commons>1.7.0.BUILD-SNAPSHOT</springdata.commons>
|
||||
<springdata.commons>1.7.0.M1</springdata.commons>
|
||||
<mongo>2.11.3</mongo>
|
||||
</properties>
|
||||
|
||||
@@ -37,11 +37,11 @@
|
||||
<developer>
|
||||
<id>ogierke</id>
|
||||
<name>Oliver Gierke</name>
|
||||
<email>ogierke at vmware.com</email>
|
||||
<organization>SpringSource</organization>
|
||||
<organizationUrl>http://www.springsource.com</organizationUrl>
|
||||
<email>ogierke at gopivotal.com</email>
|
||||
<organization>Pivotal</organization>
|
||||
<organizationUrl>http://www.gopivotal.com</organizationUrl>
|
||||
<roles>
|
||||
<role>Project Lean</role>
|
||||
<role>Project Lead</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
@@ -49,8 +49,8 @@
|
||||
<id>trisberg</id>
|
||||
<name>Thomas Risberg</name>
|
||||
<email>trisberg at vmware.com</email>
|
||||
<organization>SpringSource</organization>
|
||||
<organizationUrl>http://www.springsource.com</organizationUrl>
|
||||
<organization>Pivotal</organization>
|
||||
<organizationUrl>http://www.gopivotal.com</organizationUrl>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
@@ -59,9 +59,9 @@
|
||||
<developer>
|
||||
<id>mpollack</id>
|
||||
<name>Mark Pollack</name>
|
||||
<email>mpollack at vmware.com</email>
|
||||
<organization>SpringSource</organization>
|
||||
<organizationUrl>http://www.springsource.com</organizationUrl>
|
||||
<email>mpollack at gopivotal.com</email>
|
||||
<organization>Pivotal</organization>
|
||||
<organizationUrl>http://www.gopivotal.com</organizationUrl>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
@@ -70,14 +70,25 @@
|
||||
<developer>
|
||||
<id>jbrisbin</id>
|
||||
<name>Jon Brisbin</name>
|
||||
<email>jbrisbin at vmware.com</email>
|
||||
<organization>SpringSource</organization>
|
||||
<organizationUrl>http://www.springsource.com</organizationUrl>
|
||||
<email>jbrisbin at gopivotal.com</email>
|
||||
<organization>Pivotal</organization>
|
||||
<organizationUrl>http://www.gopivotal.com</organizationUrl>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
<timezone>-6</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>tdarimont</id>
|
||||
<name>Thomas Darimont</name>
|
||||
<email>tdarimont at gopivotal.com</email>
|
||||
<organization>Pivotal</organization>
|
||||
<organizationUrl>http://www.gopivotal.com</organizationUrl>
|
||||
<roles>
|
||||
<role>Developer</role>
|
||||
</roles>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<dependencies>
|
||||
@@ -91,8 +102,8 @@
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>spring-lib-snapshot</id>
|
||||
<url>http://repo.springsource.org/libs-snapshot-local</url>
|
||||
<id>spring-libs-milestone</id>
|
||||
<url>http://repo.springsource.org/libs-milestone-local</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
|
||||
@@ -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 - findBy<Field>IgnoreCase 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
|
||||
|
||||
@@ -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").
|
||||
|
||||
@@ -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).
|
||||
|
||||
Reference in New Issue
Block a user