| OLD | NEW |
| 1 ## 0.9.2+1 |
| 2 |
| 3 * Avoid core library methods that don't work on dart2js. |
| 4 |
| 1 ## 0.9.2 | 5 ## 0.9.2 |
| 2 | 6 |
| 3 * `Hash`, `MD5`, `SHA1`, and `SHA256` now implement `Converter`. They convert | 7 * `Hash`, `MD5`, `SHA1`, and `SHA256` now implement `Converter`. They convert |
| 4 between `List<int>`s and the new `Digest` class, which represents a hash | 8 between `List<int>`s and the new `Digest` class, which represents a hash |
| 5 digest. The `Converter` APIs—`Hash.convert()` and | 9 digest. The `Converter` APIs—`Hash.convert()` and |
| 6 `Hash.startChunkedConversion`—should be used in preference to the old APIs, | 10 `Hash.startChunkedConversion`—should be used in preference to the old APIs, |
| 7 which are now deprecated. | 11 which are now deprecated. |
| 8 | 12 |
| 9 * `SHA1`, `SHA256`, and `HMAC` have been renamed to `Sha1`, `Sha256`, and | 13 * `SHA1`, `SHA256`, and `HMAC` have been renamed to `Sha1`, `Sha256`, and |
| 10 `Hmac`, respectively. The old names still work, but are deprecated. | 14 `Hmac`, respectively. The old names still work, but are deprecated. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 41 |
| 38 ## 0.9.1 | 42 ## 0.9.1 |
| 39 | 43 |
| 40 * Base64 convert returns an Uint8List | 44 * Base64 convert returns an Uint8List |
| 41 * Base64 codec and encoder can now take an encodePaddingCharacter | 45 * Base64 codec and encoder can now take an encodePaddingCharacter |
| 42 * Implement a Base64 codec similar to codecs in 'dart:convert' | 46 * Implement a Base64 codec similar to codecs in 'dart:convert' |
| 43 | 47 |
| 44 ## 0.9.0 | 48 ## 0.9.0 |
| 45 | 49 |
| 46 * ChangeLog starts here. | 50 * ChangeLog starts here. |
| OLD | NEW |