Index: pkg/yaml/CHANGELOG.md |
diff --git a/pkg/yaml/CHANGELOG.md b/pkg/yaml/CHANGELOG.md |
index 68af5f55785bc6d82b9c90f4f00692ba27a17910..f454255b612ad9194d9caf13241b4646449edf78 100644 |
--- a/pkg/yaml/CHANGELOG.md |
+++ b/pkg/yaml/CHANGELOG.md |
@@ -1,3 +1,21 @@ |
+## 2.1.0 |
+ |
+* Rewrite the parser for a 10x speed improvement. |
+ |
+* Support anchors and aliases (`&foo` and `*foo`). |
+ |
+* Support explicit tags (e.g. `!!str`). Note that user-defined tags are still |
+ not fully supported. |
+ |
+* `%YAML` and `%TAG` directives are now parsed, although again user-defined tags |
+ are not fully supported. |
+ |
+* `YamlScalar`, `YamlList`, and `YamlMap` now expose the styles in which they |
+ were written (for example plain vs folded, block vs flow). |
+ |
+* A `yamlWarningCallback` field is exposed. This field can be used to customize |
+ how YAML warnings are displayed. |
+ |
## 2.0.1+1 |
* Fix an import in a test. |