dart-sdk/CHANGELOG.md
Terry Lucas edca6169c1 Fixed a number of dart:html P1 issues.
- Fixed HTML API's with callback typedef to correctly convert Dart function to JS function.
- Expose HttpStatus from dart:html
- Expose DomName ondblclick and dblclickEvent for Angular analyzer.
- Fixed removeAll should be Iterable<Object> to match Set's removeAll not Iterable<E>.
- Fixed a number of DataTransferItem, Entry, FileEntry and DiretoryEntry returning NativeJavaScriptObject needed type registered in DDC.
- Added ability to allow local file access from Chrome browser added -local in ddb.

R=vsm@google.com

Fixes #30278
Fixes #35484
Fixes #34318
Fixes #35510

Change-Id: Ide8c04716c54045e837781d489562f27b694b109
Reviewed-on: https://dart-review.googlesource.com/c/89340
Commit-Queue: Terry Lucas <terry@google.com>
Reviewed-by: Vijay Menon <vsm@google.com>
Reviewed-by: Nate Bosch <nbosch@google.com>
2019-01-15 17:21:50 +00:00

126 KiB

2.1.1-dev.XX.0

(Add new changes here, and they will be copied to the change section for the next dev version)

Language

Core library changes

dart:core

  • Made DateTime.parse() also recognize , as a valid decimal separator when parsing from a string. (Issue 35576)
  • Fixed a number of 'dart:html' P1 bugs:

    • Fixed HTML API's with callback typedef to correctly convert Dart function to JS function.
    • HttpStatus constants exposed in dart:html
    • Expose DomName ondblclick and dblclickEvent for Angular analyzer.
    • Fixed removeAll on classes Set should be Iterable