OLD | NEW |
---|---|
1 # changelog | 1 # changelog |
2 | 2 |
3 This file contains highlights of what changes on each version of the polymer | 3 This file contains highlights of what changes on each version of the polymer |
4 package. We will also note important changes to the polyfill packages if they | 4 package. We will also note important changes to the polyfill packages if they |
5 impact polymer: custom_element, html_import, observe, shadow_dom, | 5 impact polymer: custom_element, html_import, observe, shadow_dom, |
6 and template_binding. | 6 and template_binding. |
7 | 7 |
8 #### Pub version 0.10.0-dev | 8 #### Pub version 0.10.0-dev |
Siggi Cherem (dart-lang)
2014/02/10 20:49:23
maybe mention the fix for link-rel-stylesheet that
Jennifer Messerly
2014/02/10 22:17:11
my memory on this is already fuzzy :) But I don't
| |
9 * Polymer polyfills are now consolidated in package:web_components, which is | |
10 identical to platform.js from http://polymer-project.org. This enables | |
11 interop with elements built in polymer.js. | |
12 * New feature: `@ObserveProperty('foo bar.baz') myMethod() {...}` will cause | |
Jennifer Messerly
2014/02/08 01:13:29
forgot to document these last change.
| |
13 myMethod to be called when "foo" or "bar.baz" changes. | |
14 * Updated for 0.10.0-dev package:observe and package:template_binding changes. | |
9 * Deploy step removes use of mirrors to initialize polymer elements. Mirrors | 15 * Deploy step removes use of mirrors to initialize polymer elements. Mirrors |
10 are still used for @published and for polymer-expressions. | 16 are still used for @published and for polymer-expressions. |
11 **breaking change**: @initMethod and @CustomTag are only supported on | 17 **breaking change**: @initMethod and @CustomTag are only supported on |
12 public classes/methods. | 18 public classes/methods. |
13 | 19 |
14 #### Pub version 0.9.5 | 20 #### Pub version 0.9.5 |
15 * Improvements on how to handle cross-package HTML imports. | 21 * Improvements on how to handle cross-package HTML imports. |
16 | 22 |
17 #### Pub version 0.9.4 | 23 #### Pub version 0.9.4 |
18 * Removes unused dependency on csslib. | 24 * Removes unused dependency on csslib. |
(...skipping 16 matching lines...) Expand all Loading... | |
35 #### Pub version 0.9.2+4 | 41 #### Pub version 0.9.2+4 |
36 * fix linter on SVG and MathML tags with XML namespaces | 42 * fix linter on SVG and MathML tags with XML namespaces |
37 | 43 |
38 #### Pub version 0.9.2+3 | 44 #### Pub version 0.9.2+3 |
39 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), | 45 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), |
40 event bindings in dart2js, by working around issue | 46 event bindings in dart2js, by working around issue |
41 [15573](https://code.google.com/p/dart/issues/detail?id=15573) | 47 [15573](https://code.google.com/p/dart/issues/detail?id=15573) |
42 | 48 |
43 #### Pub version 0.9.2+2 | 49 #### Pub version 0.9.2+2 |
44 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 | 50 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 |
OLD | NEW |