| OLD | NEW |
| 1 ## 1.1.1 |
| 2 |
| 3 * Fix broken type arguments that caused breakage on dart2js. |
| 4 |
| 5 * Fix an analyzer warning in `yaml_node_wrapper.dart`. |
| 6 |
| 1 ## 1.1.0 | 7 ## 1.1.0 |
| 2 | 8 |
| 3 * Add new publicly-accessible constructors for `YamlNode` subclasses. These | 9 * Add new publicly-accessible constructors for `YamlNode` subclasses. These |
| 4 constructors make it possible to use the same API to access non-YAML data as | 10 constructors make it possible to use the same API to access non-YAML data as |
| 5 YAML data. | 11 YAML data. |
| 6 | 12 |
| 7 * Make `YamlException` inherit from source_map's [`SpanFormatException`][]. This | 13 * Make `YamlException` inherit from source_map's [`SpanFormatException`][]. This |
| 8 improves the error formatting and allows callers access to source range | 14 improves the error formatting and allows callers access to source range |
| 9 information. | 15 information. |
| 10 | 16 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 41 |
| 36 ## 0.9.0+2 | 42 ## 0.9.0+2 |
| 37 | 43 |
| 38 * Ensure that maps are order-independent when used as map keys. | 44 * Ensure that maps are order-independent when used as map keys. |
| 39 | 45 |
| 40 ## 0.9.0+1 | 46 ## 0.9.0+1 |
| 41 | 47 |
| 42 * The `YamlMap` class is deprecated. In a future version, maps returned by | 48 * The `YamlMap` class is deprecated. In a future version, maps returned by |
| 43 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality | 49 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality |
| 44 operation. | 50 operation. |
| OLD | NEW |