From 819c383cfb30521009764876a9b6989c24b8e710 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Wed, 18 Nov 2020 14:29:01 -0800 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2e4aa2..48ece99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # HCL Changelog -## v2.8.0 (Unreleased) +## v2.7.2 (Unreleased) + +### Bugs Fixed + +* 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)) ## v2.7.1 (November 18, 2020)