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

Side by Side Diff: CHANGELOG.md

Issue 1234163002: Fix a WebSocket crash. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Code review changes 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 | sdk/lib/io/websocket_impl.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:html` 5 * `dart:html`
6 * `NodeTreeSanitizer` added the `const trusted` field. It can be used 6 * `NodeTreeSanitizer` added the `const trusted` field. It can be used
7 instead of defining a `NullTreeSanitizer` class when calling 7 instead of defining a `NullTreeSanitizer` class when calling
8 `setInnerHtml` or other methods that create DOM from text. It is 8 `setInnerHtml` or other methods that create DOM from text. It is
9 also more efficient, skipping the creation of a `DocumentFragment`. 9 also more efficient, skipping the creation of a `DocumentFragment`.
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 * Barback integration 48 * Barback integration
49 49
50 * A crashing bug involving transformers that only apply to non-public code 50 * A crashing bug involving transformers that only apply to non-public code
51 has been fixed. 51 has been fixed.
52 52
53 * A stack overflow caused by a transformer being run multiple times on the 53 * A stack overflow caused by a transformer being run multiple times on the
54 package that defines it has been fixed. 54 package that defines it has been fixed.
55 55
56 [package spec proposal]: https://github.com/lrhn/dep-pkgspec 56 [package spec proposal]: https://github.com/lrhn/dep-pkgspec
57 57
58 ## 1.11.2
59
60 ### Core library changes
61
62 * Fix a bug where `WebSocket.close()` would crash if called after
63 `WebSocket.cancel()`.
64
58 ## 1.11.1 65 ## 1.11.1
59 66
60 ### Tool changes 67 ### Tool changes
61 68
62 * Pub will always load Dart SDK assets from the SDK whose `pub` executable was 69 * Pub will always load Dart SDK assets from the SDK whose `pub` executable was
63 run, even if a `DART_SDK` environment variable is set. 70 run, even if a `DART_SDK` environment variable is set.
64 71
65 ## 1.11.0 - 2015-06-25 72 ## 1.11.0 - 2015-06-25
66 73
67 ### Core library changes 74 ### Core library changes
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 they will keep the Dart process alive until they time out. This fixes the 405 they will keep the Dart process alive until they time out. This fixes the
399 handling of persistent connections. Previously, the client would shut down 406 handling of persistent connections. Previously, the client would shut down
400 immediately after a request. 407 immediately after a request.
401 408
402 * **Breaking change:** `HttpServer` no longer compresses all traffic by 409 * **Breaking change:** `HttpServer` no longer compresses all traffic by
403 default. The new `autoCompress` property can be set to `true` to re-enable 410 default. The new `autoCompress` property can be set to `true` to re-enable
404 compression. 411 compression.
405 412
406 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 413 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
407 which controls how it resolves `package:` URIs. 414 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/io/websocket_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698