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

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

Issue 241223005: Fix a deadlock bug with lazy transformer pipelining. (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 * Fix a deadlock bug when a lazy primary input to a lazy transformer became
6 dirty while the transformer's `apply` method was running.
7
5 ## 0.13.0 8 ## 0.13.0
6 9
7 * `Transformer.isPrimary` now takes an `AssetId` rather than an `Asset`. 10 * `Transformer.isPrimary` now takes an `AssetId` rather than an `Asset`.
8 11
9 * `DeclaringTransform` now only exposes the primary input's `AssetId`, rather 12 * `DeclaringTransform` now only exposes the primary input's `AssetId`, rather
10 than the primary `Asset` object. 13 than the primary `Asset` object.
11 14
12 * `DeclaringTransform` no longer supports `getInput`, `readInput`, 15 * `DeclaringTransform` no longer supports `getInput`, `readInput`,
13 `readInputAsString`, or `hasInput`. 16 `readInputAsString`, or `hasInput`.
14 17
(...skipping 22 matching lines...) Expand all
37 40
38 * If a transformer calls `Transform.logger.error`, the transformer will now be 41 * 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 42 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 43 its outputs will not be consumed by future transformers and its primary input
41 will not be passed through to the next phase. 44 will not be passed through to the next phase.
42 45
43 * If a transform calls `Transform.getInput`, `Transform.readInput`, 46 * If a transform calls `Transform.getInput`, `Transform.readInput`,
44 `Transform.readInputAsString`, or `Transform.hasInput` on an input that 47 `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 48 doesn't exist, the transform will be re-run if that input is created in the
46 future. 49 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