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

Side by Side Diff: CHANGELOG.md

Issue 2438613002: Provide an API to dart:developer to control the web server hosting the Service Protocol (Closed)
Patch Set: updated CHANGELOG.md Created 4 years, 2 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/bin/vmservice/server.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
8
9 * Accessing the service protocol now requires a randomly generated path
10 prefix to be used. This path prefix can be scraped from standard output
11 like the hostname and port are today.
12
13 ```
14 Old base url:
15
16 Observatory listening on http://127.0.0.1:54804/
17
18 New base url:
19
20 Observatory listening on http://127.0.0.1:54804/<token>/
21
22 For example:
23
24 Observatory listening on http://127.0.0.1:54804/PTwjm8Ii8qg=/
25
26 To connect over WebSocket you would use the following URI:
27
28 ws://127.0.0.1:54804/PTwjm8Ii8qg=/ws
29 ```
30
31 ### Core library changes
kevmoo 2016/10/20 17:21:55 Forgive me – put this section up below Language. T
Cutch 2016/10/20 23:31:51 Done.
32
33 * `dart:developer`
34 * The service protocol http server can now be controlled from Dart code.
35
7 ## 1.20.1 - 2016-10-13 36 ## 1.20.1 - 2016-10-13
8 37
9 Patch release, resolves one issue: 38 Patch release, resolves one issue:
10 39
11 * Dartium: Fixes a bug that caused crashes. No issue filed 40 * Dartium: Fixes a bug that caused crashes. No issue filed
12 41
13 ## 1.20.0 - 2016-10-11 42 ## 1.20.0 - 2016-10-11
14 43
15 ### Dart VM 44 ### Dart VM
16 45
(...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after
1341 they will keep the Dart process alive until they time out. This fixes the 1370 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 1371 handling of persistent connections. Previously, the client would shut down
1343 immediately after a request. 1372 immediately after a request.
1344 1373
1345 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1374 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1346 default. The new `autoCompress` property can be set to `true` to re-enable 1375 default. The new `autoCompress` property can be set to `true` to re-enable
1347 compression. 1376 compression.
1348 1377
1349 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1378 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1350 which controls how it resolves `package:` URIs. 1379 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/server.dart » ('j') | runtime/bin/vmservice/server.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698