| 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 | 7 #### Pub version 0.11.0-dev |
| 8 * Event bindings with `@` are no longer supported. | 8 * **breaking change**: Event bindings with `@` are no longer supported. |
| 9 * **breaking change**: enteredView/leftView were renamed to attached/detached |
| 10 * **breaking change**: polymer.html is not required in entrypoints, but it is |
| 11 required from files that use `<polymer-element>`. |
| 12 * **breaking change**: platform.js and dart_support.js must be specified in |
| 13 your entry points at the beginning of `<head>`. |
| 9 | 14 |
| 10 #### Pub version 0.10.1 | 15 #### Pub version 0.10.1 |
| 11 * Reduce the analyzer work by mocking a small subset of the core libraries. | 16 * Reduce the analyzer work by mocking a small subset of the core libraries. |
| 12 | 17 |
| 13 #### Pub version 0.10.0+1 | 18 #### Pub version 0.10.0+1 |
| 14 * Better error message on failures in pub-serve/pub-build when pubspec.yaml | 19 * 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. | 20 is missing or has a wrong configuration for the polymer transformers. |
| 16 | 21 |
| 17 #### Pub version 0.10.0 | 22 #### Pub version 0.10.0 |
| 18 * Interop with polymer-js elements now works. | 23 * Interop with polymer-js elements now works. |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 #### Pub version 0.9.2+4 | 60 #### Pub version 0.9.2+4 |
| 56 * fix linter on SVG and MathML tags with XML namespaces | 61 * fix linter on SVG and MathML tags with XML namespaces |
| 57 | 62 |
| 58 #### Pub version 0.9.2+3 | 63 #### Pub version 0.9.2+3 |
| 59 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), | 64 * fix [15574](https://code.google.com/p/dart/issues/detail?id=15574), |
| 60 event bindings in dart2js, by working around issue | 65 event bindings in dart2js, by working around issue |
| 61 [15573](https://code.google.com/p/dart/issues/detail?id=15573) | 66 [15573](https://code.google.com/p/dart/issues/detail?id=15573) |
| 62 | 67 |
| 63 #### Pub version 0.9.2+2 | 68 #### Pub version 0.9.2+2 |
| 64 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 | 69 * fix enteredView in dart2js, by using custom_element >= 0.9.1+1 |
| OLD | NEW |