From f10222b9d70d07da37db43d3f85423f70982a9d5 Mon Sep 17 00:00:00 2001 From: Alisdair McDiarmid Date: Mon, 30 Nov 2020 11:20:07 -0500 Subject: [PATCH] Update changelog for v2.7.2 release --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b604c3..12996af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,12 @@ # HCL Changelog -## v2.7.2 (Unreleased) +## v2.7.2 (November 30, 2020) ### Bugs Fixed * gohcl: Fix panic when decoding into type containing value slices. ([#335](https://github.com/hashicorp/hcl/pull/335)) * hclsyntax: The unusual expression `null[*]` was previously always returning an unknown value, even though the rules for `[*]` normally call for it to return an empty tuple when applied to a null. As well as being a surprising result, it was particularly problematic because it violated the rule that a calling application may assume that an expression result will always be known unless the application itself introduces unknown values via the evaluation context. `null[*]` will now produce an empty tuple. ([#416](https://github.com/hashicorp/hcl/pull/416)) +* hclsyntax: Fix panic when traversing a list, tuple, or map with cty "marks" ([#424](https://github.com/hashicorp/hcl/pull/424)) ## v2.7.1 (November 18, 2020)