OLD | NEW |
(Empty) | |
| 1 ## 0.26.1+2 |
| 2 |
| 3 * Extension point for WorkManagerFactory(s). |
| 4 * Resolve enum documentation comments. |
| 5 * Fix display of parameter lists in servers Element structure (issue 24194) |
| 6 * Band-aid fix for issue #24191. |
| 7 |
| 8 ## 0.26.1+1 |
| 9 |
| 10 * Removed a warning about importing unnamed libraries |
| 11 * Fix handling of empty URIs in `.packages` files (issue 24126) |
| 12 |
| 13 ## 0.26.1 |
| 14 |
| 15 * Fix line starts in multiline comments (issue 23919). |
| 16 * Various small fixes to Windows path handling. |
| 17 * Update LineInfo computation during incremental resolution. |
| 18 * Make exclude list apply to contexts (issue 23941). |
| 19 * Fix type propagation for asynchronous for-in statements. |
| 20 * Fix ToStringVisitor for external functions (issue 23968). |
| 21 * Fix sorting of compilation unit members. |
| 22 * Add forwarding for DefaultFormalParameter metadata. |
| 23 * Fix most implementations of UriResolver.restoreAbsolute. |
| 24 * Disable dart2js hints by default. |
| 25 * Support older SDKs (Dart 1.11). |
| 26 |
| 27 ## 0.26.0 |
| 28 |
| 29 * Add hook for listening to implicitly analyzed files |
| 30 * Add a PathFilter and AnalysisOptionsProvider utility classes to aid |
| 31 clients in excluding files from analysis when directed to do so by an |
| 32 options file. |
| 33 * API change: `UriResolver.resolveUri(..)` now takes an optional `actualUri`. |
| 34 * Change `ResolutionCopier.visitAwaitExpression` to copy *Type fields. |
| 35 * Fix highlight range for missing enum constant in switch (issue 23904). |
| 36 * Fix analyzer's treatment of `ClassName?.staticMember` to match spec. |
| 37 * Implement DEP 34 (less restricted mixins). |
| 38 * Fix some implementations of `UriResolver.resolveUri(..)` that did not |
| 39 properly handle the new `actualUri` argument. |
| 40 |
| 41 ## 0.25.2 |
| 42 |
| 43 * Requires Dart SDK 1.12-dev or greater |
| 44 * Enable null-aware operators (DEP 9) by default. |
| 45 * Generic method support in the element model. |
| 46 |
| 47 ## 0.25.2-alpha.1 |
| 48 |
| 49 * `dart:sdk` extension `.sdkext` changed to `_sdkext` (to play nicer with pub). |
| 50 |
| 51 ## 0.25.2-alpha.0 |
| 52 |
| 53 * Initial support for analyzing `dart:sdk` extensions from `.sdkext`. |
| 54 |
| 55 ## 0.25.1 |
| 56 |
| 57 * (Internal) code reorganization to address analysis warnings due to SDK reorg. |
| 58 * First steps towards `.packages` support. |
| 59 |
| 60 ## 0.25.0 |
| 61 |
| 62 * Commandline interface moved to dedicated `analyzer_cli` package. Files moved: |
| 63 * `bin/analyzer.dart` |
| 64 * `lib/options.dart` |
| 65 * `lib/src/analyzer_impl.dart` |
| 66 * `lib/src/error_formatter.dart` |
| 67 * Removed dependency on the `args` package. |
| 68 |
| 69 ## 0.22.1 |
| 70 |
| 71 * Changes in the async/await support. |
| 72 |
| 73 |
| 74 ## 0.22.0 |
| 75 |
| 76 New API: |
| 77 |
| 78 * `Source.uri` added. |
| 79 |
| 80 Breaking changes: |
| 81 |
| 82 * `DartSdk.fromEncoding` replaced with `fromFileUri`. |
| 83 * `Source.resolveRelative` replaced with `resolveRelativeUri`. |
OLD | NEW |