| OLD | NEW |
| 1 #### Pub version 0.9.0-dev | 1 #### Pub version 0.9.0-dev |
| 2 * Updated to platform version 0.4.2, internally a deprecated API was removed, | 2 * Updated to platform version 0.4.2, internally a deprecated API was removed, |
| 3 hence the bump in the version number. | 3 hence the bump in the version number. |
| 4 | 4 |
| 5 * split dart_support.js in two. dart_support.js only contains what is |
| 6 necessary in order to use platform.js, |
| 7 interop_support.js/interop_support.html can be imported separately when |
| 8 providing Dart APIs for js custom elements. |
| 9 |
| 5 #### Pub version 0.8.0 | 10 #### Pub version 0.8.0 |
| 6 * Re-apply changes from 0.7.1+1 and also cherry pick | 11 * Re-apply changes from 0.7.1+1 and also cherry pick |
| 7 [efdbbc](https://github.com/polymer/CustomElements/commit/efdbbc) to fix | 12 [efdbbc](https://github.com/polymer/CustomElements/commit/efdbbc) to fix |
| 8 the customElementsTakeRecords function. | 13 the customElementsTakeRecords function. |
| 9 * **Breaking Change** The customElementsTakeRecords function now has an | 14 * **Breaking Change** The customElementsTakeRecords function now has an |
| 10 an optional argument `node`. There is no longer a single global observer, | 15 an optional argument `node`. There is no longer a single global observer, |
| 11 but one for each ShadowRoot and one for the main document. The observer that | 16 but one for each ShadowRoot and one for the main document. The observer that |
| 12 is actually used defaults to the main document, but if `node` is supplied | 17 is actually used defaults to the main document, but if `node` is supplied |
| 13 then it will walk up the document tree and use the first observer that it | 18 then it will walk up the document tree and use the first observer that it |
| 14 finds. | 19 finds. |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 * Reverts back to what we had in 0.3.4. (The platform.js updates in 0.3.5 had | 67 * Reverts back to what we had in 0.3.4. (The platform.js updates in 0.3.5 had |
| 63 breaking changes so we are republishing it in 0.4.0) | 68 breaking changes so we are republishing it in 0.4.0) |
| 64 | 69 |
| 65 #### Pub version 0.3.5 | 70 #### Pub version 0.3.5 |
| 66 * Added `registerDartType` to register a Dart API for a custom-element written | 71 * Added `registerDartType` to register a Dart API for a custom-element written |
| 67 in Javascript. | 72 in Javascript. |
| 68 * Updated to platform 0.3.3-29065bc | 73 * Updated to platform 0.3.3-29065bc |
| 69 | 74 |
| 70 #### Pub version 0.3.4 | 75 #### Pub version 0.3.4 |
| 71 * Updated to platform 0.2.4 (see lib/build.log for details) | 76 * Updated to platform 0.2.4 (see lib/build.log for details) |
| OLD | NEW |