| OLD | NEW |
| 1 ## 0.27.0 | 1 ## 0.27.0 |
| 2 * Support for DEP 37 (Assert with optional message). | 2 * Support for DEP 37 (Assert with optional message). |
| 3 * Lexical support for DEP 40 (Interface libraries). This does not include any se
mantic checking to ensure that the | 3 * Lexical support for DEP 40 (Interface libraries). This does not include any se
mantic checking to ensure that the |
| 4 implementation libraries are compatible with the interface library. | 4 implementation libraries are compatible with the interface library. |
| 5 * Cleaned up the initialization of plugins. Clients are now required to initiali
ze plugins, possibly using the utility | 5 * Cleaned up the initialization of plugins. Clients are now required to initiali
ze plugins, possibly using the utility |
| 6 method AnalysisEngine.processRequiredPlugins(). | 6 method AnalysisEngine.processRequiredPlugins(). |
| 7 * Removed the old task model and code that supported it. None of the removed cod
e was intended to be public API, but | 7 * Removed the old task model and code that supported it. None of the removed cod
e was intended to be public API, but |
| 8 might be in use anyway. | 8 might be in use anyway. |
| 9 * Removed previously deprecated API's (marked with the @deprecated annotation). |
| 9 | 10 |
| 10 ## 0.26.3 | 11 ## 0.26.3 |
| 11 * (Internal) Support for `_embedder.yaml` discovery and processing. | 12 * (Internal) Support for `_embedder.yaml` discovery and processing. |
| 12 | 13 |
| 13 ## 0.26.2 | 14 ## 0.26.2 |
| 14 * Add code generation utilities for use in both analyzer and analysis server. | 15 * Add code generation utilities for use in both analyzer and analysis server. |
| 15 | 16 |
| 16 ## 0.26.1+17 | 17 ## 0.26.1+17 |
| 17 * (Internal) Introduced context configuration logic (`configureContext()` extrac
ted from server). | 18 * (Internal) Introduced context configuration logic (`configureContext()` extrac
ted from server). |
| 18 | 19 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 ## 0.22.0 | 122 ## 0.22.0 |
| 122 | 123 |
| 123 New API: | 124 New API: |
| 124 | 125 |
| 125 * `Source.uri` added. | 126 * `Source.uri` added. |
| 126 | 127 |
| 127 Breaking changes: | 128 Breaking changes: |
| 128 | 129 |
| 129 * `DartSdk.fromEncoding` replaced with `fromFileUri`. | 130 * `DartSdk.fromEncoding` replaced with `fromFileUri`. |
| 130 * `Source.resolveRelative` replaced with `resolveRelativeUri`. | 131 * `Source.resolveRelative` replaced with `resolveRelativeUri`. |
| OLD | NEW |