Skip to content

Commit 64df8d2

Browse files
build(deps): bump github.com/hashicorp/terraform-json from 0.21.0 to 0.22.0 (#458)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Radek Simko <[email protected]>
1 parent af05782 commit 64df8d2

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/google/go-cmp v0.6.0
77
github.com/hashicorp/go-version v1.6.0
88
github.com/hashicorp/hc-install v0.6.4
9-
github.com/hashicorp/terraform-json v0.21.0
9+
github.com/hashicorp/terraform-json v0.22.0
1010
github.com/zclconf/go-cty v1.14.4
1111
github.com/zclconf/go-cty-debug v0.0.0-20191215020915-b22d67c1ba0b
1212
)

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mO
4040
github.com/hashicorp/go-version v1.6.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
4141
github.com/hashicorp/hc-install v0.6.4 h1:QLqlM56/+SIIGvGcfFiwMY3z5WGXT066suo/v9Km8e0=
4242
github.com/hashicorp/hc-install v0.6.4/go.mod h1:05LWLy8TD842OtgcfBbOT0WMoInBMUSHjmDx10zuBIA=
43-
github.com/hashicorp/terraform-json v0.21.0 h1:9NQxbLNqPbEMze+S6+YluEdXgJmhQykRyRNd+zTI05U=
44-
github.com/hashicorp/terraform-json v0.21.0/go.mod h1:qdeBs11ovMzo5puhrRibdD6d2Dq6TyE/28JiU4tIQxk=
43+
github.com/hashicorp/terraform-json v0.22.0 h1:cTZejr05cbovFmQ05MeJ43CPrn/+1hUBG7KDTcRwBc0=
44+
github.com/hashicorp/terraform-json v0.22.0/go.mod h1:JbWSQCLFSXFFhg42T7l9iJwdGXBYV8fmmD6o/ML4p3A=
4545
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A=
4646
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo=
4747
github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4=

tfexec/internal/e2etest/show_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -1080,6 +1080,7 @@ func TestShowPlanFileBigInt(t *testing.T) {
10801080
cmpopts.IgnoreFields(tfjson.Config{}, "ProviderConfigs"),
10811081
cmpopts.IgnoreFields(tfjson.Plan{}, "FormatVersion"),
10821082
cmpopts.IgnoreFields(tfjson.Plan{}, "Timestamp"),
1083+
cmpopts.IgnoreFields(tfjson.Plan{}, "Complete"),
10831084
}
10841085

10851086
if diff := diffPlan(expected, actual, opts...); diff != "" {
@@ -1204,6 +1205,7 @@ func TestShowPlanFileFloat64(t *testing.T) {
12041205
cmpopts.IgnoreFields(tfjson.Config{}, "ProviderConfigs"),
12051206
cmpopts.IgnoreFields(tfjson.Plan{}, "FormatVersion"),
12061207
cmpopts.IgnoreFields(tfjson.Plan{}, "Timestamp"),
1208+
cmpopts.IgnoreFields(tfjson.Plan{}, "Complete"),
12071209
}
12081210

12091211
if diff := diffPlan(expected, actual, opts...); diff != "" {

0 commit comments

Comments
 (0)