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

Side by Side Diff: pkg/yaml/CHANGELOG.md

Issue 689513002: Rewrite the pkg/yaml parser. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update string_scanner dependency. Created 6 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 ## 2.1.0
2
3 * Rewrite the parser for a 10x speed improvement.
4
5 * Support anchors and aliases (`&foo` and `*foo`).
6
7 * Support explicit tags (e.g. `!!str`). Note that user-defined tags are still
8 not fully supported.
9
10 * `%YAML` and `%TAG` directives are now parsed, although again user-defined tags
11 are not fully supported.
12
13 * `YamlScalar`, `YamlList`, and `YamlMap` now expose the styles in which they
14 were written (for example plain vs folded, block vs flow).
15
1 ## 2.0.1+1 16 ## 2.0.1+1
2 17
3 * Fix an import in a test. 18 * Fix an import in a test.
4 19
5 * Widen the version constraint on the `collection` package. 20 * Widen the version constraint on the `collection` package.
6 21
7 ## 2.0.1 22 ## 2.0.1
8 23
9 * Fix a few lingering references to the old `Span` class in documentation and 24 * Fix a few lingering references to the old `Span` class in documentation and
10 tests. 25 tests.
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 75
61 ## 0.9.0+2 76 ## 0.9.0+2
62 77
63 * Ensure that maps are order-independent when used as map keys. 78 * Ensure that maps are order-independent when used as map keys.
64 79
65 ## 0.9.0+1 80 ## 0.9.0+1
66 81
67 * The `YamlMap` class is deprecated. In a future version, maps returned by 82 * The `YamlMap` class is deprecated. In a future version, maps returned by
68 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality 83 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality
69 operation. 84 operation.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698