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