OLD | NEW |
1 # changelog | 1 # changelog |
2 | 2 |
3 This file contains highlights of what changes on each version of the | 3 This file contains highlights of what changes on each version of the |
4 polymer_expressions package. | 4 polymer_expressions package. |
5 | 5 |
| 6 #### Pub version 0.12.0-dev |
| 7 * Updated to depend on latest template_binding and observe. Setting a value on |
| 8 a polymer expression binding now produces a change notification. |
| 9 |
6 #### Pub version 0.11.0 | 10 #### Pub version 0.11.0 |
7 * Remove faulty assert that threw when an iterable field was updated. | 11 * Remove faulty assert that threw when an iterable field was updated. |
8 | 12 |
9 #### Pub version 0.11.0 | 13 #### Pub version 0.11.0 |
10 * Scopes created by templates are created less often and nested properly. The | 14 * Scopes created by templates are created less often and nested properly. The |
11 previous version had a bug with respect to the names visible in | 15 previous version had a bug with respect to the names visible in |
12 <template releat> tags without an "in" expression, and <template bind> tags. | 16 <template releat> tags without an "in" expression, and <template bind> tags. |
13 In those templates, names for the outer templates should not be visible. | 17 In those templates, names for the outer templates should not be visible. |
14 This may result in some breakages in templates that relied on the buggy | 18 This may result in some breakages in templates that relied on the buggy |
15 behavior. | 19 behavior. |
(...skipping 28 matching lines...) Expand all Loading... |
44 | 48 |
45 * Fixed several bugs, including: | 49 * Fixed several bugs, including: |
46 * propagating list changes ([18749][]). | 50 * propagating list changes ([18749][]). |
47 * precedence of ternary operators ([17805][]). | 51 * precedence of ternary operators ([17805][]). |
48 * two-way bindings ([18410][] and [18792][]). | 52 * two-way bindings ([18410][] and [18792][]). |
49 | 53 |
50 [17805]: https://code.google.com/p/dart/issues/detail?id=17805 | 54 [17805]: https://code.google.com/p/dart/issues/detail?id=17805 |
51 [18410]: https://code.google.com/p/dart/issues/detail?id=18410 | 55 [18410]: https://code.google.com/p/dart/issues/detail?id=18410 |
52 [18749]: https://code.google.com/p/dart/issues/detail?id=18749 | 56 [18749]: https://code.google.com/p/dart/issues/detail?id=18749 |
53 [18792]: https://code.google.com/p/dart/issues/detail?id=18792 | 57 [18792]: https://code.google.com/p/dart/issues/detail?id=18792 |
OLD | NEW |