Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: CHANGELOG.md

Issue 1819293003: Remove deprecated APIs. (Closed) Base URL: git@github.com:dart-lang/crypto.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | lib/crypto.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.0.0
2
3 * All APIs that were deprecated in 0.9.2 have been removed. No new APIs have
4 been added. Packages that would use 1.0.0 as a lower bound should use 0.9.2
5 instead—for example, `crypto: ">=0.9.2 <2.0.0"`.
6
1 ## 0.9.2 7 ## 0.9.2
2 8
3 * `Hash`, `MD5`, `SHA1`, and `SHA256` now implement `Converter`. They convert 9 * `Hash`, `MD5`, `SHA1`, and `SHA256` now implement `Converter`. They convert
4 between `List<int>`s and the new `Digest` class, which represents a hash 10 between `List<int>`s and the new `Digest` class, which represents a hash
5 digest. The `Converter` APIs—`Hash.convert()` and 11 digest. The `Converter` APIs—`Hash.convert()` and
6 `Hash.startChunkedConversion`—should be used in preference to the old APIs, 12 `Hash.startChunkedConversion`—should be used in preference to the old APIs,
7 which are now deprecated. 13 which are now deprecated.
8 14
9 * `SHA1`, `SHA256`, and `HMAC` have been renamed to `Sha1`, `Sha256`, and 15 * `SHA1`, `SHA256`, and `HMAC` have been renamed to `Sha1`, `Sha256`, and
10 `Hmac`, respectively. The old names still work, but are deprecated. 16 `Hmac`, respectively. The old names still work, but are deprecated.
(...skipping 26 matching lines...) Expand all
37 43
38 ## 0.9.1 44 ## 0.9.1
39 45
40 * Base64 convert returns an Uint8List 46 * Base64 convert returns an Uint8List
41 * Base64 codec and encoder can now take an encodePaddingCharacter 47 * Base64 codec and encoder can now take an encodePaddingCharacter
42 * Implement a Base64 codec similar to codecs in 'dart:convert' 48 * Implement a Base64 codec similar to codecs in 'dart:convert'
43 49
44 ## 0.9.0 50 ## 0.9.0
45 51
46 * ChangeLog starts here. 52 * ChangeLog starts here.
OLDNEW
« no previous file with comments | « no previous file | lib/crypto.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698