dependabot[bot] opened a new pull request, #141: URL: https://github.com/apache/cloudstack-terraform-provider/pull/141
Bumps [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) from 1.7.0 to 1.13.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.13.0</h2> <p>NOTES:</p> <ul> <li>Ephemeral resource support is in technical preview and offered without compatibility promises until Terraform 1.10 is generally available. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>ephemeral: New package for implementing ephemeral resources (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> <li>ephemeral/schema: New package for implementing ephemeral resource schemas (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> </ul> <p>ENHANCEMENTS:</p> <ul> <li>provider: Added <code>ProviderWithEphemeralResources</code> interface for implementing ephemeral resources (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> <li>tfsdk: Added <code>EphemeralResultData</code> struct for representing ephemeral values produced by a provider, such as from an ephemeral resource (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> <li>provider: Added <code>EphemeralResourceData</code> to <code>ConfigureResponse</code>, to pass provider-defined data to <code>ephemeral.EphemeralResource</code> implementations (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> </ul> <h2>v1.12.0</h2> <p>NOTES:</p> <ul> <li>all: This Go module has been updated to Go 1.22 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.22">Go 1.22 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/1033">#1033</a>)</li> </ul> <p>BUG FIXES:</p> <ul> <li>providerserver: Fixed bug that prevented <code>moved</code> operation support between resource types for framework-only providers. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1039">#1039</a>)</li> </ul> <h2>v1.11.0</h2> <p>NOTES:</p> <ul> <li>Framework reflection logic (<code>Config.Get</code>, <code>Plan.Get</code>, etc.) for structs with <code>tfsdk</code> field tags has been updated to support embedded structs that promote exported fields. For existing structs that embed unexported structs with exported fields, a tfsdk ignore tag (<code>tfsdk:"-"</code>) can be added to ignore all promoted fields.</li> </ul> <p>For example, the following struct will now return an error diagnostic:</p> <pre lang="go"><code>type thingResourceModel struct { Attr1 types.String `tfsdk:"attr_1"` Attr2 types.Bool `tfsdk:"attr_2"` <pre><code>// Previously, this embedded struct was ignored, will now promote underlying fields embeddedModel </code></pre> <p>}</p> <p>type embeddedModel struct {<br /> // No <code>tfsdk</code> tag<br /> ExportedField string<br /> }<br /> </code></pre></p> <p>To preserve the original behavior, a tfsdk ignore tag can be added to ignore the entire embedded struct:</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.13.0 (October 31, 2024)</h2> <p>NOTES:</p> <ul> <li>Ephemeral resource support is in technical preview and offered without compatibility promises until Terraform 1.10 is generally available. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>ephemeral: New package for implementing ephemeral resources (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> <li>ephemeral/schema: New package for implementing ephemeral resource schemas (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> </ul> <p>ENHANCEMENTS:</p> <ul> <li>provider: Added <code>ProviderWithEphemeralResources</code> interface for implementing ephemeral resources (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> <li>tfsdk: Added <code>EphemeralResultData</code> struct for representing ephemeral values produced by a provider, such as from an ephemeral resource (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> <li>provider: Added <code>EphemeralResourceData</code> to <code>ConfigureResponse</code>, to pass provider-defined data to <code>ephemeral.EphemeralResource</code> implementations (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> </ul> <h2>1.12.0 (September 18, 2024)</h2> <p>NOTES:</p> <ul> <li>all: This Go module has been updated to Go 1.22 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.22">Go 1.22 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/1033">#1033</a>)</li> </ul> <p>BUG FIXES:</p> <ul> <li>providerserver: Fixed bug that prevented <code>moved</code> operation support between resource types for framework-only providers. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1039">#1039</a>)</li> </ul> <h2>1.11.0 (August 06, 2024)</h2> <p>NOTES:</p> <ul> <li>Framework reflection logic (<code>Config.Get</code>, <code>Plan.Get</code>, etc.) for structs with <code>tfsdk</code> field tags has been updated to support embedded structs that promote exported fields. For existing structs that embed unexported structs with exported fields, a tfsdk ignore tag (<code>tfsdk:"-"</code>) can be added to ignore all promoted fields.</li> </ul> <p>For example, the following struct will now return an error diagnostic:</p> <pre lang="go"><code>type thingResourceModel struct { Attr1 types.String `tfsdk:"attr_1"` Attr2 types.Bool `tfsdk:"attr_2"` <pre><code>// Previously, this embedded struct was ignored, will now promote underlying fields embeddedModel </code></pre> <p>}</p> <p>type embeddedModel struct {<br /> // No <code>tfsdk</code> tag<br /> ExportedField string<br /> }<br /> </tr></table><br /> </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/497e13a78bced22839ffba8bc687a5385591959a"><code>497e13a</code></a> Update changelog</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/ae74f9389c44029fce3f09fab4c5ea466b210a6f"><code>ae74f93</code></a> ephemeral: Initial ephemeral resource type implementation (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1050">#1050</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/a2137d3a9897127bb07fddf771975e50f1946274"><code>a2137d3</code></a> build(deps): Bump github.com/hashicorp/terraform-plugin-go (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1051">#1051</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/b372415f8e8aec4de386eebba11d954d2e2c6fda"><code>b372415</code></a> Result of tsccr-helper -log-level=info gha update -latest . (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1048">#1048</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/bca1b06f666d7d41ab3b62684b23bec424404317"><code>bca1b06</code></a> Result of tsccr-helper -log-level=info gha update -latest . (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1046">#1046</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/ffca03d9f3729816aaaaf4a78c92469c0afe12df"><code>ffca03d</code></a> Result of tsccr-helper -log-level=info gha update -latest . (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1045">#1045</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/e09ec9d169c581d2606372ecdfb0113be7e3b34f"><code>e09ec9d</code></a> Update changelog</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/e7536003efa9686d47345290ed1225d143bee2ba"><code>e753600</code></a> build(deps): Bump github.com/hashicorp/terraform-plugin-go (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1041">#1041</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/ba1098a5813d88ab817ba1c8d70a6d1b58793660"><code>ba1098a</code></a> add missing capability MoveResourceState (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1038">#1038</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/7076ccaaf25b9cf7d1f211f78022cdfc0aba0b7f"><code>7076cca</code></a> docs: Miscellaneous doc fixes in attribute + unit tests (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1027">#1027</a>)</li> <li>Additional commits viewable in <a href="https://github.com/hashicorp/terraform-plugin-framework/compare/v1.7.0...v1.13.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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org