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

Side by Side Diff: CHANGELOG.md

Issue 2724853002: Revert last 4 commits by lrn@ (Closed)
Patch Set: Created 3 years, 9 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 | pkg/analyzer/lib/src/dart/analysis/library_analyzer.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.23.0 1 ## 1.23.0
2 2
3 ### Language
4 * Allow using URI strings in `part of` declarations to refer to the
5 importing library.
6
7 ### Core library changes 3 ### Core library changes
8 * `dart:core`: Added `Uri.isScheme` function to check the scheme of a URI. 4 * `dart:core`: Added `Uri.isScheme` function to check the scheme of a URI.
9 Example: `uri.isScheme("http")`. Ignores case when comparing. 5 Example: `uri.isScheme("http")`. Ignores case when comparing.
10 * `dart:core`: Make `UriData.parse` validate its input better. 6 * `dart:core`: Make `UriData.parse` validate its input better.
11 If the data is base-64 encoded, the data is normalized wrt. 7 If the data is base-64 encoded, the data is normalized wrt.
12 alphabet and padding, and it contains invalid base-64 data, 8 alphabet and padding, and it contains invalid base-64 data,
13 parsing fails. Also normalizes non-base-64 data. 9 parsing fails. Also normalizes non-base-64 data.
14 * `dart:io`: Added functions `File.lastAccessed`, `File.lastAccessedSync`, 10 * `dart:io`: Added functions `File.lastAccessed`, `File.lastAccessedSync`,
15 `File.setLastModified`, `File.setLastModifiedSync`, `File.setLastAccessed`, 11 `File.setLastModified`, `File.setLastModifiedSync`, `File.setLastAccessed`,
16 and `File.setLastAccessedSync`. 12 and `File.setLastAccessedSync`.
(...skipping 1687 matching lines...) Expand 10 before | Expand all | Expand 10 after
1704 they will keep the Dart process alive until they time out. This fixes the 1700 they will keep the Dart process alive until they time out. This fixes the
1705 handling of persistent connections. Previously, the client would shut down 1701 handling of persistent connections. Previously, the client would shut down
1706 immediately after a request. 1702 immediately after a request.
1707 1703
1708 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1704 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1709 default. The new `autoCompress` property can be set to `true` to re-enable 1705 default. The new `autoCompress` property can be set to `true` to re-enable
1710 compression. 1706 compression.
1711 1707
1712 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1708 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1713 which controls how it resolves `package:` URIs. 1709 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/dart/analysis/library_analyzer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698