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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/vmservice/server.dart » ('j') | runtime/bin/vmservice/server.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« 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