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