OLD | NEW |
| 1 ## 0.5.1+3 |
| 2 |
| 3 * Support the latest `cli_util` package. |
| 4 |
| 5 ## 0.5.1+2 |
| 6 |
| 7 * Support the latest `analyzer` package. |
| 8 |
| 9 ## 0.5.1+1 |
| 10 |
| 11 * Updated mock SDK sources to include FutureOr<T> (and fixed a syntax error) |
| 12 |
| 13 ## 0.5.1 |
| 14 |
| 15 * Resolver has a new method which can check whether an Asset is a Dart library |
| 16 source |
| 17 |
| 18 ## 0.5.0+2 |
| 19 |
| 20 * Resolver no longer returns a partial LibraryElement for assets which are not |
| 21 libraries |
| 22 |
| 23 ## 0.5.0+1 |
| 24 |
| 25 * Stop using deprecated analyzer apis. |
| 26 |
| 27 ## 0.5.0 |
| 28 |
| 29 * Always use a single `Resolver` instance. Fixes an issue where running with the |
| 30 'build' package in file watching mode would treat some files as never |
| 31 changing. |
| 32 * Breaking Change: remove the `useSharedSources` argument to Resolvers ctor |
| 33 since sources are always shared. |
| 34 |
| 35 ## 0.4.2+4 |
| 36 |
| 37 * Update to work with analyzer 0.29.x and transform_test 0.2.x |
| 38 |
| 39 ## 0.4.2+3 |
| 40 |
| 41 * Update to work with analyzer 0.28.x. |
| 42 |
| 43 ## 0.4.2+2 |
| 44 |
| 45 * Update to work with analyzer 0.23.x. |
| 46 |
| 47 ## 0.4.2+1 |
| 48 |
| 49 * Contains a fix for the `useSharedSources` option that could result in null |
| 50 library elements when running on multiple entry points. |
| 51 |
| 52 ## 0.4.2 |
| 53 |
| 54 * Use Strong Mode, fixes |
| 55 [#38](https://github.com/dart-lang/code_transformers/issues/38). |
| 56 |
| 57 ## 0.4.1 |
| 58 |
| 59 * Added a fix for [#24890](https://github.com/dart-lang/sdk/issues/24890). |
| 60 * All constants in all libraries will once again be resolved by default. |
| 61 * Added a new `resolveAllLibraries` option to `Resolver#resolve` and |
| 62 `Resolvers#get`. If `false` is passed then constants will not be resolved in |
| 63 non entry points. This saves significant time if constants are not needed. |
| 64 * Added a `useSharedSources` option to `Resolvers`. This gives a significant |
| 65 speed increase, but must be used carefully. |
| 66 * If used, then all `Resolver` instances created from the same `Resolvers` |
| 67 instance will share the same sources cache. |
| 68 * This should be generally safe to use if the `Resolvers` instance is created |
| 69 in the constructor of your `Transformer`. |
| 70 * This option should probably not be used with a static or shared `Resolvers` |
| 71 instance. |
| 72 |
| 73 ## 0.4.0 |
| 74 |
| 75 * Remove dependency on `test`, and move all test related apis to a new |
| 76 `transformer_test` package which is now a dev dependency. |
| 77 |
| 78 ## 0.3.1 |
| 79 |
| 80 * Update to analyzer `>=0.27.0 <0.28.0`. |
| 81 |
| 82 ## 0.3.0+1 |
| 83 |
| 84 * Upgrade `test` to a real dependency. |
| 85 |
| 86 ## 0.3.0 |
| 87 |
| 88 * Re-release `0.2.10` release as `0.3.0`. |
| 89 |
1 ## 0.2.11 | 90 ## 0.2.11 |
2 | 91 |
3 * Revert `0.2.10` release, will be re-released as `0.3.0` since it is actually | 92 * Revert `0.2.10` release, will be re-released as `0.3.0` since it is actually |
4 a breaking change. | 93 a breaking change. |
5 | 94 |
6 ## 0.2.10 | 95 ## 0.2.10 |
7 | 96 |
8 * Update to use the `test` package instead of the `unittest` package. | 97 * Update to use the `test` package instead of the `unittest` package. |
9 | 98 |
10 ## 0.2.9+4 | 99 ## 0.2.9+4 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 172 |
84 * Widen the constraint on source_maps. | 173 * Widen the constraint on source_maps. |
85 | 174 |
86 ## 0.2.0+1 | 175 ## 0.2.0+1 |
87 | 176 |
88 * Widen the constraint on barback. | 177 * Widen the constraint on barback. |
89 | 178 |
90 ## 0.2.0 | 179 ## 0.2.0 |
91 | 180 |
92 * Switch from `source_maps`' `Span` class to `source_span`'s `SourceSpan` class. | 181 * Switch from `source_maps`' `Span` class to `source_span`'s `SourceSpan` class. |
OLD | NEW |