Skip to content

Commit 0195c2c

Browse files
committed
DATAMONGO-1021 - Updated changelog.
1 parent 068e2ec commit 0195c2c

File tree

1 file changed

+47
-18
lines changed

1 file changed

+47
-18
lines changed

src/main/resources/changelog.txt

Lines changed: 47 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
11
Spring Data MongoDB Changelog
22
=============================
33

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+
433
Changes in version 1.5.2.RELEASE (2014-07-28)
534
---------------------------------------------
635
* DATAMONGO-1007 - Release 1.5.2.
@@ -430,7 +459,7 @@ Changes in version 1.2.2.GA (2013-07-19)
430459
Changes in version 1.3.0.M1 (2013-06-04)
431460
----------------------------------------
432461
** 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
434463
* [DATAMONGO-612] - Fix PDF reference documentation name
435464
* [DATAMONGO-613] - Images missing from reference documentation
436465
* [DATAMONGO-617] - NullPointerException in MongoTemplate.initializeVersionProperty(…)
@@ -466,7 +495,7 @@ Changes in version 1.3.0.M1 (2013-06-04)
466495
* [DATAMONGO-637] - Typo in Query.query(…)
467496
* [DATAMONGO-651] - WriteResult not available from thrown Exception
468497
* [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
470499
* [DATAMONGO-657] - Allow to write Map value as DBRef
471500
* [DATAMONGO-666] - Fix architecture inconsistency created by MongoDataIntegrityViolationException
472501
* [DATAMONGO-680] - SimpleMongoRepository.exists(ID) improvement
@@ -488,7 +517,7 @@ Changes in version 1.3.0.M1 (2013-06-04)
488517
Changes in version 1.2.1.GA (2013-04-17)
489518
----------------------------------------
490519
** 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
492521
* [DATAMONGO-612] - Fix PDF reference documentation name
493522
* [DATAMONGO-613] - Images missing from reference documentation
494523
* [DATAMONGO-617] - NullPointerException in MongoTemplate.initializeVersionProperty(…)
@@ -585,7 +614,7 @@ Changes in version 1.1.1.GA (2012-10-17)
585614
Changes in version 1.1.0.GA (2012-10-10)
586615
----------------------------------------
587616
** Bug
588-
* [DATAMONGO-523] - @TypeAlias annotation not used with AbstractMongoConfiguration
617+
* [DATAMONGO-523] - @TypeAlias annotation not used with AbstractMongoConfiguration
589618
* [DATAMONGO-527] - Criteria.equals(…) broken for complex criterias
590619
* [DATAMONGO-530] - MongoMappingContext.setApplicationContext(…) does not invoke superclass method
591620
* [DATAMONGO-531] - StackOverflowError when persisting Groovy beans
@@ -662,16 +691,16 @@ Changes in version 1.1.0.M2 (2012-24-07)
662691
* [DATAMONGO-446] - Pageable query methods returning List are broken
663692
* [DATAMONGO-447] - Removal of Documents fails in in debug mode for Documents with complex ids
664693
* [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
666695
* [DATAMONGO-458] - When reading back empty collections unmodifiable instances of Collections.emptyList/Set is returned.
667696
* [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.
669698
* [DATAMONGO-467] - String @id field is not mapped to ObjectId when using QueryDSL ".id" path
670699
* [DATAMONGO-469] - Query creation from method names using AND criteria does not work anymore
671700
* [DATAMONGO-474] - Wrong property is used for Id mapping
672701
* [DATAMONGO-475] - 'group' operation fails where query references non primitive property
673702
* [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
675704
* [DATAMONGO-489] - ClassCastException when loading Map<String, String[]>
676705

677706
** Improvement
@@ -681,7 +710,7 @@ Changes in version 1.1.0.M2 (2012-24-07)
681710
* [DATAMONGO-466] - QueryMapper shouldn't map id properties of nested classes
682711
* [DATAMONGO-470] - Criteria and Query should have proper equals(…) and hashCode() method.
683712
* [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
685714
* [DATAMONGO-486] - Polish namspace implementation
686715
* [DATAMONGO-491] - Release 1.1.0.M2
687716

@@ -701,13 +730,13 @@ Changes in version 1.0.3.RELEASE (2012-24-07)
701730
* [DATAMONGO-474] - Wrong property is used for Id mapping
702731
* [DATAMONGO-475] - 'group' operation fails where query references non primitive property
703732
* [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
705734
* [DATAMONGO-489] - ClassCastException when loading Map<String, String[]>
706735

707736
** Improvement
708737
* [DATAMONGO-466] - QueryMapper shouldn't map id properties of nested classes
709738
* [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
711740

712741
** Task
713742
* [DATAMONGO-492] - Release 1.0.3
@@ -731,7 +760,7 @@ Changes in version 1.0.2.RELEASE (2012-06-20)
731760
* [DATAMONGO-446] - Pageable query methods returning List are broken
732761
* [DATAMONGO-447] - Removal of Documents fails in in debug mode for Documents with complex ids
733762
* [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
735764
* [DATAMONGO-461] - MappedConstructor potentially throws NullPointerException
736765
* [DATAMONGO-462] - findAll() fails with NPE - discovering the root cause
737766

@@ -912,7 +941,7 @@ Changes in version 1.0.0.M5 MongoDB (2011-10-24)
912941
* [DATAMONGO-282] - Cannot create a "range" query
913942
* [DATAMONGO-284] - Execution of Querydsl query maps id incorrectly
914943
* [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
916945
* [DATAMONGO-289] - AbstractMongoEventListener will never call onAfterLoad
917946
* [DATAMONGO-294] - List elements nested in Map lose their type when persisted
918947

@@ -941,7 +970,7 @@ Changes in version 1.0.0.M5 MongoDB (2011-10-24)
941970
* [DATAMONGO-274] - Split up repository package according to the structure in Spring Data JPA
942971

943972
** Task
944-
* [DATAMONGO-264] - Ensure Data Document examples work
973+
* [DATAMONGO-264] - Ensure Data Document examples work
945974
* [DATAMONGO-265] - Create new github repository for mongodb
946975
* [DATAMONGO-266] - Create new github repository for CouchDB
947976
* [DATAMONGO-297] - Prune project directory
@@ -974,7 +1003,7 @@ Changes in version 1.0.0.M4 MongoDB (2011-09-01)
9741003
* [DATADOC-228] - NullPointerException when persiting Map with null values
9751004
* [DATADOC-229] - When a parameterized List is used in the PersistentConstructor, conversion fail
9761005
* [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
9781007
* [DATADOC-235] - Unable to map unstructured data
9791008
* [DATADOC-236] - Repository queries do not honour order defined in method name
9801009
* [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)
9881017

9891018
** Improvement
9901019
* [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
9921021
* [DATADOC-166] - Check for null if various template CRUD methods
9931022
* [DATADOC-169] - Registering custom converters for a type requires treating the type as simple in mapping context
9941023
* [DATADOC-171] - IllegalArgumentException when persisting entity with BigDecimal field
@@ -1071,7 +1100,7 @@ Querying / Updating
10711100
* [DATADOC-146] - Advanced Regexp Queries
10721101

10731102
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
10751104
* [DATADOC-97] - ID replacement not working correctly when using updateFirst/updateMulti
10761105
* [DATADOC-98] - Collection<Collection> or Object[][] doesn't save correctly
10771106
* [DATADOC-109] - Add MappingContext to MongoConverter interface
@@ -1122,10 +1151,10 @@ Mapping
11221151
* [DATADOC-33] - Introduce annotation to demarcate id field in a domain object
11231152

11241153
Repository
1125-
* [DATADOC-47, DATACMNS-17] - Adapted new metamodel API
1154+
* [DATADOC-47, DATACMNS-17] - Adapted new metamodel API
11261155
* [DATADOC-46] - Added support for 'In' and 'NotIn' keyword
11271156
* [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
11291158
* [DATADOC-69] - Let repository namespace pickup the default mapping context bean and allow configuration
11301159
* [DATADOC-24] - Allow use of @Query annotation to define queries
11311160
* [DATADOC-34] - Create indexes for columns that are mentioned in query methods

0 commit comments

Comments
 (0)