dependabot[bot] opened a new pull request, #271: URL: https://github.com/apache/cloudstack-terraform-provider/pull/271
Bumps [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) from 1.12.0 to 1.17.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.17.0</h2> <p>NOTES:</p> <ul> <li>In <code>[email protected]</code>, the <code>UseStateForUnknown</code> plan modifier was updated to preserve null values from prior state for unconfigured attributes. This updated version can cause plan inconsistency errors when used on child attributes of a nested attribute that expect <code>UseStateForUnknown</code> to keep the child attributes on new nested objects as <code><unknown></code> (known after apply). The new <code>UseNonNullStateForUnknown</code> plan modifier can now be used where child attributes are expecting this pre-1.15.1 behavior. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1197">#1197</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>action/schema: Added <code>WriteOnly</code> schema field for action schemas. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1233">#1233</a>)</li> <li>all: Added a new plan modifier for all types, <code>UseNonNullStateForUnknown</code> that preserves known, non-null, values for unconfigured attributes. This can be used when it is known that an unconfigured value will remain the same after the attribute is updated to a non-null value. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1242">#1242</a>)</li> </ul> <p>BUG FIXES:</p> <ul> <li>fwserver: update validation list result validation to check if an identity's values are all null (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1230">#1230</a>)</li> </ul> <h2>v1.16.1</h2> <p>BUG FIXES:</p> <ul> <li>all: Prevent identity change validation from raising an error when prior identity is empty (all attributes are null) (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1229">#1229</a>)</li> <li>all: Added an additional validation check to ensure the resource identity object is not null. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1193">#1193</a>)</li> </ul> <h2>v1.16.0</h2> <p>NOTES:</p> <ul> <li>all: This Go module has been updated to Go 1.24 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.24">Go 1.24 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/1217">#1217</a>)</li> <li>Support for the new <code>action{}</code> block is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1181">#1181</a>)</li> <li>action: This release contains a new interface (<code>action.Action</code>) and packages for implementing action types, available in Terraform 1.14+. An action in Terraform can be defined by providers to model side-effects that practitioners can reference in their configurations via the <code>lifecycle.action_trigger</code> block. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1181">#1181</a>)</li> <li>List support is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1150">#1150</a>)</li> <li>list: This release contains a new interface (<code>list.ListResource</code>) and packages for implementing list resource types, available in Terraform 1.14+. A list resource in Terraform can be defined by providers to list remote resources within a given scope. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1150">#1150</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>action: New package for implementing actions. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1181">#1181</a>)</li> <li>action/schema: New package for implementing action schemas. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1183">#1183</a>)</li> <li>types: Exported a previously internal function, <code>TerraformTypeToFrameworkType</code>, which converts <code>tftypes.Type</code> to a known framework type. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1200">#1200</a>)</li> <li>list: New package for implementing list resources. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1150">#1150</a>)</li> <li>all: Update Framework to handle new ListResource RPCs. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1157">#1157</a>)</li> </ul> <p>ENHANCEMENTS:</p> <ul> <li>provider: Added <code>ProviderWithActions</code> interface for implementing actions. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1181">#1181</a>)</li> <li>provider: Added <code>ActionData</code> to <code>ConfigureResponse</code>, to pass provider-defined data to <code>action.Action</code> implementations. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1185">#1185</a>)</li> <li>provider: Added <code>ListResourceData</code> to <code>ConfigureResponse</code>, to pass provider-defined data to <code>list.ListResource</code> implementations. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1202">#1202</a>)</li> <li>tfsdk: Allow <code>SetAtPath</code> to be called with a <code>tftypes.Value</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1198">#1198</a>)</li> <li>tfsdk: Allow <code>SetAttribute</code> to be called with a <code>tftypes.Value</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1205">#1205</a>)</li> <li>list: Add the <code>ListResourceWithRawV5Schemas</code> and <code>ListResourceWithRawV6Schemas</code> interfaces to support list implementation on non-framework resources. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1198">#1198</a>)</li> </ul> <h2>v1.16.0-beta.1</h2> <p>FEATURES:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </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.17.0 (December 02, 2025)</h2> <p>NOTES:</p> <ul> <li>In <code>[email protected]</code>, the <code>UseStateForUnknown</code> plan modifier was updated to preserve null values from prior state for unconfigured attributes. This updated version can cause plan inconsistency errors when used on child attributes of a nested attribute that expect <code>UseStateForUnknown</code> to keep the child attributes on new nested objects as <code><unknown></code> (known after apply). The new <code>UseNonNullStateForUnknown</code> plan modifier can now be used where child attributes are expecting this pre-1.15.1 behavior. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1197">#1197</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>action/schema: Added <code>WriteOnly</code> schema field for action schemas. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1233">#1233</a>)</li> <li>all: Added a new plan modifier for all types, <code>UseNonNullStateForUnknown</code> that preserves known, non-null, values for unconfigured attributes. This can be used when it is known that an unconfigured value will remain the same after the attribute is updated to a non-null value. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1242">#1242</a>)</li> </ul> <p>BUG FIXES:</p> <ul> <li>fwserver: update validation list result validation to check if an identity's values are all null (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1230">#1230</a>)</li> </ul> <h2>1.16.1 (September 29, 2025)</h2> <p>BUG FIXES:</p> <ul> <li>all: Prevent identity change validation from raising an error when prior identity is empty (all attributes are null) (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1229">#1229</a>)</li> <li>all: Added an additional validation check to ensure the resource identity object is not null. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1193">#1193</a>)</li> </ul> <h2>1.16.0 (September 17, 2025)</h2> <p>NOTES:</p> <ul> <li>all: This Go module has been updated to Go 1.24 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.24">Go 1.24 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/1217">#1217</a>)</li> <li>Support for the new <code>action{}</code> block is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1181">#1181</a>)</li> <li>action: This release contains a new interface (<code>action.Action</code>) and packages for implementing action types, available in Terraform 1.14+. An action in Terraform can be defined by providers to model side-effects that practitioners can reference in their configurations via the <code>lifecycle.action_trigger</code> block. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1181">#1181</a>)</li> <li>List support is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1150">#1150</a>)</li> <li>list: This release contains a new interface (<code>list.ListResource</code>) and packages for implementing list resource types, available in Terraform 1.14+. A list resource in Terraform can be defined by providers to list remote resources within a given scope. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1150">#1150</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>action: New package for implementing actions. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1181">#1181</a>)</li> <li>action/schema: New package for implementing action schemas. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1183">#1183</a>)</li> <li>types: Exported a previously internal function, <code>TerraformTypeToFrameworkType</code>, which converts <code>tftypes.Type</code> to a known framework type. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1200">#1200</a>)</li> <li>list: New package for implementing list resources. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1150">#1150</a>)</li> <li>all: Update Framework to handle new ListResource RPCs. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1157">#1157</a>)</li> </ul> <p>ENHANCEMENTS:</p> <ul> <li>provider: Added <code>ProviderWithActions</code> interface for implementing actions. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1181">#1181</a>)</li> <li>provider: Added <code>ActionData</code> to <code>ConfigureResponse</code>, to pass provider-defined data to <code>action.Action</code> implementations. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1185">#1185</a>)</li> <li>provider: Added <code>ListResourceData</code> to <code>ConfigureResponse</code>, to pass provider-defined data to <code>list.ListResource</code> implementations. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1202">#1202</a>)</li> <li>tfsdk: Allow <code>SetAtPath</code> to be called with a <code>tftypes.Value</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1198">#1198</a>)</li> <li>tfsdk: Allow <code>SetAttribute</code> to be called with a <code>tftypes.Value</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1205">#1205</a>)</li> <li>list: Add the <code>ListResourceWithRawV5Schemas</code> and <code>ListResourceWithRawV6Schemas</code> interfaces to support list implementation on non-framework resources. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1198">#1198</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/d11e38895e5c74b11a2a5748ad02a9dd806ec163"><code>d11e388</code></a> Update changelog</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/18140ec9b32ef46fe25a7e318663ff612d06938f"><code>18140ec</code></a> all: Add <code>UseNonNullStateForUnknown</code> plan modifier to assist with child neste...</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/44348af3923c82a93c64ae7dca906d9850ba956b"><code>44348af</code></a> build(deps): Bump the github-actions group with 3 updates (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1243">#1243</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/7fb50058928e09bae9289d436c60b576270d1bf5"><code>7fb5005</code></a> build(deps): Bump golang.org/x/crypto from 0.36.0 to 0.45.0 in /tools (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1241">#1241</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/1df337d9d8fce9baa44f78db64f14dc0a0312d89"><code>1df337d</code></a> build(deps): Bump github.com/hashicorp/terraform-plugin-log (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1240">#1240</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/5310c6836867f6bc6bce5cf466ad0f3408bb5668"><code>5310c68</code></a> build(deps): Bump golangci/golangci-lint-action (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1238">#1238</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/58c003c58a4fece7f6904f2c1ec9fe96f5f39703"><code>58c003c</code></a> build(deps): Bump actions/upload-artifact in the github-actions group (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1234">#1234</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/e0355d6e6ed7903297a537b663b64c0266dd40f0"><code>e0355d6</code></a> Add support for write-only attributes in actions (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1233">#1233</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/8855023d0fe786d15a500a5bd718447cd4d52d25"><code>8855023</code></a> list: update list result validation to check if identity is fully null (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1230">#1230</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/6d2ebde661a1cf102e183710901060f158da9b01"><code>6d2ebde</code></a> Update changelog</li> <li>Additional commits viewable in <a href="https://github.com/hashicorp/terraform-plugin-framework/compare/v1.12.0...v1.17.0">compare view</a></li> </ul> </details> <br /> [](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> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
