Compare commits

..

6 Commits

Author SHA1 Message Date
Oliver Drotbohm
bf7b854d76 DATAMONGO-2244 - Updated changelog. 2019-05-10 14:18:13 +02:00
Oliver Drotbohm
a06f128469 DATAMONGO-2246 - Updated changelog. 2019-05-10 12:57:26 +02:00
Christoph Strobl
5504d6b6a2 DATAMONGO-2222 - Updated changelog. 2019-04-11 12:31:01 +02:00
Oliver Drotbohm
adbe2113fb DATAMONGO-2204 - Updated changelog. 2019-04-01 20:56:33 +02:00
Oliver Drotbohm
92d569f816 DATAMONGO-2186 - After release cleanups. 2019-04-01 19:35:53 +02:00
Oliver Drotbohm
8c7dd788b4 DATAMONGO-2186 - Prepare next development iteration. 2019-04-01 19:35:51 +02:00
6 changed files with 54 additions and 10 deletions

10
pom.xml
View File

@@ -5,7 +5,7 @@
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-parent</artifactId>
<version>2.0.14.RELEASE</version>
<version>2.0.15.BUILD-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spring Data MongoDB</name>
@@ -15,7 +15,7 @@
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>2.0.14.RELEASE</version>
<version>2.0.15.BUILD-SNAPSHOT</version>
</parent>
<modules>
@@ -27,7 +27,7 @@
<properties>
<project.type>multi</project.type>
<dist.id>spring-data-mongodb</dist.id>
<springdata.commons>2.0.14.RELEASE</springdata.commons>
<springdata.commons>2.0.15.BUILD-SNAPSHOT</springdata.commons>
<mongo>3.5.0</mongo>
<mongo.reactivestreams>1.6.0</mongo.reactivestreams>
<jmh.version>1.19</jmh.version>
@@ -169,8 +169,8 @@
<repositories>
<repository>
<id>spring-libs-release</id>
<url>https://repo.spring.io/libs-release</url>
<id>spring-libs-snapshot</id>
<url>https://repo.spring.io/libs-snapshot</url>
</repository>
</repositories>

View File

@@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-parent</artifactId>
<version>2.0.14.RELEASE</version>
<version>2.0.15.BUILD-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-parent</artifactId>
<version>2.0.14.RELEASE</version>
<version>2.0.15.BUILD-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>2.0.14.RELEASE</version>
<version>2.0.15.BUILD-SNAPSHOT</version>
</dependency>
<!-- reactive -->

View File

@@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-parent</artifactId>
<version>2.0.14.RELEASE</version>
<version>2.0.15.BUILD-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

View File

@@ -11,7 +11,7 @@
<parent>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-parent</artifactId>
<version>2.0.14.RELEASE</version>
<version>2.0.15.BUILD-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

View File

@@ -1,6 +1,50 @@
Spring Data MongoDB Changelog
=============================
Changes in version 1.10.21.RELEASE (2019-05-10)
-----------------------------------------------
* DATAMONGO-2244 - Release 1.10.21 (Ingalls SR21).
Changes in version 2.1.7.RELEASE (2019-05-10)
---------------------------------------------
* DATAMONGO-2246 - Release 2.1.7 (Lovelace SR7).
Changes in version 2.2.0.M3 (2019-04-11)
----------------------------------------
* DATAMONGO-2255 - Add Coroutines Flow extensions.
* DATAMONGO-2254 - Upgrade MongoDB Java driver to 3.10.2.
* DATAMONGO-2248 - Remove cross-store module.
* DATAMONGO-2247 - Add non-nullable variants to Coroutines extensions.
* DATAMONGO-2241 - Memory leak in ClassGeneratingPropertyAccessorFactory when using MongoDB sessions.
* DATAMONGO-2230 - Reading files from reactive GridFS hangs after a few chunks.
* DATAMONGO-2228 - MongodbDocumentSerializer cuts off branches with same Ops in handling Ops.AND.
* DATAMONGO-2227 - Move off deprecations in Spring Data Commons.
* DATAMONGO-2225 - Potential bug in MongoExampleMapper.
* DATAMONGO-2224 - Add trace logging for DBRef resolution.
* DATAMONGO-2223 - Add missing tests for DBRef resolution in different database.
* DATAMONGO-2222 - Release 2.2 M3 (Moore).
* DATAMONGO-2221 - Query on nested id field incorrectly returns no results.
* DATAMONGO-2218 - Add support for ReplaceOne operation in BulkOperations.
* DATAMONGO-2112 - Add support for SpEL expression in @Indexed.
* DATAMONGO-1849 - Generate $jsonSchema out of domain type meta information.
* DATAMONGO-1783 - Apply Query.skip/limit options to CountOptions.
Changes in version 2.1.6.RELEASE (2019-04-01)
---------------------------------------------
* DATAMONGO-2241 - Memory leak in ClassGeneratingPropertyAccessorFactory when using MongoDB sessions.
* DATAMONGO-2228 - MongodbDocumentSerializer cuts off branches with same Ops in handling Ops.AND.
* DATAMONGO-2225 - Potential bug in MongoExampleMapper.
* DATAMONGO-2224 - Add trace logging for DBRef resolution.
* DATAMONGO-2223 - Add missing tests for DBRef resolution in different database.
* DATAMONGO-2221 - Query on nested id field incorrectly returns no results.
* DATAMONGO-2219 - findAllAndRemove throws MongoWriteException if query has no matches.
* DATAMONGO-2206 - Migrate Kotlin tests to Mockk.
* DATAMONGO-2204 - Release 2.1.6 (Lovelace SR6).
Changes in version 2.0.14.RELEASE (2019-04-01)
----------------------------------------------
* DATAMONGO-2225 - Potential bug in MongoExampleMapper.