OLD | NEW |
| 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 |
| 16 * A `yamlWarningCallback` field is exposed. This field can be used to customize |
| 17 how YAML warnings are displayed. |
| 18 |
1 ## 2.0.1+1 | 19 ## 2.0.1+1 |
2 | 20 |
3 * Fix an import in a test. | 21 * Fix an import in a test. |
4 | 22 |
5 * Widen the version constraint on the `collection` package. | 23 * Widen the version constraint on the `collection` package. |
6 | 24 |
7 ## 2.0.1 | 25 ## 2.0.1 |
8 | 26 |
9 * Fix a few lingering references to the old `Span` class in documentation and | 27 * Fix a few lingering references to the old `Span` class in documentation and |
10 tests. | 28 tests. |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 | 78 |
61 ## 0.9.0+2 | 79 ## 0.9.0+2 |
62 | 80 |
63 * Ensure that maps are order-independent when used as map keys. | 81 * Ensure that maps are order-independent when used as map keys. |
64 | 82 |
65 ## 0.9.0+1 | 83 ## 0.9.0+1 |
66 | 84 |
67 * The `YamlMap` class is deprecated. In a future version, maps returned by | 85 * 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 | 86 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality |
69 operation. | 87 operation. |
OLD | NEW |