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

Side by Side Diff: pkg/barback/CHANGELOG.md

Issue 241493002: Don't warn if a transformer declares outputs that it doesn't emit. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/barback/lib/src/transform_node.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 ## 0.13.1 1 ## 0.13.1
2 2
3 * Only run `Transformer.isPrimary` once for each asset. 3 * Only run `Transformer.isPrimary` once for each asset.
4 4
5 * Don't warn if a lazy or declaring transformer doesn't emit outputs that it has
6 declared. This is valid for transformers like dart2js that need to read their
7 primary input in order to determine whether they should run.
8
5 ## 0.13.0 9 ## 0.13.0
6 10
7 * `Transformer.isPrimary` now takes an `AssetId` rather than an `Asset`. 11 * `Transformer.isPrimary` now takes an `AssetId` rather than an `Asset`.
8 12
9 * `DeclaringTransform` now only exposes the primary input's `AssetId`, rather 13 * `DeclaringTransform` now only exposes the primary input's `AssetId`, rather
10 than the primary `Asset` object. 14 than the primary `Asset` object.
11 15
12 * `DeclaringTransform` no longer supports `getInput`, `readInput`, 16 * `DeclaringTransform` no longer supports `getInput`, `readInput`,
13 `readInputAsString`, or `hasInput`. 17 `readInputAsString`, or `hasInput`.
14 18
(...skipping 22 matching lines...) Expand all
37 41
38 * If a transformer calls `Transform.logger.error`, the transformer will now be 42 * If a transformer calls `Transform.logger.error`, the transformer will now be
39 considered to have failed after it finishes running `apply()`. This means that 43 considered to have failed after it finishes running `apply()`. This means that
40 its outputs will not be consumed by future transformers and its primary input 44 its outputs will not be consumed by future transformers and its primary input
41 will not be passed through to the next phase. 45 will not be passed through to the next phase.
42 46
43 * If a transform calls `Transform.getInput`, `Transform.readInput`, 47 * If a transform calls `Transform.getInput`, `Transform.readInput`,
44 `Transform.readInputAsString`, or `Transform.hasInput` on an input that 48 `Transform.readInputAsString`, or `Transform.hasInput` on an input that
45 doesn't exist, the transform will be re-run if that input is created in the 49 doesn't exist, the transform will be re-run if that input is created in the
46 future. 50 future.
OLDNEW
« no previous file with comments | « no previous file | pkg/barback/lib/src/transform_node.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698