| 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 #### Pub version 0.11.0-dev |
| 8 * Event bindings with `@` are no longer supported. |
| 9 |
| 10 #### Pub version 0.10.1 |
| 11 * Reduce the analyzer work by mocking a small subset of the core libraries. |
| 12 |
| 13 #### Pub version 0.10.0+1 |
| 14 * Better error message on failures in pub-serve/pub-build when pubspec.yaml |
| 15 is missing or has a wrong configuration for the polymer transformers. |
| 16 |
| 7 #### Pub version 0.10.0 | 17 #### Pub version 0.10.0 |
| 8 * Interop with polymer-js elements now works. | 18 * Interop with polymer-js elements now works. |
| 9 * Polymer polyfills are now consolidated in package:web_components, which is | 19 * Polymer polyfills are now consolidated in package:web_components, which is |
| 10 identical to platform.js from http://polymer-project.org. | 20 identical to platform.js from http://polymer-project.org. |
| 11 * The output of pub-build no longer uses mirrors. We replace all uses of | 21 * The output of pub-build no longer uses mirrors. We replace all uses of |
| 12 mirrors with code generation. | 22 mirrors with code generation. |
| 13 * **breaking change**: Declaring a polymer app requires an extra import to | 23 * **breaking change**: Declaring a polymer app requires an extra import to |
| 14 `<link rel="import" href="packages/polymer/polymer.html">` | 24 `<link rel="import" href="packages/polymer/polymer.html">` |
| 15 * **breaking change**: "noscript" polymer-elements are created by polymer.js, | 25 * **breaking change**: "noscript" polymer-elements are created by polymer.js, |
| 16 and therefore cannot be extended (subtyped) in Dart. They can still be used | 26 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 | 55 #### Pub version 0.9.2+4 |
| 46 * fix linter on SVG and MathML tags with XML namespaces | 56 * fix linter on SVG and MathML tags with XML namespaces |
| 47 | 57 |
| 48 #### Pub version 0.9.2+3 | 58 #### Pub version 0.9.2+3 |
| 49 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), | 59 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), |
| 50 event bindings in dart2js, by working around issue | 60 event bindings in dart2js, by working around issue |
| 51 [15573](https://code.google.com/p/dart/issues/detail?id=15573) | 61 [15573](https://code.google.com/p/dart/issues/detail?id=15573) |
| 52 | 62 |
| 53 #### Pub version 0.9.2+2 | 63 #### Pub version 0.9.2+2 |
| 54 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 | 64 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 |
| OLD | NEW |