File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,28 @@ To generate a changelog summary since the last version, run
15
15
1.0.x-dev
16
16
---------
17
17
18
+ 1.0.0-BETA11 (2014-06-06)
19
+ -------------------------
20
+
21
+ All issues and pull requests in this release may be found under the
22
+ [ 1.0.0-BETA11 milestone] ( https://github.com/doctrine/mongodb-odm/issues?milestone=5&state=closed ) .
23
+
24
+ #### Ensure cascade mapping option is always set
25
+
26
+ ClassMetadataInfo's handling of cascade options was refactored in
27
+ [ #888 ] ( https://github.com/doctrine/mongodb-odm/pull/888 ) to be more consistent
28
+ with ORM. These changes ensure that ` $mapping["cascade"] ` is always set, which
29
+ is required by ResolveTargetDocumentListener.
30
+
31
+ #### Use Reflection API to create document instances in PHP 5.4+
32
+
33
+ PHP 5.4.29 and 5.5.13 introduced a BC-breaking change to ` unserialize() ` , which
34
+ broke ODM's ability to instantiate document classes without invoking their
35
+ constructor (used for hydration). The suggested work-around is to use
36
+ ` ReflectionClass::newInstanceWithoutConstructor() ` , which is available in 5.4+.
37
+ This change was implemented in
38
+ [ #893 ] ( https://github.com/doctrine/mongodb-odm/pull/893 ) .
39
+
18
40
1.0.0-BETA10 (2014-05-05)
19
41
-------------------------
20
42
You can’t perform that action at this time.
0 commit comments