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

Side by Side Diff: CHANGELOG.md

Issue 1215013003: Bring in the latest pub. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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 | DEPS » ('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
11 ### Tool changes
12
13 * Pub
14
15 * Pub will now generate a ".packages" file in addition to the "packages"
16 directory when running `pub get` or similar operations, per the
17 [package spec proposal][]. Pub now has a `--no-package-symlinks` flag that
18 will stop "packages" directories from being generated at all.
19
20 * When `pub publish` finds a violation, it will emit a non-zero exit code.
21
22 [package spec proposal]: https://github.com/lrhn/dep-pkgspec
23
24 ## 1.11.1
25
26 ### Tool changes
27
28 * Pub will always load Dart SDK assets from the SDK whose `pub` executable was
29 run, even if a `DART_SDK` environment variable is set.
30
11 ## 1.11.0 - 2015-06-25 31 ## 1.11.0 - 2015-06-25
12 32
13 ### Core library changes 33 ### Core library changes
14 34
15 * `dart:core` 35 * `dart:core`
16 * `Iterable` added an `empty` constructor. 36 * `Iterable` added an `empty` constructor.
17 [dcf0286](https://github.com/dart-lang/sdk/commit/dcf0286f5385187a68ce9e6631 8d3bf19abf454b) 37 [dcf0286](https://github.com/dart-lang/sdk/commit/dcf0286f5385187a68ce9e6631 8d3bf19abf454b)
18 * `List` added an `unmodifiable` constructor. 38 * `List` added an `unmodifiable` constructor.
19 [r45334](https://code.google.com/p/dart/source/detail?r=45334) 39 [r45334](https://code.google.com/p/dart/source/detail?r=45334)
20 * `Map` added an `unmodifiable` constructor. 40 * `Map` added an `unmodifiable` constructor.
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 they will keep the Dart process alive until they time out. This fixes the 362 they will keep the Dart process alive until they time out. This fixes the
343 handling of persistent connections. Previously, the client would shut down 363 handling of persistent connections. Previously, the client would shut down
344 immediately after a request. 364 immediately after a request.
345 365
346 * **Breaking change:** `HttpServer` no longer compresses all traffic by 366 * **Breaking change:** `HttpServer` no longer compresses all traffic by
347 default. The new `autoCompress` property can be set to `true` to re-enable 367 default. The new `autoCompress` property can be set to `true` to re-enable
348 compression. 368 compression.
349 369
350 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 370 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
351 which controls how it resolves `package:` URIs. 371 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698