Skip to content

Commit 3f083ca

Browse files
build(deps): bump the terraform-plugin group with 2 updates (#305)
* build(deps): bump the terraform-plugin group with 2 updates Bumps the terraform-plugin group with 2 updates: [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) and [github.com/hashicorp/terraform-plugin-go](https://github.com/hashicorp/terraform-plugin-go). Updates `github.com/hashicorp/terraform-plugin-framework` from 1.16.0-beta.1 to 1.16.0 - [Release notes](https://github.com/hashicorp/terraform-plugin-framework/releases) - [Changelog](https://github.com/hashicorp/terraform-plugin-framework/blob/main/CHANGELOG.md) - [Commits](hashicorp/terraform-plugin-framework@v1.16.0-beta.1...v1.16.0) Updates `github.com/hashicorp/terraform-plugin-go` from 0.29.0-beta.1 to 0.29.0 - [Release notes](https://github.com/hashicorp/terraform-plugin-go/releases) - [Changelog](https://github.com/hashicorp/terraform-plugin-go/blob/main/CHANGELOG.md) - [Commits](hashicorp/terraform-plugin-go@v0.29.0-beta.1...v0.29.0) --- updated-dependencies: - dependency-name: github.com/hashicorp/terraform-plugin-framework dependency-version: 1.16.0 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: terraform-plugin - dependency-name: github.com/hashicorp/terraform-plugin-go dependency-version: 0.29.0 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: terraform-plugin ... Signed-off-by: dependabot[bot] <[email protected]> * Update `action.UnlinkedSchema` to `action.Schema` --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Selena Goods <[email protected]>
1 parent af35c54 commit 3f083ca

File tree

9 files changed

+44
-37
lines changed

9 files changed

+44
-37
lines changed

actionvalidator/all_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func TestAllValidatorValidateAction(t *testing.T) {
4545
},
4646
req: action.ValidateConfigRequest{
4747
Config: tfsdk.Config{
48-
Schema: schema.UnlinkedSchema{
48+
Schema: schema.Schema{
4949
Attributes: map[string]schema.Attribute{
5050
"test1": schema.StringAttribute{
5151
Optional: true,
@@ -105,7 +105,7 @@ func TestAllValidatorValidateAction(t *testing.T) {
105105
},
106106
req: action.ValidateConfigRequest{
107107
Config: tfsdk.Config{
108-
Schema: schema.UnlinkedSchema{
108+
Schema: schema.Schema{
109109
Attributes: map[string]schema.Attribute{
110110
"test1": schema.StringAttribute{
111111
Optional: true,

actionvalidator/any_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func TestAnyValidatorValidateAction(t *testing.T) {
3939
},
4040
req: action.ValidateConfigRequest{
4141
Config: tfsdk.Config{
42-
Schema: schema.UnlinkedSchema{
42+
Schema: schema.Schema{
4343
Attributes: map[string]schema.Attribute{
4444
"test1": schema.StringAttribute{
4545
Optional: true,
@@ -88,7 +88,7 @@ func TestAnyValidatorValidateAction(t *testing.T) {
8888
},
8989
req: action.ValidateConfigRequest{
9090
Config: tfsdk.Config{
91-
Schema: schema.UnlinkedSchema{
91+
Schema: schema.Schema{
9292
Attributes: map[string]schema.Attribute{
9393
"test1": schema.StringAttribute{
9494
Optional: true,

actionvalidator/any_with_all_warnings_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func TestAnyWithAllWarningsValidatorValidateAction(t *testing.T) {
4040
},
4141
req: action.ValidateConfigRequest{
4242
Config: tfsdk.Config{
43-
Schema: schema.UnlinkedSchema{
43+
Schema: schema.Schema{
4444
Attributes: map[string]schema.Attribute{
4545
"test1": schema.StringAttribute{
4646
Optional: true,
@@ -95,7 +95,7 @@ func TestAnyWithAllWarningsValidatorValidateAction(t *testing.T) {
9595
},
9696
req: action.ValidateConfigRequest{
9797
Config: tfsdk.Config{
98-
Schema: schema.UnlinkedSchema{
98+
Schema: schema.Schema{
9999
Attributes: map[string]schema.Attribute{
100100
"test1": schema.StringAttribute{
101101
Optional: true,
@@ -149,7 +149,7 @@ func TestAnyWithAllWarningsValidatorValidateAction(t *testing.T) {
149149
},
150150
req: action.ValidateConfigRequest{
151151
Config: tfsdk.Config{
152-
Schema: schema.UnlinkedSchema{
152+
Schema: schema.Schema{
153153
Attributes: map[string]schema.Attribute{
154154
"test1": schema.StringAttribute{
155155
Optional: true,

actionvalidator/at_least_one_of_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func TestAtLeastOneOf(t *testing.T) {
3232
},
3333
req: action.ValidateConfigRequest{
3434
Config: tfsdk.Config{
35-
Schema: schema.UnlinkedSchema{
35+
Schema: schema.Schema{
3636
Attributes: map[string]schema.Attribute{
3737
"test": schema.StringAttribute{
3838
Optional: true,
@@ -65,7 +65,7 @@ func TestAtLeastOneOf(t *testing.T) {
6565
},
6666
req: action.ValidateConfigRequest{
6767
Config: tfsdk.Config{
68-
Schema: schema.UnlinkedSchema{
68+
Schema: schema.Schema{
6969
Attributes: map[string]schema.Attribute{
7070
"test1": schema.StringAttribute{
7171
Optional: true,

actionvalidator/conflicting_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func TestConflicting(t *testing.T) {
3232
},
3333
req: action.ValidateConfigRequest{
3434
Config: tfsdk.Config{
35-
Schema: schema.UnlinkedSchema{
35+
Schema: schema.Schema{
3636
Attributes: map[string]schema.Attribute{
3737
"test": schema.StringAttribute{
3838
Optional: true,
@@ -65,7 +65,7 @@ func TestConflicting(t *testing.T) {
6565
},
6666
req: action.ValidateConfigRequest{
6767
Config: tfsdk.Config{
68-
Schema: schema.UnlinkedSchema{
68+
Schema: schema.Schema{
6969
Attributes: map[string]schema.Attribute{
7070
"test1": schema.StringAttribute{
7171
Optional: true,

actionvalidator/exactly_one_of_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func TestExactlyOneOf(t *testing.T) {
3232
},
3333
req: action.ValidateConfigRequest{
3434
Config: tfsdk.Config{
35-
Schema: schema.UnlinkedSchema{
35+
Schema: schema.Schema{
3636
Attributes: map[string]schema.Attribute{
3737
"test": schema.StringAttribute{
3838
Optional: true,
@@ -65,7 +65,7 @@ func TestExactlyOneOf(t *testing.T) {
6565
},
6666
req: action.ValidateConfigRequest{
6767
Config: tfsdk.Config{
68-
Schema: schema.UnlinkedSchema{
68+
Schema: schema.Schema{
6969
Attributes: map[string]schema.Attribute{
7070
"test1": schema.StringAttribute{
7171
Optional: true,

actionvalidator/required_together_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func TestRequiredTogether(t *testing.T) {
3232
},
3333
req: action.ValidateConfigRequest{
3434
Config: tfsdk.Config{
35-
Schema: schema.UnlinkedSchema{
35+
Schema: schema.Schema{
3636
Attributes: map[string]schema.Attribute{
3737
"test": schema.StringAttribute{
3838
Optional: true,
@@ -65,7 +65,7 @@ func TestRequiredTogether(t *testing.T) {
6565
},
6666
req: action.ValidateConfigRequest{
6767
Config: tfsdk.Config{
68-
Schema: schema.UnlinkedSchema{
68+
Schema: schema.Schema{
6969
Attributes: map[string]schema.Attribute{
7070
"test1": schema.StringAttribute{
7171
Optional: true,

go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ go 1.24.0
44

55
require (
66
github.com/google/go-cmp v0.7.0
7-
github.com/hashicorp/terraform-plugin-framework v1.16.0-beta.1
8-
github.com/hashicorp/terraform-plugin-go v0.29.0-beta.1
7+
github.com/hashicorp/terraform-plugin-framework v1.16.1
8+
github.com/hashicorp/terraform-plugin-go v0.29.0
99
)
1010

1111
require (
12-
github.com/fatih/color v1.13.0 // indirect
13-
github.com/hashicorp/go-hclog v1.5.0 // indirect
12+
github.com/fatih/color v1.15.0 // indirect
13+
github.com/hashicorp/go-hclog v1.6.3 // indirect
1414
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
15-
github.com/mattn/go-colorable v0.1.12 // indirect
16-
github.com/mattn/go-isatty v0.0.17 // indirect
15+
github.com/mattn/go-colorable v0.1.13 // indirect
16+
github.com/mattn/go-isatty v0.0.19 // indirect
1717
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
1818
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
1919
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
20-
golang.org/x/sys v0.33.0 // indirect
20+
golang.org/x/sys v0.35.0 // indirect
2121
)

go.sum

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,38 @@
11
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
2-
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
32
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
4-
github.com/fatih/color v1.13.0 h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w=
3+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
4+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
55
github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk=
6+
github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs=
7+
github.com/fatih/color v1.15.0/go.mod h1:0h5ZqXfHYED7Bhv2ZJamyIOUej9KtShiJESRwBDUSsw=
68
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
79
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
8-
github.com/hashicorp/go-hclog v1.5.0 h1:bI2ocEMgcVlz55Oj1xZNBsVi900c7II+fWDyV9o+13c=
9-
github.com/hashicorp/go-hclog v1.5.0/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M=
10-
github.com/hashicorp/terraform-plugin-framework v1.16.0-beta.1 h1:HhL8HbPuKu9pH5kgEjeWWaqXgN88U42dFa8sYRLHQsY=
11-
github.com/hashicorp/terraform-plugin-framework v1.16.0-beta.1/go.mod h1:XQfoA+oS1ETMuQrcM689/TWMx9leV59N7Xscm5t7b+g=
12-
github.com/hashicorp/terraform-plugin-go v0.29.0-beta.1 h1:xeHlRQYev3iMXwX2W7+D1bSfLRBs9jojZXqE6hmNxMI=
13-
github.com/hashicorp/terraform-plugin-go v0.29.0-beta.1/go.mod h1:5pww/UULn9C2tItq6o5sbScEkJxBUt9X9kI4DkeRsIw=
10+
github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k=
11+
github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M=
12+
github.com/hashicorp/terraform-plugin-framework v1.16.1 h1:1+zwFm3MEqd/0K3YBB2v9u9DtyYHyEuhVOfeIXbteWA=
13+
github.com/hashicorp/terraform-plugin-framework v1.16.1/go.mod h1:0xFOxLy5lRzDTayc4dzK/FakIgBhNf/lC4499R9cV4Y=
14+
github.com/hashicorp/terraform-plugin-go v0.29.0 h1:1nXKl/nSpaYIUBU1IG/EsDOX0vv+9JxAltQyDMpq5mU=
15+
github.com/hashicorp/terraform-plugin-go v0.29.0/go.mod h1:vYZbIyvxyy0FWSmDHChCqKvI40cFTDGSb3D8D70i9GM=
1416
github.com/hashicorp/terraform-plugin-log v0.9.0 h1:i7hOA+vdAItN1/7UrfBqBwvYPQ9TFvymaRGZED3FCV0=
1517
github.com/hashicorp/terraform-plugin-log v0.9.0/go.mod h1:rKL8egZQ/eXSyDqzLUuwUYLVdlYeamldAHSxjUFADow=
1618
github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
17-
github.com/mattn/go-colorable v0.1.12 h1:jF+Du6AlPIjs2BiUiQlKOX0rt3SujHxPnksPKZbaA40=
1819
github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4=
20+
github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=
21+
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
1922
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
2023
github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
21-
github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng=
22-
github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
24+
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
25+
github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA=
26+
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
2327
github.com/mitchellh/go-testing-interface v1.14.1 h1:jrgshOhYAUVNMAJiKbEu7EqAwgJJ2JqpQmpLJOu07cU=
2428
github.com/mitchellh/go-testing-interface v1.14.1/go.mod h1:gfgS7OtZj6MA4U1UrDRp04twqAjfvlZyCfX3sDjEym8=
25-
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
2629
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
30+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=
31+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
2732
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
28-
github.com/stretchr/testify v1.7.2 h1:4jaiDzPyXQvSd7D0EjG45355tLlV3VOECpq10pLC+8s=
2933
github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals=
34+
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
35+
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
3036
github.com/vmihailenco/msgpack/v5 v5.4.1 h1:cQriyiUvjTwOHg8QZaPihLWeRAAVoCpE00IUPn0Bjt8=
3137
github.com/vmihailenco/msgpack/v5 v5.4.1/go.mod h1:GaZTsDaehaPpQVyxrf5mtQlH+pc21PIudVV/E3rRQok=
3238
github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g=
@@ -37,8 +43,9 @@ golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBc
3743
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
3844
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
3945
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
40-
golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
41-
golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
46+
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
47+
golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI=
48+
golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
4249
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
4350
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
4451
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)