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

Side by Side Diff: CHANGELOG.md

Issue 1573163002: Update changelog with patch release notes (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Rebase Created 4 years, 11 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.14.0 1 ## 1.14.0
2 2
3 ### Core library changes 3 ### Core library changes
4 * `dart:async` 4 * `dart:async`
5 * Added `Future.any` static method. 5 * Added `Future.any` static method.
6 * Added `Stream.fromFutures` constructor. 6 * Added `Stream.fromFutures` constructor.
7 7
8 * `dart:convert` 8 * `dart:convert`
9 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. 9 * `Base64Decoder.convert` now takes optional `start` and `end` parameters.
10 10
11 * `dart:core` 11 * `dart:core`
12 * Added `current` getter to `StackTrace` class. 12 * Added `current` getter to `StackTrace` class.
13 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the 13 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the
14 return type. 14 return type.
15 * Added `growable` parameter to `List.filled` constructor. 15 * Added `growable` parameter to `List.filled` constructor.
16 * Added microsecond support to `DateTime`: `DateTime.microsecond`, 16 * Added microsecond support to `DateTime`: `DateTime.microsecond`,
17 `DateTime.microsecondsSinceEpoch`, and 17 `DateTime.microsecondsSinceEpoch`, and
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 deps`, `pub serve`, and `pub build`) now do additional verification. They 61 deps`, `pub serve`, and `pub build`) now do additional verification. They
62 ensure that any path dependencies' pubspecs haven't been changed, and they 62 ensure that any path dependencies' pubspecs haven't been changed, and they
63 ensure that the current SDK version is compatible with all dependencies. 63 ensure that the current SDK version is compatible with all dependencies.
64 64
65 * Fixed a crashing bug when using `pub global run` on a global script that 65 * Fixed a crashing bug when using `pub global run` on a global script that
66 didn't exist. 66 didn't exist.
67 67
68 * Fixed a crashing bug when a pubspec contains a dependency without a source 68 * Fixed a crashing bug when a pubspec contains a dependency without a source
69 declared. 69 declared.
70 70
71 ## 1.13.2 - 2016-01-06
72
73 Patch release, resolves one issues:
74
75 * dart2js: Stack traces are not captured correctly (SDK issue [25235]
76 (https://github.com/dart-lang/sdk/issues/25235))
77
78 ## 1.13.1 - 2015-12-17
79
80 Patch release, resolves three issues:
81
82 * VM type propagation fix: Resolves a potential crash in the Dart VM (SDK commit
83 [dff13be]
84 (https://github.com/dart-lang/sdk/commit/dff13bef8de104d33b04820136da2d80f3c835d 7))
85
86 * dart2js crash fix: Resolves a crash in pkg/js and dart2js (SDK issue [24974]
87 (https://github.com/dart-lang/sdk/issues/24974))
88
89 * Pub get crash on ARM: Fixes a crash triggered when running 'pub get' on ARM
90 processors such as those on a Raspberry Pi (SDK issue [24855]
91 (https://github.com/dart-lang/sdk/issues/24855))
92
71 ## 1.13.0 - 2015-11-18 93 ## 1.13.0 - 2015-11-18
72 94
73 ### Core library changes 95 ### Core library changes
74 * `dart:async` 96 * `dart:async`
75 * `StreamController` added getters for `onListen`, `onPause`, and `onResume` 97 * `StreamController` added getters for `onListen`, `onPause`, and `onResume`
76 with the corresponding new `typedef void ControllerCallback()`. 98 with the corresponding new `typedef void ControllerCallback()`.
77 * `StreamController` added a getter for `onCancel` with the corresponding 99 * `StreamController` added a getter for `onCancel` with the corresponding
78 new `typedef ControllerCancelCallback()`; 100 new `typedef ControllerCancelCallback()`;
79 * `StreamTransformer` instances created with `fromHandlers` with no 101 * `StreamTransformer` instances created with `fromHandlers` with no
80 `handleError` callback now forward stack traces along with errors to the 102 `handleError` callback now forward stack traces along with errors to the
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 they will keep the Dart process alive until they time out. This fixes the 735 they will keep the Dart process alive until they time out. This fixes the
714 handling of persistent connections. Previously, the client would shut down 736 handling of persistent connections. Previously, the client would shut down
715 immediately after a request. 737 immediately after a request.
716 738
717 * **Breaking change:** `HttpServer` no longer compresses all traffic by 739 * **Breaking change:** `HttpServer` no longer compresses all traffic by
718 default. The new `autoCompress` property can be set to `true` to re-enable 740 default. The new `autoCompress` property can be set to `true` to re-enable
719 compression. 741 compression.
720 742
721 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 743 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
722 which controls how it resolves `package:` URIs. 744 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698