| 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 (observe, | 4 package. We will also note important changes to the polyfill packages (observe, |
| 5 web_components, and template_binding) if they impact polymer. | 5 web_components, and template_binding) if they impact polymer. |
| 6 | 6 |
| 7 |
| 8 #### Pub version 0.11.0-dev |
| 9 * Event bindings with `@` are no longer supported. |
| 10 |
| 7 #### Pub version 0.10.0 | 11 #### Pub version 0.10.0 |
| 8 * Interop with polymer-js elements now works. | 12 * Interop with polymer-js elements now works. |
| 9 * Polymer polyfills are now consolidated in package:web_components, which is | 13 * Polymer polyfills are now consolidated in package:web_components, which is |
| 10 identical to platform.js from http://polymer-project.org. | 14 identical to platform.js from http://polymer-project.org. |
| 11 * The output of pub-build no longer uses mirrors. We replace all uses of | 15 * The output of pub-build no longer uses mirrors. We replace all uses of |
| 12 mirrors with code generation. | 16 mirrors with code generation. |
| 13 * **breaking change**: Declaring a polymer app requires an extra import to | 17 * **breaking change**: Declaring a polymer app requires an extra import to |
| 14 `<link rel="import" href="packages/polymer/polymer.html">` | 18 `<link rel="import" href="packages/polymer/polymer.html">` |
| 15 * **breaking change**: "noscript" polymer-elements are created by polymer.js, | 19 * **breaking change**: "noscript" polymer-elements are created by polymer.js, |
| 16 and therefore cannot be extended (subtyped) in Dart. They can still be used | 20 and therefore cannot be extended (subtyped) in Dart. They can still be used |
| (...skipping 28 matching lines...) Expand all Loading... |
| 45 #### Pub version 0.9.2+4 | 49 #### Pub version 0.9.2+4 |
| 46 * fix linter on SVG and MathML tags with XML namespaces | 50 * fix linter on SVG and MathML tags with XML namespaces |
| 47 | 51 |
| 48 #### Pub version 0.9.2+3 | 52 #### Pub version 0.9.2+3 |
| 49 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), | 53 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), |
| 50 event bindings in dart2js, by working around issue | 54 event bindings in dart2js, by working around issue |
| 51 [15573](https://code.google.com/p/dart/issues/detail?id=15573) | 55 [15573](https://code.google.com/p/dart/issues/detail?id=15573) |
| 52 | 56 |
| 53 #### Pub version 0.9.2+2 | 57 #### Pub version 0.9.2+2 |
| 54 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 | 58 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 |
| OLD | NEW |