diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt index 72b5907c9..d2dcc89b5 100644 --- a/src/main/resources/changelog.txt +++ b/src/main/resources/changelog.txt @@ -1,6 +1,60 @@ Spring Data MongoDB Changelog ============================= +Changes in version 1.10.0.RC1 (2016-12-21) +------------------------------------------ +* DATAMONGO-1567 - Upgrade to a newer JDK version on TravisCI. +* DATAMONGO-1566 - Adapt API in RepositoryFactoryBeanSupport implementation. +* DATAMONGO-1565 - Placeholders in manually defined queries not escaped properly. +* DATAMONGO-1564 - Split up AggregationExpressions. +* DATAMONGO-1558 - Upgrade travis-ci profile to MongoDB 3.4. +* DATAMONGO-1552 - Add $facet, $bucket and $bucketAuto aggregation stages. +* DATAMONGO-1551 - Add $graphLookup aggregation stage. +* DATAMONGO-1550 - Add $replaceRoot aggregation stage. +* DATAMONGO-1549 - Add $count aggregation stage. +* DATAMONGO-1548 - Add new MongoDB 3.4 aggregation operators. +* DATAMONGO-1547 - Register repository factory in spring.factories for multi-store support. +* DATAMONGO-1546 - Switch to new way of registering custom Jackson modules. +* DATAMONGO-1542 - Refactor CondOperator and IfNullOperator to children of AggregationExpressions. +* DATAMONGO-1540 - Add support for $map to aggregation. +* DATAMONGO-1539 - Add dedicated annotations for manually declared count and delete queries. +* DATAMONGO-1538 - Add support for $let to aggregation. +* DATAMONGO-1536 - Add missing aggregation operators. +* DATAMONGO-1534 - Type hint is missing when using BulkOperations.insert. +* DATAMONGO-1533 - Add support for SpEL in GroupOperations (aggregation). +* DATAMONGO-1530 - Support missing aggregation pipeline operators in expression support. +* DATAMONGO-1525 - Reading empty EnumSet fails. +* DATAMONGO-1521 - Aggregation.skip(...) expects int but new SkipOperation(...) supports long. +* DATAMONGO-1520 - Aggregation.match should accept CriteriaDefinition. +* DATAMONGO-1514 - SpringDataMongodbQuery should be public. +* DATAMONGO-1513 - Non-ObjectId identifiers generated by event listeners are not populated if documents are inserted as batch. +* DATAMONGO-1504 - Assert compatibility with MongoDB 3.4 server and driver. +* DATAMONGO-1500 - RuntimeException for query methods with fields declaration and Pageable parameters. +* DATAMONGO-1498 - MongoMappingContext doesn't know about types usually auto-detected (JodaTime, JDK 8 date time types). +* DATAMONGO-1493 - Typos in reference documentation. +* DATAMONGO-1492 - Interface AggregationExpression in package org.springframework.data.mongodb.core.aggregation should be public. +* DATAMONGO-1491 - Add support for $filter to aggregation. +* DATAMONGO-1490 - Change the XML data type of boolean flags to String. +* DATAMONGO-1486 - Changes to MappingMongoConverter Result in Class Cast Exception. +* DATAMONGO-1485 - Querydsl MongodbSerializer does not take registered converters for Enums into account. +* DATAMONGO-1480 - Add support for noCursorTimeout in Query. +* DATAMONGO-1479 - MappingMongoConverter.convertToMongoType causes StackOverflowError for parameterized map value types. +* DATAMONGO-1476 - New stream method only partially makes use of collection name. +* DATAMONGO-1471 - MappingMongoConverter attempts to set null value on potentially primitive identifier. +* DATAMONGO-1470 - AbstractMongoConfiguraton should allow multiple base package for @Document scanning. +* DATAMONGO-1469 - Release 1.10 RC1 (Ingalls). +* DATAMONGO-1467 - Support partial filter expressions for indexing introduced in MongoDB 3.2. +* DATAMONGO-1465 - String arguments passed to DefaultScriptOperations.execute() appear quoted in script. +* DATAMONGO-1454 - Add support for exists projection in repository query derivation. +* DATAMONGO-1406 - Query mapper does not use @Field field name when querying nested fields in combination with nested keywords. +* DATAMONGO-1328 - Add support for mongodb 3.2 specific arithmetic operators to aggregation. +* DATAMONGO-1327 - Add support for $stdDevSamp and $stdDevPop to aggregation ($group stage). +* DATAMONGO-1299 - Add support for date aggregations. +* DATAMONGO-1141 - Add support for $push $sort in Update. +* DATAMONGO-861 - Add support for $cond and $ifNull operators in aggregation operation. +* DATAMONGO-784 - Add support for $cmp in group or project aggregation. + + Changes in version 2.0.0.M1 (2016-11-23) ---------------------------------------- * DATAMONGO-1527 - Release 2.0 M1 (Kay).