This project is mirrored from https://:*****@github.com/hashicorp/terraform.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 04 Feb, 2019 1 commit
  2. 02 Feb, 2019 10 commits
  3. 01 Feb, 2019 14 commits
  4. 31 Jan, 2019 6 commits
    • Martin Atkins's avatar
      core: Use hcl.ApplyPath for ignore_changes and "requires replace" · a8f97a08
      Martin Atkins authored
      We were previously using cty.Path.Apply, which serves a similar purpose
      but implements the more restrictive traversal behaviors down at the cty
      layer. hcl.ApplyPath uses the same rules as HCL expressions and so ensures
      consistent behavior with normal user expressions.
      
      cty.Path.Apply also previously had a crashing bug (discussed in #20084)
      that was causing a panic here. That has now been fixed in cty, but since
      we're no longer using it here that's a moot point. The HCL traversing
      implementation has been fuzz-tested and unit tested a lot more thoroughly
      so should not run into the same crashers we saw with cty before.
      a8f97a08
    • Martin Atkins's avatar
      vendor: Upgrade both HCL2 and cty · c8d34b55
      Martin Atkins authored
      The cty change here fixes a panic situation when cty.Path.Apply is given
      a null value, making it now correctly return an error.
      
      However, the HCL2 change includes an alternative to cty.Path.Apply that
      uses HCL-level rules rather than cty-level rules, so the result behaves
      like an HCL expression would. Most uses of cty.Path.Apply ought to use
      hcl.ApplyPath instead, to ensure that the behavior is consistent with what
      users expect in the main language.
      c8d34b55
    • Radek Simko's avatar
      Merge pull request #20165 from hashicorp/vendor-bump-deps · a9aee4ba
      Radek Simko authored
      vendor: github.com/hashicorp/terraform-config-inspect@latest
      a9aee4ba
    • Radek Simko's avatar
      command: Fix TestUiHookPostApply_emptyState · 101454a6
      Radek Simko authored
      101454a6
    • Radek Simko's avatar
    • Martin Atkins's avatar
      Switch to Go 1.11.5 · 1a8ddc26
      Martin Atkins authored
      An earlier commit incorrectly updated some versions in go.mod without also
      updating the vendor tree, so this also rolls those back to where they used
      to be so that we can roll them forward carefully and make sure the tests
      actually pass. (If we just accept these new versions as specified the
      tests do not pass, so some work is required to fix those regressions.)
      1a8ddc26
  5. 30 Jan, 2019 9 commits