Skip to content

Commit

Permalink
build(deps): bump github.com/hashicorp/terraform-plugin-framework fro…
Browse files Browse the repository at this point in the history
…m 1.6.0 to 1.7.0 (#378)

Bumps
[github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework)
from 1.6.0 to 1.7.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-plugin-framework/releases">github.com/hashicorp/terraform-plugin-framework's
releases</a>.</em></p>
<blockquote>
<h2>v1.7.0</h2>
<p>BREAKING CHANGES:</p>
<ul>
<li>function: All parameters must be explicitly named via the
<code>Name</code> field (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/964">#964</a>)</li>
<li>function: <code>DefaultParameterNamePrefix</code> and
<code>DefaultVariadicParameterName</code> constants have been removed
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/964">#964</a>)</li>
</ul>
<p>FEATURES:</p>
<ul>
<li>types/basetypes: Added <code>DynamicType</code> and
<code>DynamicValue</code> implementations for dynamic value handling (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>types/basetypes: Added interfaces
<code>basetypes.DynamicTypable</code>,
<code>basetypes.DynamicValuable</code>, and
<code>basetypes.DynamicValuableWithSemanticEquals</code> for dynamic
custom type and value implementations (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>resource/schema: Added <code>DynamicAttribute</code> implementation
for dynamic value handling (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>datasource/schema: Added <code>DynamicAttribute</code>
implementation for dynamic value handling (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>provider/schema: Added <code>DynamicAttribute</code> implementation
for dynamic value handling (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>function: Added <code>DynamicParameter</code> and
<code>DynamicReturn</code> for dynamic value handling` (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>resource/schema/dynamicdefault: New package with
<code>StaticValue</code> implementation for dynamic schema-based default
values (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>resource/schema/dynamicplanmodifier: New package with built-in
implementations for dynamic value plan modification. (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>resource/schema/defaults: New <code>Dynamic</code> interface for
dynamic schema-based default implementations (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>resource/schema/planmodifier: New <code>Dynamic</code> interface for
dynamic value plan modification implementations (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>schema/validator: New <code>Dynamic</code> interface for dynamic
value schema validation (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
</ul>
<h2>v1.6.1</h2>
<p>NOTES:</p>
<ul>
<li>all: The <code>v1.6.0</code> release updated this Go module to Go
1.21 per the <a href="https://go.dev/doc/devel/release#policy">Go
support policy</a>. It is recommended to review the <a
href="https://go.dev/doc/go1.21">Go 1.21 release notes</a> before
upgrading. Any consumers building on earlier Go versions may experience
errors (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/937">#937</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>resource/schema: Ensured invalid attribute default value errors are
raised (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/930">#930</a>)</li>
<li>function: Added implementation validation to
<code>function.Definition</code> to ensure all parameter names
(including the variadic parameter) are unique. (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/926">#926</a>)</li>
<li>function: Updated the default parameter name to include the position
of the parameter (i.e. <code>param1</code>, <code>param2</code>, etc.).
Variadic parameters will default to <code>varparam</code>. (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/926">#926</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-plugin-framework/blob/main/CHANGELOG.md">github.com/hashicorp/terraform-plugin-framework's
changelog</a>.</em></p>
<blockquote>
<h2>1.7.0 (March 21, 2024)</h2>
<p>BREAKING CHANGES:</p>
<ul>
<li>function: All parameters must be explicitly named via the
<code>Name</code> field (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/964">#964</a>)</li>
<li>function: <code>DefaultParameterNamePrefix</code> and
<code>DefaultVariadicParameterName</code> constants have been removed
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/964">#964</a>)</li>
</ul>
<p>FEATURES:</p>
<ul>
<li>types/basetypes: Added <code>DynamicType</code> and
<code>DynamicValue</code> implementations for dynamic value handling (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>types/basetypes: Added interfaces
<code>basetypes.DynamicTypable</code>,
<code>basetypes.DynamicValuable</code>, and
<code>basetypes.DynamicValuableWithSemanticEquals</code> for dynamic
custom type and value implementations (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>resource/schema: Added <code>DynamicAttribute</code> implementation
for dynamic value handling (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>datasource/schema: Added <code>DynamicAttribute</code>
implementation for dynamic value handling (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>provider/schema: Added <code>DynamicAttribute</code> implementation
for dynamic value handling (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>function: Added <code>DynamicParameter</code> and
<code>DynamicReturn</code> for dynamic value handling` (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>resource/schema/dynamicdefault: New package with
<code>StaticValue</code> implementation for dynamic schema-based default
values (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>resource/schema/dynamicplanmodifier: New package with built-in
implementations for dynamic value plan modification. (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>resource/schema/defaults: New <code>Dynamic</code> interface for
dynamic schema-based default implementations (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>resource/schema/planmodifier: New <code>Dynamic</code> interface for
dynamic value plan modification implementations (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
<li>schema/validator: New <code>Dynamic</code> interface for dynamic
value schema validation (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/147">#147</a>)</li>
</ul>
<h2>1.6.1 (March 05, 2024)</h2>
<p>NOTES:</p>
<ul>
<li>all: The <code>v1.6.0</code> release updated this Go module to Go
1.21 per the <a href="https://go.dev/doc/devel/release#policy">Go
support policy</a>. It is recommended to review the <a
href="https://go.dev/doc/go1.21">Go 1.21 release notes</a> before
upgrading. Any consumers building on earlier Go versions may experience
errors (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/937">#937</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>resource/schema: Ensured invalid attribute default value errors are
raised (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/930">#930</a>)</li>
<li>function: Added implementation validation to
<code>function.Definition</code> to ensure all parameter names
(including the variadic parameter) are unique. (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/926">#926</a>)</li>
<li>function: Updated the default parameter name to include the position
of the parameter (i.e. <code>param1</code>, <code>param2</code>, etc.).
Variadic parameters will default to <code>varparam</code>. (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/926">#926</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/332d5d11189e7a1fb4cd94e26da64642587fb18d"><code>332d5d1</code></a>
Update changelog</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/a7607bb3f91477b1a702a9e626dd84375cb75e9e"><code>a7607bb</code></a>
Require provider-defined function parameter naming (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/964">#964</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/84f656ed0c597bb24372065aaf7b36b1b2c03ccf"><code>84f656e</code></a>
all: Add dynamic type, attribute, and function support (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/931">#931</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/f86c88c9700c4bd03743b32382b20694577d71a7"><code>f86c88c</code></a>
website/docs: Link fix on int64 type page (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/960">#960</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/05f0d88ab91e21cc08b82bf00ecfa20cac89f75d"><code>05f0d88</code></a>
all: Miscellaneous doc fixes (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/958">#958</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/37dabc87ce686ae4a74836d455961c98522e583e"><code>37dabc8</code></a>
docs: Explicitly call out object parameter attributes are required (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/956">#956</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/09b53c3e7bde127e4821692d3f7533bcfc9a48f1"><code>09b53c3</code></a>
Correct resource State Move documentation (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/957">#957</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/6f28bad7558bca002f9be88b905bc62ae0485355"><code>6f28bad</code></a>
build(deps): Bump google.golang.org/protobuf in /tools (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/953">#953</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/91d777b8e8045965ce0bd6be86dcdd1717752b6b"><code>91d777b</code></a>
docs: Fix note tag with link (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/952">#952</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/d88ef0ebd25497979c7d51411f2677fa0c5f03e0"><code>d88ef0e</code></a>
Add clarification for nil check of ProviderData in data source and
resource C...</li>
<li>Additional commits viewable in <a
href="https://github.com/hashicorp/terraform-plugin-framework/compare/v1.6.0...v1.7.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/hashicorp/terraform-plugin-framework&package-manager=go_modules&previous-version=1.6.0&new-version=1.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Mar 26, 2024
1 parent 0417464 commit f4853d5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ require (
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
github.com/hashicorp/go-retryablehttp v0.7.5
github.com/hashicorp/terraform-plugin-docs v0.18.0
github.com/hashicorp/terraform-plugin-framework v1.6.0
github.com/hashicorp/terraform-plugin-framework v1.7.0
github.com/hashicorp/terraform-plugin-framework-validators v0.12.0
github.com/hashicorp/terraform-plugin-go v0.22.0
github.com/hashicorp/terraform-plugin-go v0.22.1
github.com/hashicorp/terraform-plugin-log v0.9.0
github.com/hashicorp/terraform-plugin-mux v0.15.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0
Expand Down Expand Up @@ -94,8 +94,8 @@ require (
golang.org/x/text v0.14.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
google.golang.org/grpc v1.62.0 // indirect
google.golang.org/protobuf v1.32.0 // indirect
google.golang.org/grpc v1.62.1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
16 changes: 8 additions & 8 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -258,13 +258,13 @@ github.com/hashicorp/terraform-json v0.21.0 h1:9NQxbLNqPbEMze+S6+YluEdXgJmhQykRy
github.com/hashicorp/terraform-json v0.21.0/go.mod h1:qdeBs11ovMzo5puhrRibdD6d2Dq6TyE/28JiU4tIQxk=
github.com/hashicorp/terraform-plugin-docs v0.18.0 h1:2bINhzXc+yDeAcafurshCrIjtdu1XHn9zZ3ISuEhgpk=
github.com/hashicorp/terraform-plugin-docs v0.18.0/go.mod h1:iIUfaJpdUmpi+rI42Kgq+63jAjI8aZVTyxp3Bvk9Hg8=
github.com/hashicorp/terraform-plugin-framework v1.6.0 h1:hMPWoCiNGR+yzoDlXtZ/meGlUOCn8r1OFuPG84MkhWg=
github.com/hashicorp/terraform-plugin-framework v1.6.0/go.mod h1:QRG6J+m5QBJum+lzKi0Ci2CB8a/xflS3T/aWoz8WD4Y=
github.com/hashicorp/terraform-plugin-framework v1.7.0 h1:wOULbVmfONnJo9iq7/q+iBOBJul5vRovaYJIu2cY/Pw=
github.com/hashicorp/terraform-plugin-framework v1.7.0/go.mod h1:jY9Id+3KbZ17OMpulgnWLSfwxNVYSoYBQFTgsx044CI=
github.com/hashicorp/terraform-plugin-framework-validators v0.12.0 h1:HOjBuMbOEzl7snOdOoUfE2Jgeto6JOjLVQ39Ls2nksc=
github.com/hashicorp/terraform-plugin-framework-validators v0.12.0/go.mod h1:jfHGE/gzjxYz6XoUwi/aYiiKrJDeutQNUtGQXkaHklg=
github.com/hashicorp/terraform-plugin-go v0.3.0/go.mod h1:dFHsQMaTLpON2gWhVWT96fvtlc/MF1vSy3OdMhWBzdM=
github.com/hashicorp/terraform-plugin-go v0.22.0 h1:1OS1Jk5mO0f5hrziWJGXXIxBrMe2j/B8E+DVGw43Xmc=
github.com/hashicorp/terraform-plugin-go v0.22.0/go.mod h1:mPULV91VKss7sik6KFEcEu7HuTogMLLO/EvWCuFkRVE=
github.com/hashicorp/terraform-plugin-go v0.22.1 h1:iTS7WHNVrn7uhe3cojtvWWn83cm2Z6ryIUDTRO0EV7w=
github.com/hashicorp/terraform-plugin-go v0.22.1/go.mod h1:qrjnqRghvQ6KnDbB12XeZ4FluclYwptntoWCr9QaXTI=
github.com/hashicorp/terraform-plugin-log v0.9.0 h1:i7hOA+vdAItN1/7UrfBqBwvYPQ9TFvymaRGZED3FCV0=
github.com/hashicorp/terraform-plugin-log v0.9.0/go.mod h1:rKL8egZQ/eXSyDqzLUuwUYLVdlYeamldAHSxjUFADow=
github.com/hashicorp/terraform-plugin-mux v0.15.0 h1:+/+lDx0WUsIOpkAmdwBIoFU8UP9o2eZASoOnLsWbKME=
Expand Down Expand Up @@ -719,8 +719,8 @@ google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKa
google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk=
google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=
google.golang.org/grpc v1.32.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak=
google.golang.org/grpc v1.62.0 h1:HQKZ/fa1bXkX1oFOvSjmZEUL8wLSaZTjCcLAlmZRtdk=
google.golang.org/grpc v1.62.0/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE=
google.golang.org/grpc v1.62.1 h1:B4n+nfKzOICUXMgyrNd19h/I9oH0L1pizfk1d4zSgTk=
google.golang.org/grpc v1.62.1/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE=
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
Expand All @@ -733,8 +733,8 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I=
google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
Expand Down

0 comments on commit f4853d5

Please sign in to comment.