1
1
Spring Data MongoDB Changelog
2
2
=============================
3
3
4
+ Changes in version 1.6.0.RC1 (2014-08-13)
5
+ -----------------------------------------
6
+ * DATAMONGO-1024 - Upgrade to Java driver 2.12.3.
7
+ * DATAMONGO-1021 - Release 1.6 RC1.
8
+ * DATAMONGO-1020 - LimitOperator should be a public class.
9
+ * DATAMONGO-1019 - Correct examples in reference documentation.
10
+ * DATAMONGO-1017 - Add support for custom implementations in CDI repositories.
11
+ * DATAMONGO-1016 - Remove deprecations in geospatial area.
12
+ * DATAMONGO-1015 - Move to Asciidoctor for reference documentation.
13
+ * DATAMONGO-1012 - Proxies for lazy DBRefs with field access should have their id values resolved eagerly.
14
+ * DATAMONGO-1009 - Adapt to new multi-store configuration detection.
15
+ * DATAMONGO-1008 - IndexOperations fail, when "2dsphere" index is present.
16
+ * DATAMONGO-1005 - Improve cycle-detection for DbRef's.
17
+ * DATAMONGO-1002 - Update.toString(…) might throw exception.
18
+ * DATAMONGO-1001 - Can't save/update lazy load object.
19
+ * DATAMONGO-999 - Multiple Mongo Instances always have the same MongoOption Reference - MongoOptionsFactoryBean has a static instance of MongoOptions.
20
+ * DATAMONGO-996 - Pagination broken after introduction of the support for top/first.
21
+ * DATAMONGO-995 - Parameter binding in String-based query does not bind all parameters.
22
+ * DATAMONGO-993 - The system variables $$CURRENT and $$ROOT not handled correctly.
23
+ * DATAMONGO-992 - Entity can't be deserialized if @TypeAlias is used.
24
+ * DATAMONGO-991 - Adapt to deprecation removals in Spring Data Commons.
25
+ * DATAMONGO-989 - MatchOperation should accept CriteriaDefinition.
26
+ * DATAMONGO-987 - Problem with lazy loading in @DBRef when getting data using MongoTemplate.
27
+ * DATAMONGO-974 - synthetic field target's name is returned instead of the alias name.
28
+ * DATAMONGO-973 - Add support for deriving full text queries.
29
+ * DATAMONGO-957 - Add support for query modifiers.
30
+ * DATAMONGO-420 - Extra quotes being added to @Query values and fields.
31
+
32
+
4
33
Changes in version 1.5.2.RELEASE (2014-07-28)
5
34
---------------------------------------------
6
35
* DATAMONGO-1007 - Release 1.5.2.
@@ -430,7 +459,7 @@ Changes in version 1.2.2.GA (2013-07-19)
430
459
Changes in version 1.3.0.M1 (2013-06-04)
431
460
----------------------------------------
432
461
** Bug
433
- * [DATAMONGO-571] - Spring Data for MongoDb doesn't save null values when @Version is added to domain class
462
+ * [DATAMONGO-571] - Spring Data for MongoDb doesn't save null values when @Version is added to domain class
434
463
* [DATAMONGO-612] - Fix PDF reference documentation name
435
464
* [DATAMONGO-613] - Images missing from reference documentation
436
465
* [DATAMONGO-617] - NullPointerException in MongoTemplate.initializeVersionProperty(…)
@@ -466,7 +495,7 @@ Changes in version 1.3.0.M1 (2013-06-04)
466
495
* [DATAMONGO-637] - Typo in Query.query(…)
467
496
* [DATAMONGO-651] - WriteResult not available from thrown Exception
468
497
* [DATAMONGO-652] - Add support for elemMatch and positional operator projections
469
- * [DATAMONGO-656] - Potential NullPointerException when debugging in MongoTemplate
498
+ * [DATAMONGO-656] - Potential NullPointerException when debugging in MongoTemplate
470
499
* [DATAMONGO-657] - Allow to write Map value as DBRef
471
500
* [DATAMONGO-666] - Fix architecture inconsistency created by MongoDataIntegrityViolationException
472
501
* [DATAMONGO-680] - SimpleMongoRepository.exists(ID) improvement
@@ -488,7 +517,7 @@ Changes in version 1.3.0.M1 (2013-06-04)
488
517
Changes in version 1.2.1.GA (2013-04-17)
489
518
----------------------------------------
490
519
** Bug
491
- * [DATAMONGO-571] - Spring Data for MongoDb doesn't save null values when @Version is added to domain class
520
+ * [DATAMONGO-571] - Spring Data for MongoDb doesn't save null values when @Version is added to domain class
492
521
* [DATAMONGO-612] - Fix PDF reference documentation name
493
522
* [DATAMONGO-613] - Images missing from reference documentation
494
523
* [DATAMONGO-617] - NullPointerException in MongoTemplate.initializeVersionProperty(…)
@@ -585,7 +614,7 @@ Changes in version 1.1.1.GA (2012-10-17)
585
614
Changes in version 1.1.0.GA (2012-10-10)
586
615
----------------------------------------
587
616
** Bug
588
- * [DATAMONGO-523] - @TypeAlias annotation not used with AbstractMongoConfiguration
617
+ * [DATAMONGO-523] - @TypeAlias annotation not used with AbstractMongoConfiguration
589
618
* [DATAMONGO-527] - Criteria.equals(…) broken for complex criterias
590
619
* [DATAMONGO-530] - MongoMappingContext.setApplicationContext(…) does not invoke superclass method
591
620
* [DATAMONGO-531] - StackOverflowError when persisting Groovy beans
@@ -662,16 +691,16 @@ Changes in version 1.1.0.M2 (2012-24-07)
662
691
* [DATAMONGO-446] - Pageable query methods returning List are broken
663
692
* [DATAMONGO-447] - Removal of Documents fails in in debug mode for Documents with complex ids
664
693
* [DATAMONGO-450] - enabling DEBUG causes RuntimeException
665
- * [DATAMONGO-454] - ServerAddressPropertyEditor fails if a hostname is unresolvable
694
+ * [DATAMONGO-454] - ServerAddressPropertyEditor fails if a hostname is unresolvable
666
695
* [DATAMONGO-458] - When reading back empty collections unmodifiable instances of Collections.emptyList/Set is returned.
667
696
* [DATAMONGO-462] - findAll() fails with NPE - discovering the root cause
668
- * [DATAMONGO-465] - Mongo inserts document with "_id" as an integer but saves with "_id" as a string.
697
+ * [DATAMONGO-465] - Mongo inserts document with "_id" as an integer but saves with "_id" as a string.
669
698
* [DATAMONGO-467] - String @id field is not mapped to ObjectId when using QueryDSL ".id" path
670
699
* [DATAMONGO-469] - Query creation from method names using AND criteria does not work anymore
671
700
* [DATAMONGO-474] - Wrong property is used for Id mapping
672
701
* [DATAMONGO-475] - 'group' operation fails where query references non primitive property
673
702
* [DATAMONGO-480] - The WriteResultChecking is not used in case of insert or save of documents.
674
- * [DATAMONGO-483] - @Indexed(unique=true, name="foo") puts name's value to the 'key' in the MongoDB
703
+ * [DATAMONGO-483] - @Indexed(unique=true, name="foo") puts name's value to the 'key' in the MongoDB
675
704
* [DATAMONGO-489] - ClassCastException when loading Map<String, String[]>
676
705
677
706
** Improvement
@@ -681,7 +710,7 @@ Changes in version 1.1.0.M2 (2012-24-07)
681
710
* [DATAMONGO-466] - QueryMapper shouldn't map id properties of nested classes
682
711
* [DATAMONGO-470] - Criteria and Query should have proper equals(…) and hashCode() method.
683
712
* [DATAMONGO-477] - Change upper bound of Google Guava package import to 13
684
- * [DATAMONGO-482] - typo in documentation - 2 i's in usiing
713
+ * [DATAMONGO-482] - typo in documentation - 2 i's in usiing
685
714
* [DATAMONGO-486] - Polish namspace implementation
686
715
* [DATAMONGO-491] - Release 1.1.0.M2
687
716
@@ -701,13 +730,13 @@ Changes in version 1.0.3.RELEASE (2012-24-07)
701
730
* [DATAMONGO-474] - Wrong property is used for Id mapping
702
731
* [DATAMONGO-475] - 'group' operation fails where query references non primitive property
703
732
* [DATAMONGO-480] - The WriteResultChecking is not used in case of insert or save of documents.
704
- * [DATAMONGO-483] - @Indexed(unique=true, name="foo") puts name's value to the 'key' in the MongoDB
733
+ * [DATAMONGO-483] - @Indexed(unique=true, name="foo") puts name's value to the 'key' in the MongoDB
705
734
* [DATAMONGO-489] - ClassCastException when loading Map<String, String[]>
706
735
707
736
** Improvement
708
737
* [DATAMONGO-466] - QueryMapper shouldn't map id properties of nested classes
709
738
* [DATAMONGO-470] - Criteria and Query should have proper equals(…) and hashCode() method.
710
- * [DATAMONGO-482] - typo in documentation - 2 i's in usiing
739
+ * [DATAMONGO-482] - typo in documentation - 2 i's in usiing
711
740
712
741
** Task
713
742
* [DATAMONGO-492] - Release 1.0.3
@@ -731,7 +760,7 @@ Changes in version 1.0.2.RELEASE (2012-06-20)
731
760
* [DATAMONGO-446] - Pageable query methods returning List are broken
732
761
* [DATAMONGO-447] - Removal of Documents fails in in debug mode for Documents with complex ids
733
762
* [DATAMONGO-450] - enabling DEBUG causes RuntimeException
734
- * [DATAMONGO-454] - ServerAddressPropertyEditor fails if a hostname is unresolvable
763
+ * [DATAMONGO-454] - ServerAddressPropertyEditor fails if a hostname is unresolvable
735
764
* [DATAMONGO-461] - MappedConstructor potentially throws NullPointerException
736
765
* [DATAMONGO-462] - findAll() fails with NPE - discovering the root cause
737
766
@@ -912,7 +941,7 @@ Changes in version 1.0.0.M5 MongoDB (2011-10-24)
912
941
* [DATAMONGO-282] - Cannot create a "range" query
913
942
* [DATAMONGO-284] - Execution of Querydsl query maps id incorrectly
914
943
* [DATAMONGO-285] - NPE in MappingMongoConverter.writeMapInternal when saving a Map<String,Object> with val instance of Collection
915
- * [DATAMONGO-288] - querying same property multiple times produces incorrect query
944
+ * [DATAMONGO-288] - querying same property multiple times produces incorrect query
916
945
* [DATAMONGO-289] - AbstractMongoEventListener will never call onAfterLoad
917
946
* [DATAMONGO-294] - List elements nested in Map lose their type when persisted
918
947
@@ -941,7 +970,7 @@ Changes in version 1.0.0.M5 MongoDB (2011-10-24)
941
970
* [DATAMONGO-274] - Split up repository package according to the structure in Spring Data JPA
942
971
943
972
** Task
944
- * [DATAMONGO-264] - Ensure Data Document examples work
973
+ * [DATAMONGO-264] - Ensure Data Document examples work
945
974
* [DATAMONGO-265] - Create new github repository for mongodb
946
975
* [DATAMONGO-266] - Create new github repository for CouchDB
947
976
* [DATAMONGO-297] - Prune project directory
@@ -974,7 +1003,7 @@ Changes in version 1.0.0.M4 MongoDB (2011-09-01)
974
1003
* [DATADOC-228] - NullPointerException when persiting Map with null values
975
1004
* [DATADOC-229] - When a parameterized List is used in the PersistentConstructor, conversion fail
976
1005
* [DATADOC-231] - spring-data-mongodb does not work in an OSGi server because of unresolved dependencies
977
- * [DATADOC-232] - mongodb allow to $inc many fields in one query, but Updat().inc(firs).inc(last) do only last inc
1006
+ * [DATADOC-232] - mongodb allow to $inc many fields in one query, but Updat().inc(firs).inc(last) do only last inc
978
1007
* [DATADOC-235] - Unable to map unstructured data
979
1008
* [DATADOC-236] - Repository queries do not honour order defined in method name
980
1009
* [DATADOC-237] - @Indexed annotation doesn't honor field name from @Field annotation
@@ -988,7 +1017,7 @@ Changes in version 1.0.0.M4 MongoDB (2011-09-01)
988
1017
989
1018
** Improvement
990
1019
* [DATADOC-32] - SimpleMongoConverter could support identifying Spring EL expressions in keys
991
- * [DATADOC-63] - Converters to support use of a 'typeId' strategy to determine class to marshall/unmarshal from Mongo
1020
+ * [DATADOC-63] - Converters to support use of a 'typeId' strategy to determine class to marshall/unmarshal from Mongo
992
1021
* [DATADOC-166] - Check for null if various template CRUD methods
993
1022
* [DATADOC-169] - Registering custom converters for a type requires treating the type as simple in mapping context
994
1023
* [DATADOC-171] - IllegalArgumentException when persisting entity with BigDecimal field
@@ -1071,7 +1100,7 @@ Querying / Updating
1071
1100
* [DATADOC-146] - Advanced Regexp Queries
1072
1101
1073
1102
Mapping
1074
- * [DATADOC-95] - Can not save an object that has not had any of its properties set
1103
+ * [DATADOC-95] - Can not save an object that has not had any of its properties set
1075
1104
* [DATADOC-97] - ID replacement not working correctly when using updateFirst/updateMulti
1076
1105
* [DATADOC-98] - Collection<Collection> or Object[][] doesn't save correctly
1077
1106
* [DATADOC-109] - Add MappingContext to MongoConverter interface
@@ -1122,10 +1151,10 @@ Mapping
1122
1151
* [DATADOC-33] - Introduce annotation to demarcate id field in a domain object
1123
1152
1124
1153
Repository
1125
- * [DATADOC-47, DATACMNS-17] - Adapted new metamodel API
1154
+ * [DATADOC-47, DATACMNS-17] - Adapted new metamodel API
1126
1155
* [DATADOC-46] - Added support for 'In' and 'NotIn' keyword
1127
1156
* [DATADOC-49] - Fixed 'And' and 'Or' keywords
1128
- * [DATADOC-41] - Added support for executing QueryDsl predicates
1157
+ * [DATADOC-41] - Added support for executing QueryDsl predicates
1129
1158
* [DATADOC-69] - Let repository namespace pickup the default mapping context bean and allow configuration
1130
1159
* [DATADOC-24] - Allow use of @Query annotation to define queries
1131
1160
* [DATADOC-34] - Create indexes for columns that are mentioned in query methods
0 commit comments