| 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 |
| 9 * Interop with polymer-js elements now works. |
| 9 * Polymer polyfills are now consolidated in package:web_components, which is | 10 * Polymer polyfills are now consolidated in package:web_components, which is |
| 10 identical to platform.js from http://polymer-project.org. This enables | 11 identical to platform.js from http://polymer-project.org. |
| 11 interop with elements built in polymer.js. | 12 * Breaking change: "noscript" polymer-elements are created by polymer.js, and |
| 13 therefore cannot be extended (subtyped) in Dart. They can still be used |
| 14 by Dart elements or applications, however. |
| 12 * New feature: `@ObserveProperty('foo bar.baz') myMethod() {...}` will cause | 15 * New feature: `@ObserveProperty('foo bar.baz') myMethod() {...}` will cause |
| 13 myMethod to be called when "foo" or "bar.baz" changes. | 16 myMethod to be called when "foo" or "bar.baz" changes. |
| 14 * Updated for 0.10.0-dev package:observe and package:template_binding changes. | 17 * Updated for 0.10.0-dev package:observe and package:template_binding changes. |
| 15 * Deploy step removes use of mirrors to initialize polymer elements. Mirrors | 18 * Deploy step removes use of mirrors to initialize polymer elements. Mirrors |
| 16 are still used for @published and for polymer-expressions. | 19 are still used for @published and for polymer-expressions. |
| 17 **breaking change**: @initMethod and @CustomTag are only supported on | 20 **breaking change**: @initMethod and @CustomTag are only supported on |
| 18 public classes/methods. | 21 public classes/methods. |
| 19 | 22 |
| 20 #### Pub version 0.9.5 | 23 #### Pub version 0.9.5 |
| 21 * Improvements on how to handle cross-package HTML imports. | 24 * Improvements on how to handle cross-package HTML imports. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 41 #### Pub version 0.9.2+4 | 44 #### Pub version 0.9.2+4 |
| 42 * fix linter on SVG and MathML tags with XML namespaces | 45 * fix linter on SVG and MathML tags with XML namespaces |
| 43 | 46 |
| 44 #### Pub version 0.9.2+3 | 47 #### Pub version 0.9.2+3 |
| 45 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), | 48 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), |
| 46 event bindings in dart2js, by working around issue | 49 event bindings in dart2js, by working around issue |
| 47 [15573](https://code.google.com/p/dart/issues/detail?id=15573) | 50 [15573](https://code.google.com/p/dart/issues/detail?id=15573) |
| 48 | 51 |
| 49 #### Pub version 0.9.2+2 | 52 #### Pub version 0.9.2+2 |
| 50 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 | 53 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 |
| OLD | NEW |