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