Skip to content

Releases: hashicorp/hcl

v2.9.1

10 Mar 16:12
Compare
Choose a tag to compare

Bugs Fixed

  • hclsyntax: Fix panic for marked index value. (#451)

v2.8.2

06 Jan 14:43
Compare
Choose a tag to compare

Bugs Fixed

  • hclsyntax: Fix panic for marked collection splat. (#436)
  • hclsyntax: Fix panic for marked template loops. (#437)
  • hclsyntax: Fix for expression marked conditional.(#438)
  • hclsyntax: Mark objects with keys that are sensitive. (#440)

v2.8.1

17 Dec 17:53
56e58b6
Compare
Choose a tag to compare

Bugs Fixed

  • hclsyntax: Fix panic when expanding marked function arguments. (#429)
  • hclsyntax: Error when attempting to use a marked value as an object key. (#434)
  • hclsyntax: Error when attempting to use a marked value as an object key in expressions. (#433)

v2.8.0

07 Dec 19:37
3231752
Compare
Choose a tag to compare

Enhancements

  • hclsyntax: Expression grouping parentheses will now be reflected by an explicit node in the AST, whereas before they were only considered during parsing. (#426)

Bugs Fixed

  • hclwrite: The parser will now correctly include the ( and ) tokens when an expression is surrounded by parentheses. Previously it would incorrectly recognize those tokens as being extraneous tokens outside of the expression. (#426)
  • hclwrite: The formatter will now remove (rather than insert) spaces between the ! (unary boolean "not") operator and its subsequent operand. (#403)
  • hclsyntax: Unmark conditional values in expressions before checking their truthfulness (#427)

v2.7.2

30 Nov 16:23
f10222b
Compare
Choose a tag to compare

Bugs Fixed

  • gohcl: Fix panic when decoding into type containing value slices. (#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)
  • hclsyntax: Fix panic when traversing a list, tuple, or map with cty "marks" (#424)

v2.7.1

18 Nov 16:53
eadfd40
Compare
Choose a tag to compare

Bugs Fixed

  • hclwrite: Correctly handle blank quoted string block labels, instead of dropping them (#422)

v2.7.0

14 Oct 14:13
d56ed51
Compare
Choose a tag to compare

Enhancements

  • json: There is a new function ParseWithStartPos, which allows overriding the starting position for parsing in case the given JSON bytes are a fragment of a larger document, such as might happen when decoding with encoding/json into a json.RawMessage. (#389)
  • json: There is a new function ParseExpression, which allows parsing a JSON string directly in expression mode, whereas previously it was only possible to parse a JSON string in body mode. (#381)
  • hclwrite: Block type now supports SetType and SetLabels, allowing surgical changes to the type and labels of an existing block without having to reconstruct the entire block. (#340)

Bugs Fixed

  • hclsyntax: Fix confusing error message for bitwise OR operator (#380)
  • hclsyntax: Several bug fixes for using HCL with values containing cty "marks" (#404, #406, #407)

v2.6.0

04 Jun 21:40
350d663
Compare
Choose a tag to compare

Enhancements

  • hcldec: Add a new Spec, ValidateSpec, which allows custom validation of values at decode-time. (#387)

Bugs Fixed

  • hclsyntax: Fix panic with combination of sequences and null arguments (#386)
  • hclsyntax: Fix handling of unknown values and sequences (#386)

v2.5.1

14 May 13:34
148b442
Compare
Choose a tag to compare

Bugs Fixed

  • hclwrite: handle legacy dot access of numeric indexes. (#369)
  • hclwrite: Fix panic for dotted full splat (foo.*) (#374)

v2.5.0

06 May 17:32
b35ebdc
Compare
Choose a tag to compare

Enhancements

  • hclwrite: Generate multi-line objects and maps. (#372)