OLD | NEW |
1 ## 0.26.0 | 1 ## 0.26.0 |
2 | 2 |
3 * No changes from 0.26.0-alpha.2. | 3 * Add hook for listening to implicitly analyzed files |
4 | 4 * Add a PathFilter and AnalysisOptionsProvider utility classes to aid |
5 ## 0.26.0-alpha.2 | 5 clients in excluding files from analysis when directed to do so by an |
6 | 6 options file. |
| 7 * API change: `UriResolver.resolveUri(..)` now takes an optional `actualUri`. |
| 8 * Change `ResolutionCopier.visitAwaitExpression` to copy *Type fields. |
7 * Fix highlight range for missing enum constant in switch (issue 23904). | 9 * Fix highlight range for missing enum constant in switch (issue 23904). |
8 * Fix analyzer's treatment of `ClassName?.staticMember` to match spec. | 10 * Fix analyzer's treatment of `ClassName?.staticMember` to match spec. |
9 * Implement DEP 34 (less restricted mixins). | 11 * Implement DEP 34 (less restricted mixins). |
10 * Fix some implementations of `UriResolver.resolveUri(..)` that did not | 12 * Fix some implementations of `UriResolver.resolveUri(..)` that did not |
11 properly handle the new `actualUri` argument. | 13 properly handle the new `actualUri` argument. |
12 | 14 |
13 ## 0.26.0-alpha.1 | |
14 | |
15 * Change `ResolutionCopier.visitAwaitExpression` to copy *Type fields. | |
16 | |
17 ## 0.26.0-alpha.0 | |
18 | |
19 * API change: `UriResolver.resolveUri(..)` now takes an optional `actualUri`. | |
20 | |
21 ## 0.25.3-alpha.0 | |
22 | |
23 * Add hook for listening to implicitly analyzed files | |
24 * Add a PathFilter and AnalysisOptionsProvider utility classes to aid | |
25 clients in excluding files from analysis when directed to do so by an | |
26 options file. | |
27 | |
28 ## 0.25.2 | 15 ## 0.25.2 |
29 | 16 |
30 * Requires Dart SDK 1.12-dev or greater | 17 * Requires Dart SDK 1.12-dev or greater |
31 * Enable null-aware operators (DEP 9) by default. | 18 * Enable null-aware operators (DEP 9) by default. |
32 * Generic method support in the element model. | 19 * Generic method support in the element model. |
33 | 20 |
34 ## 0.25.2-alpha.1 | 21 ## 0.25.2-alpha.1 |
35 | 22 |
36 * `dart:sdk` extension `.sdkext` changed to `_sdkext` (to play nicer with pub). | 23 * `dart:sdk` extension `.sdkext` changed to `_sdkext` (to play nicer with pub). |
37 | 24 |
(...skipping 23 matching lines...) Expand all Loading... |
61 ## 0.22.0 | 48 ## 0.22.0 |
62 | 49 |
63 New API: | 50 New API: |
64 | 51 |
65 * `Source.uri` added. | 52 * `Source.uri` added. |
66 | 53 |
67 Breaking changes: | 54 Breaking changes: |
68 | 55 |
69 * `DartSdk.fromEncoding` replaced with `fromFileUri`. | 56 * `DartSdk.fromEncoding` replaced with `fromFileUri`. |
70 * `Source.resolveRelative` replaced with `resolveRelativeUri`. | 57 * `Source.resolveRelative` replaced with `resolveRelativeUri`. |
OLD | NEW |