File tree Expand file tree Collapse file tree 2 files changed +38
-9
lines changed Expand file tree Collapse file tree 2 files changed +38
-9
lines changed Original file line number Diff line number Diff line change 1+ CHANGELOG for 3.2.x
2+ ===================
3+
4+ This changelog references the relevant changes done in 3.2 minor versions.
5+
6+ To get the diff for a specific change, go to
7+ https://github.com/doctrine/DoctrineMongoDBBundle/commit/XXX
8+ where XXX is the commit hash. To get the diff between two versions, go to
9+ https://github.com/doctrine/DoctrineMongoDBBundle/compare/XXX...YYY
10+ where XXX and YYY are the older and newer versions, respectively.
11+
12+ To generate a changelog summary since the last version, run
13+ ` git log --no-merges --oneline XXX...HEAD `
14+
15+ 3.2.x-dev
16+ ---------
17+
18+ 3.2.0 (2016-06-30)
19+ ----------------------
20+
21+ This release introduces compatibility with Custom Collections introduced in
22+ ODM 1.1. The minimum PHP version for this release is 5.6, same as for ODM.
23+ If you need support for older ODM version (1.0) or old PHP versions (< 5.6)
24+ please use the 3.1 release. The following Pull Requests were merged for this release:
25+
26+ * [ #345 ] ( https://github.com/doctrine/DoctrineMongoDBBundle/pull/345 ) adds support for custom Collections
27+ * [ #369 ] ( https://github.com/doctrine/DoctrineMongoDBBundle/pull/369 ) fixes exit code of failed commands
28+ * [ #371 ] ( https://github.com/doctrine/DoctrineMongoDBBundle/pull/371 ) exposes configuration for ` PersistentCollectionFactory `
Original file line number Diff line number Diff line change @@ -411,14 +411,15 @@ Full Default Configuration
411411
412412 # Prototype
413413 id :
414- connection : ~
415- database : ~
416- default_repository_class : Doctrine\ODM\MongoDB\DocumentRepository
417- repository_factory : ~
418- logging : true
419- auto_mapping : false
420- retry_connect : 0
421- retry_query : 0
414+ connection : ~
415+ database : ~
416+ default_repository_class : Doctrine\ODM\MongoDB\DocumentRepository
417+ repository_factory : ~
418+ persistent_collection_factory : ~
419+ logging : true
420+ auto_mapping : false
421+ retry_connect : 0
422+ retry_query : 0
422423 metadata_cache_driver :
423424 type : ~
424425 class : ~
@@ -462,8 +463,8 @@ Full Default Configuration
462463 hydrator_namespace : Hydrators
463464 hydrator_dir : " %kernel.cache_dir%/doctrine/odm/mongodb/Hydrators"
464465 auto_generate_hydrator_classes : 0
465- persistent_collection_dir : " %kernel.cache_dir%/doctrine/odm/mongodb/PersistentCollections"
466466 persistent_collection_namespace : PersistentCollections
467+ persistent_collection_dir : " %kernel.cache_dir%/doctrine/odm/mongodb/PersistentCollections"
467468 auto_generate_persistent_collection_classes : 0
468469 default_document_manager : ~
469470 default_connection : ~
You can’t perform that action at this time.
0 commit comments