Chromium Code Reviews| Index: CHANGELOG.md |
| diff --git a/CHANGELOG.md b/CHANGELOG.md |
| index f561166a5ab42cdea7e0a32ed95c2aec09f00a78..501cb3513b0c256efc1aceb51ac895d8ad69705a 100644 |
| --- a/CHANGELOG.md |
| +++ b/CHANGELOG.md |
| @@ -4,6 +4,35 @@ |
| * Allow `=` as well as `:` as separator for named parameter default values. |
| +### Service protocol changes |
| + |
| +* Accessing the service protocol now requires a randomly generated path |
| +prefix to be used. This path prefix can be scraped from standard output |
| +like the hostname and port are today. |
| + |
| +``` |
| +Old base url: |
| + |
| +Observatory listening on http://127.0.0.1:54804/ |
| + |
| +New base url: |
| + |
| +Observatory listening on http://127.0.0.1:54804/<token>/ |
| + |
| +For example: |
| + |
| +Observatory listening on http://127.0.0.1:54804/PTwjm8Ii8qg=/ |
| + |
| +To connect over WebSocket you would use the following URI: |
| + |
| +ws://127.0.0.1:54804/PTwjm8Ii8qg=/ws |
| +``` |
| + |
| +### 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.
|
| + |
| +* `dart:developer` |
| + * The service protocol http server can now be controlled from Dart code. |
| + |
| ## 1.20.1 - 2016-10-13 |
| Patch release, resolves one issue: |