Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: CHANGELOG.md

Issue 1258733004: Include a "jsonrpc" property in all VM service responses. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: add for error Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | runtime/vm/service/message.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.12.0 1 ## 1.12.0
2 2
3 ### Core library changes 3 ### Core library changes
4 4
5 * `dart:async` 5 * `dart:async`
6 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` 6 * `StreamController` added setters for the `onListen`, `onPause`, `onResume`
7 and `onCancel` callbacks. 7 and `onCancel` callbacks.
8 8
9 * `dart:convert` 9 * `dart:convert`
10 * `LineSplitter` added a `split` static method returning an `Iterable`. 10 * `LineSplitter` added a `split` static method returning an `Iterable`.
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 has been fixed. 69 has been fixed.
70 70
71 * A stack overflow caused by a transformer being run multiple times on the 71 * A stack overflow caused by a transformer being run multiple times on the
72 package that defines it has been fixed. 72 package that defines it has been fixed.
73 73
74 * A transformer that tries to read a non-existent asset in another package 74 * A transformer that tries to read a non-existent asset in another package
75 will now be re-run if that asset is later created. 75 will now be re-run if that asset is later created.
76 76
77 [package spec proposal]: https://github.com/lrhn/dep-pkgspec 77 [package spec proposal]: https://github.com/lrhn/dep-pkgspec
78 78
79 ### VM Service Protocol Changes
80
81 * Some RPCs that didn't include a `"jsonrpc"` property in their responses now
82 include one.
83
79 ## 1.11.2 84 ## 1.11.2
80 85
81 ### Core library changes 86 ### Core library changes
82 87
83 * Fix a bug where `WebSocket.close()` would crash if called after 88 * Fix a bug where `WebSocket.close()` would crash if called after
84 `WebSocket.cancel()`. 89 `WebSocket.cancel()`.
85 90
86 ## 1.11.1 91 ## 1.11.1
87 92
88 ### Tool changes 93 ### Tool changes
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 they will keep the Dart process alive until they time out. This fixes the 431 they will keep the Dart process alive until they time out. This fixes the
427 handling of persistent connections. Previously, the client would shut down 432 handling of persistent connections. Previously, the client would shut down
428 immediately after a request. 433 immediately after a request.
429 434
430 * **Breaking change:** `HttpServer` no longer compresses all traffic by 435 * **Breaking change:** `HttpServer` no longer compresses all traffic by
431 default. The new `autoCompress` property can be set to `true` to re-enable 436 default. The new `autoCompress` property can be set to `true` to re-enable
432 compression. 437 compression.
433 438
434 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 439 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
435 which controls how it resolves `package:` URIs. 440 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/service/message.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698