OLD | NEW |
| 1 ## 1.24.0 |
| 2 |
| 3 ### Language |
| 4 |
| 5 ### Core library changes |
| 6 |
| 7 ### Dart VM |
| 8 |
| 9 ### Strong Mode |
| 10 |
| 11 ### Tool Changes |
| 12 |
1 ## 1.23.0 | 13 ## 1.23.0 |
2 | 14 |
3 ### Language | 15 ### Language |
4 * Allow using URI strings in `part of` declarations to refer to the | 16 * Allow using URI strings in `part of` declarations to refer to the |
5 importing library. | 17 importing library. |
6 A library part now can declare its library either as: | 18 A library part now can declare its library either as: |
7 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`. | 19 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`. |
8 This allows libraries with no library declarations (and therefore no name) | 20 This allows libraries with no library declarations (and therefore no name) |
9 to have parts, and it allows tools to easily find the library of a part file. | 21 to have parts, and it allows tools to easily find the library of a part file. |
10 | 22 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 * dartfmt | 140 * dartfmt |
129 * Support new generic function typedef syntax. | 141 * Support new generic function typedef syntax. |
130 * Make the precedence of cascades more visible. | 142 * Make the precedence of cascades more visible. |
131 * Fix a couple of places where spurious newlines were inserted. | 143 * Fix a couple of places where spurious newlines were inserted. |
132 * Correctly report unchanged formatting when reading from stdin. | 144 * Correctly report unchanged formatting when reading from stdin. |
133 * Ensure space between `-` and `--`. Code that does this is pathological, but | 145 * Ensure space between `-` and `--`. Code that does this is pathological, but |
134 it technically meant dartfmt could change the semantics of the code. | 146 it technically meant dartfmt could change the semantics of the code. |
135 * Preserve a blank line between enum cases. | 147 * Preserve a blank line between enum cases. |
136 * Other small formatting tweaks. | 148 * Other small formatting tweaks. |
137 | 149 |
138 ## 1.22.0 | 150 ## 1.22.0 - 2017-02-14 |
139 | 151 |
140 ### Language | 152 ### Language |
141 | 153 |
142 * Breaking change: | 154 * Breaking change: |
143 ['Generalized tear-offs'](https://github.com/gbracha/generalizedTearOffs/blo
b/master/proposal.md) | 155 ['Generalized tear-offs'](https://github.com/gbracha/generalizedTearOffs/blo
b/master/proposal.md) |
144 are no longer supported, and will cause errors. We updated the language spec | 156 are no longer supported, and will cause errors. We updated the language spec |
145 and added warnings in 1.21, and are now taking the last step to fully | 157 and added warnings in 1.21, and are now taking the last step to fully |
146 de-support them. They were previously only supported in the VM, and there | 158 de-support them. They were previously only supported in the VM, and there |
147 are almost no known uses of them in the wild. | 159 are almost no known uses of them in the wild. |
148 | 160 |
(...skipping 1653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1802 they will keep the Dart process alive until they time out. This fixes the | 1814 they will keep the Dart process alive until they time out. This fixes the |
1803 handling of persistent connections. Previously, the client would shut down | 1815 handling of persistent connections. Previously, the client would shut down |
1804 immediately after a request. | 1816 immediately after a request. |
1805 | 1817 |
1806 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1818 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
1807 default. The new `autoCompress` property can be set to `true` to re-enable | 1819 default. The new `autoCompress` property can be set to `true` to re-enable |
1808 compression. | 1820 compression. |
1809 | 1821 |
1810 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1822 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
1811 which controls how it resolves `package:` URIs. | 1823 which controls how it resolves `package:` URIs. |
OLD | NEW |