OLD | NEW |
---|---|
1 ## 1.21.0 | 1 ## 1.21.0 |
2 | 2 |
3 ### Language | 3 ### Language |
4 | 4 |
5 * Allow `=` as well as `:` as separator for named parameter default values. | 5 * Allow `=` as well as `:` as separator for named parameter default values. |
6 | 6 |
7 ### Service protocol changes | |
kevmoo
2016/10/19 22:26:56
Thanks!
| |
8 | |
9 * Accessing the service protocol now requires prefixing paths with an | |
10 authentication token that can be scrapped from standard output. | |
11 | |
12 ``` | |
13 Old base url: | |
14 | |
15 Observatory listening on http://127.0.0.1:54804/ | |
16 | |
17 New base url: | |
18 | |
19 Observatory listening on http://127.0.0.1:54804/<token>/ | |
20 | |
21 For example: | |
22 | |
23 Observatory listening on http://127.0.0.1:54804/PTwjm8Ii8qg=/ | |
24 ``` | |
25 | |
26 * The service protocol http server can now be controlled from the | |
kevmoo
2016/10/19 22:26:56
Please add this under new `Core library changes` s
| |
27 `dart:developer` library. | |
28 | |
7 ## 1.20.1 - 2016-10-13 | 29 ## 1.20.1 - 2016-10-13 |
8 | 30 |
9 Patch release, resolves one issue: | 31 Patch release, resolves one issue: |
10 | 32 |
11 * Dartium: Fixes a bug that caused crashes. No issue filed | 33 * Dartium: Fixes a bug that caused crashes. No issue filed |
12 | 34 |
13 ## 1.20.0 - 2016-10-11 | 35 ## 1.20.0 - 2016-10-11 |
14 | 36 |
15 ### Dart VM | 37 ### Dart VM |
16 | 38 |
(...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1341 they will keep the Dart process alive until they time out. This fixes the | 1363 they will keep the Dart process alive until they time out. This fixes the |
1342 handling of persistent connections. Previously, the client would shut down | 1364 handling of persistent connections. Previously, the client would shut down |
1343 immediately after a request. | 1365 immediately after a request. |
1344 | 1366 |
1345 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 1367 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
1346 default. The new `autoCompress` property can be set to `true` to re-enable | 1368 default. The new `autoCompress` property can be set to `true` to re-enable |
1347 compression. | 1369 compression. |
1348 | 1370 |
1349 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 1371 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
1350 which controls how it resolves `package:` URIs. | 1372 which controls how it resolves `package:` URIs. |
OLD | NEW |