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

Side by Side Diff: CHANGELOG.md

Issue 1841223002: Fix most strong mode warnings. (Closed) Base URL: git@github.com:dart-lang/async.git@master
Patch Set: Code review changes Created 4 years, 8 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 | « .analysis_options ('k') | lib/src/async_memoizer.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.9.1
2
3 * Fix all strong mode warnings and add generic method annotations.
4
5 * `new StreamQueue()` now takes a `Stream<T>` rather than a `Stream<dynamic>`.
6 Passing a type that wasn't `is`-compatible with `Stream<T>` would already
7 throw an error under some circumstances, so this is not considered a breaking
8 change.
9
10 * `new SubscriptionStream()` now takes a `Stream<T>` rather than a
11 `Stream<dynamic>`. Passing a type that wasn't `is`-compatible with `Stream<T>`
12 would already throw an error under some circumstances, so this is not
13 considered a breaking change.
14
15 * `ErrorResult` now takes a type parameter.
16
17 * `Result.asError` now returns a `Result<T>`.
18
1 ## 1.9.0 19 ## 1.9.0
2 20
3 * Deprecate top-level libraries other than `package:async/async.dart`, which 21 * Deprecate top-level libraries other than `package:async/async.dart`, which
4 exports these libraries' interfaces. 22 exports these libraries' interfaces.
5 23
6 * Add `Result.captureStreamTransformer`, `Result.releaseStreamTransformer`, 24 * Add `Result.captureStreamTransformer`, `Result.releaseStreamTransformer`,
7 `Result.captureSinkTransformer`, and `Result.releaseSinkTransformer`. 25 `Result.captureSinkTransformer`, and `Result.releaseSinkTransformer`.
8 26
9 * Deprecate `CaptureStreamTransformer`, `ReleaseStreamTransformer`, 27 * Deprecate `CaptureStreamTransformer`, `ReleaseStreamTransformer`,
10 `CaptureSink`, and `ReleaseSink`. `Result.captureStreamTransformer`, 28 `CaptureSink`, and `ReleaseSink`. `Result.captureStreamTransformer`,
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 - Added a `StreamSplitter` class for splitting a stream into multiple new 109 - Added a `StreamSplitter` class for splitting a stream into multiple new
92 streams. 110 streams.
93 111
94 ## 1.1.1 112 ## 1.1.1
95 113
96 - Updated SDK version constraint to at least 1.9.0. 114 - Updated SDK version constraint to at least 1.9.0.
97 115
98 ## 1.1.0 116 ## 1.1.0
99 117
100 - ChangeLog starts here. 118 - ChangeLog starts here.
OLDNEW
« no previous file with comments | « .analysis_options ('k') | lib/src/async_memoizer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698