| OLD | NEW |
| 1 # changelog | 1 ## 0.13.2 |
| 2 | 2 |
| 3 This file contains highlights of what changes on each version of the html | 3 * Support the latest release of `pkg/csslib`. |
| 4 package. | 4 |
| 5 ## 0.13.1 |
| 6 * Update Set.difference to take a Set<Object>. |
| 7 |
| 8 ## 0.13.0 |
| 9 |
| 10 * **BREAKING** Fix all [strong mode][] errors and warnings. |
| 11 This involved adding more precise types on some public APIs, which is why it |
| 12 may break users. |
| 13 |
| 14 [strong mode]: https://github.com/dart-lang/dev_compiler/blob/master/STRONG_MODE
.md |
| 5 | 15 |
| 6 #### Pub version 0.12.2+2 | 16 #### Pub version 0.12.2+2 |
| 7 * Support `csslib` versions `0.13.x`. | 17 * Support `csslib` versions `0.13.x`. |
| 8 | 18 |
| 9 #### Pub version 0.12.2+1 | 19 #### Pub version 0.12.2+1 |
| 10 * Exclude `.packages` file from the published package. | 20 * Exclude `.packages` file from the published package. |
| 11 | 21 |
| 12 #### Pub version 0.12.2 | 22 #### Pub version 0.12.2 |
| 13 * Added `Element.endSourceSpan`, containing the span of a closing tag. | 23 * Added `Element.endSourceSpan`, containing the span of a closing tag. |
| 14 | 24 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 30 | 40 |
| 31 #### Pub version 0.10.0 | 41 #### Pub version 0.10.0 |
| 32 * fix how document fragments are added in NodeList.add/addAll/insertAll. | 42 * fix how document fragments are added in NodeList.add/addAll/insertAll. |
| 33 | 43 |
| 34 #### Pub version 0.9.2-dev | 44 #### Pub version 0.9.2-dev |
| 35 * add Node.text, Node.append, Document.documentElement | 45 * add Node.text, Node.append, Document.documentElement |
| 36 * add Text.data, deprecate Node.value and Text.value. | 46 * add Text.data, deprecate Node.value and Text.value. |
| 37 * deprecate Node.$dom_nodeType | 47 * deprecate Node.$dom_nodeType |
| 38 * added querySelector/querySelectorAll, deprecated query/queryAll. | 48 * added querySelector/querySelectorAll, deprecated query/queryAll. |
| 39 This matches the current APIs in dart:html. | 49 This matches the current APIs in dart:html. |
| OLD | NEW |