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

Side by Side Diff: CHANGELOG.md

Issue 1255003003: Make VM service id handling JSON-RPC 2 compliant. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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/bin/vmservice/server.dart » ('j') | runtime/vm/json_stream.h » ('J')
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 * The service protocol now includes a `"jsonrpc"` property in its responses, as
82 opposed to `"json-rpc"`.
83
84 * The service protocol now properly handles requests with non-string ids.
85 Numeric ids are no longer converted to strings, and null ids now don't produce
86 a response.
87
79 ## 1.11.2 88 ## 1.11.2
80 89
81 ### Core library changes 90 ### Core library changes
82 91
83 * Fix a bug where `WebSocket.close()` would crash if called after 92 * Fix a bug where `WebSocket.close()` would crash if called after
84 `WebSocket.cancel()`. 93 `WebSocket.cancel()`.
85 94
86 ## 1.11.1 95 ## 1.11.1
87 96
88 ### Tool changes 97 ### 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 435 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 436 handling of persistent connections. Previously, the client would shut down
428 immediately after a request. 437 immediately after a request.
429 438
430 * **Breaking change:** `HttpServer` no longer compresses all traffic by 439 * **Breaking change:** `HttpServer` no longer compresses all traffic by
431 default. The new `autoCompress` property can be set to `true` to re-enable 440 default. The new `autoCompress` property can be set to `true` to re-enable
432 compression. 441 compression.
433 442
434 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 443 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
435 which controls how it resolves `package:` URIs. 444 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/server.dart » ('j') | runtime/vm/json_stream.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698