@@ -22,18 +22,21 @@ app more and more Ember-1.0-compatible.
22
22
## ` get ` and ` getPath `
23
23
24
24
In Ember 1.0, ` get ` works on property paths like ` "foo.bar.baz" ` ; in Ember 0.9,
25
- it does not. This fork introduces a flag, ` ENV.DOTTED_GETS ` , with four
25
+ it does not. This fork introduces a flag, ` ENV.DOTTED_PATH_METHODS ` , with four
26
26
allowed values:
27
27
28
- * ` "0.9" ` (the default) -- ` getPath ` works normally
29
- * ` "0.9+warn" ` -- ` getPath ` emits a warning via ` Ember.warn `
30
- * ` "0.9+deprecate" ` -- ` getPath ` emits a deprecation warning via
28
+ * ` "0.9" ` (the default) -- ` getPath ` and ` setPath ` work normally
29
+ * ` "0.9+warn" ` -- ` getPath ` and ` setPath ` emit a warning via ` Ember.warn `
30
+ * ` "0.9+deprecate" ` -- ` getPath ` and ` setPath ` emit a deprecation warning via
31
31
` Ember.deprecate `
32
- * ` "1.0" ` -- ` getPath ` raises an exception
32
+ * ` "1.0" ` -- ` getPath ` and ` setPath ` raise exceptions
33
33
34
34
Regardless of the value of the flag, ` get ` now works on both dotted- and
35
35
non-dotted paths, just as in 1.0.
36
36
37
+ See [ issue #1 ] ( https://github.com/zendesk/ember.js/issues/1 ) for more
38
+ information.
39
+
37
40
## ` Ember.Object.create `
38
41
39
42
This backports the ` create ` and ` createWithMixins ` functionality from Ember 1.0
@@ -65,3 +68,6 @@ has four possible values:
65
68
* ` "1.0" ` : Ember 1.0 compatibility; ` Ember.Obect.create ` will throw an
66
69
exception if passed an ` Ember.Mixin ` or an object that contains an
67
70
` Ember.ComputedProperty ` or ` Function ` that calls ` _super ` .
71
+
72
+ See [ issue #2 ] ( https://github.com/zendesk/ember.js/issues/2 ) for more
73
+ information.
0 commit comments