dependabot[bot] opened a new pull request, #184:
URL: https://github.com/apache/cloudstack-terraform-provider/pull/184

   Bumps 
[github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework)
 from 1.7.0 to 1.15.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.15.0</h2>
   <p>NOTES:</p>
   <ul>
   <li>all: This Go module has been updated to Go 1.23 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.23";>Go 1.23 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/1114";>#1114</a>)</li>
   <li>all: This release contains a new interface and package for implmenting 
managed resource identity. Resource identity is data that is defined by a 
separate schema and is stored alongside resource state. Identity data is used 
by Terrform to uniquely identify a remote object and is meant to be immutable 
during the remote object's lifecycle. Resources that support identity can now 
be imported using the <code>identity</code> attribute in Terraform 
configuration <code>import</code> blocks, available in Terraform v1.12+. The 
<code>resource.ResourceWithIdentity</code> interface can be implemented to 
support identity by defining an identity schema. Once the identity schema is 
defined, you can read and store identity data in the state file via the new 
<code>Identity</code> fields in the response objects on the resource CRUD 
methods. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1112";>#1112</a>)</li>
   </ul>
   <p>FEATURES:</p>
   <ul>
   <li>tfsdk: Added <code>ResourceIdentity</code> struct to represent managed 
resource identity data. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1112";>#1112</a>)</li>
   <li>resource/identityschema: New package for implementing managed resource 
identity schemas. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1107";>#1107</a>)</li>
   <li>resource: Added new <code>ImportStatePassthroughWithIdentity</code> 
helper that can support both identity and ID importing via a single field. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1134";>#1134</a>)</li>
   <li>resource: Added <code>ResourceWithIdentity</code> interface for 
implementing managed resource identity. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1107";>#1107</a>)</li>
   </ul>
   <p>ENHANCEMENTS:</p>
   <ul>
   <li>resource: Updated <code>Create</code>, <code>Update</code>, 
<code>Read</code>, and <code>Delete</code> request and response objects to 
support the passing of identity data. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1112";>#1112</a>)</li>
   <li>resource: Updated <code>ImportState</code> method to allow importing by 
resource identity and returning identity data from import response. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1126";>#1126</a>)</li>
   </ul>
   <h2>v1.15.0-beta.1</h2>
   <p>NOTES:</p>
   <ul>
   <li>This beta pre-release continues the implementation of managed resource 
identity, which should now be used with Terraform v1.12.0-beta1. Managed 
resources now can support import by identity during plan and apply workflows. 
Managed resources that already support import via the 
<code>resource.ResourceWithImportState</code> interface will automatically 
pass-through identity data to the <code>Read</code> method. The 
<code>RequiredForImport</code> and <code>OptionalForImport</code> fields on the 
identity schema can be used to control the validation that Terraform core will 
apply to the import config block. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1126";>#1126</a>)</li>
   </ul>
   <h2>v1.15.0-alpha.1</h2>
   <p>NOTES:</p>
   <ul>
   <li>all: This Go module has been updated to Go 1.23 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.23";>Go 1.23 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/1114";>#1114</a>)</li>
   <li>This alpha pre-release contains an initial implementation for managed 
resource identity, which can used with Terraform v1.12.0-alpha20250312, to 
store and read identity data during plan and apply workflows. A managed 
resource identity can be used by implementing the optional 
<code>resource.ResourceWithIdentity</code> interface and defining an identity 
schema. Once the identity schema is defined, you can read and store identity 
data in the state file via the new <code>Identity</code> fields in the response 
objects on the resource CRUD methods. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1112";>#1112</a>)</li>
   </ul>
   <h2>v1.14.1</h2>
   <p>BUG FIXES:</p>
   <ul>
   <li>internal/fwserver: fixed bug where write-only attributes set in 
configuration would cause perpetual diffs for computed attributes. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1097";>#1097</a>)</li>
   </ul>
   <h2>v1.14.0</h2>
   <p>NOTES:</p>
   <ul>
   <li>Write-only attribute support is in technical preview and offered without 
compatibility promises until Terraform 1.11 is generally available. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1044";>#1044</a>)</li>
   <li>ephemeral: Ephemeral resources are now considered generally available 
and protected by compatibility promises. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1052";>#1052</a>)</li>
   </ul>
   <p>FEATURES:</p>
   <ul>
   <li>resource/schema: Added <code>WriteOnly</code> schema field for managed 
resource schemas to indicate a write-only attribute. Write-only attribute 
values are not saved to the Terraform plan or state artifacts. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1044";>#1044</a>)</li>
   </ul>
   <p>BUG FIXES:</p>
   <ul>
   <li>internal/fwschemadata: Set semantic equality logic has been adjusted and 
will now ignore order of elements during comparison. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1061";>#1061</a>)</li>
   <li>internal/fwserver: Fixed bug where dynamic attributes would not prompt 
invalid configuration error messages (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1090";>#1090</a>)</li>
   </ul>
   <h2>v1.13.0</h2>
   <!-- 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.15.0 (May 16, 2025)</h2>
   <p>NOTES:</p>
   <ul>
   <li>all: This Go module has been updated to Go 1.23 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.23";>Go 1.23 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/1114";>#1114</a>)</li>
   <li>all: This release contains a new interface and package for implmenting 
managed resource identity. Resource identity is data that is defined by a 
separate schema and is stored alongside resource state. Identity data is used 
by Terrform to uniquely identify a remote object and is meant to be immutable 
during the remote object's lifecycle. Resources that support identity can now 
be imported using the <code>identity</code> attribute in Terraform 
configuration <code>import</code> blocks, available in Terraform v1.12+. The 
<code>resource.ResourceWithIdentity</code> interface can be implemented to 
support identity by defining an identity schema. Once the identity schema is 
defined, you can read and store identity data in the state file via the new 
<code>Identity</code> fields in the response objects on the resource CRUD 
methods. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1112";>#1112</a>)</li>
   </ul>
   <p>FEATURES:</p>
   <ul>
   <li>tfsdk: Added <code>ResourceIdentity</code> struct to represent managed 
resource identity data. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1112";>#1112</a>)</li>
   <li>resource/identityschema: New package for implementing managed resource 
identity schemas. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1107";>#1107</a>)</li>
   <li>resource: Added new <code>ImportStatePassthroughWithIdentity</code> 
helper that can support both identity and ID importing via a single field. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1134";>#1134</a>)</li>
   <li>resource: Added <code>ResourceWithIdentity</code> interface for 
implementing managed resource identity. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1107";>#1107</a>)</li>
   </ul>
   <p>ENHANCEMENTS:</p>
   <ul>
   <li>resource: Updated <code>Create</code>, <code>Update</code>, 
<code>Read</code>, and <code>Delete</code> request and response objects to 
support the passing of identity data. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1112";>#1112</a>)</li>
   <li>resource: Updated <code>ImportState</code> method to allow importing by 
resource identity and returning identity data from import response. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1126";>#1126</a>)</li>
   </ul>
   <h2>1.15.0-beta.1 (April 15, 2025)</h2>
   <p>NOTES:</p>
   <ul>
   <li>This beta pre-release continues the implementation of managed resource 
identity, which should now be used with Terraform v1.12.0-beta1. Managed 
resources now can support import by identity during plan and apply workflows. 
Managed resources that already support import via the 
<code>resource.ResourceWithImportState</code> interface will automatically 
pass-through identity data to the <code>Read</code> method. The 
<code>RequiredForImport</code> and <code>OptionalForImport</code> fields on the 
identity schema can be used to control the validation that Terraform core will 
apply to the import config block. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1126";>#1126</a>)</li>
   </ul>
   <h2>1.15.0-alpha.1 (March 18, 2025)</h2>
   <p>NOTES:</p>
   <ul>
   <li>all: This Go module has been updated to Go 1.23 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.23";>Go 1.23 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/1114";>#1114</a>)</li>
   <li>This alpha pre-release contains an initial implementation for managed 
resource identity, which can used with Terraform v1.12.0-alpha20250312, to 
store and read identity data during plan and apply workflows. A managed 
resource identity can be used by implementing the optional 
<code>resource.ResourceWithIdentity</code> interface and defining an identity 
schema. Once the identity schema is defined, you can read and store identity 
data in the state file via the new <code>Identity</code> fields in the response 
objects on the resource CRUD methods. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1112";>#1112</a>)</li>
   </ul>
   <h2>1.14.1 (February 20, 2025)</h2>
   <p>BUG FIXES:</p>
   <ul>
   <li>internal/fwserver: fixed bug where write-only attributes set in 
configuration would cause perpetual diffs for computed attributes. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1097";>#1097</a>)</li>
   </ul>
   <h2>1.14.0 (February 19, 2025)</h2>
   <p>NOTES:</p>
   <ul>
   <li>Write-only attribute support is in technical preview and offered without 
compatibility promises until Terraform 1.11 is generally available. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1044";>#1044</a>)</li>
   <li>ephemeral: Ephemeral resources are now considered generally available 
and protected by compatibility promises. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1052";>#1052</a>)</li>
   </ul>
   <p>FEATURES:</p>
   <ul>
   <li>resource/schema: Added <code>WriteOnly</code> schema field for managed 
resource schemas to indicate a write-only attribute. Write-only attribute 
values are not saved to the Terraform plan or state artifacts. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1044";>#1044</a>)</li>
   </ul>
   <p>BUG FIXES:</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-framework/commit/acbc06a5e7a43fdc192a5995bc5ad7d855a37be2";><code>acbc06a</code></a>
 Update changelog</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-framework/commit/57021a4272b63995b9f80072247ba945759b92fa";><code>57021a4</code></a>
 build(deps): Bump github.com/hashicorp/terraform-plugin-go (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1145";>#1145</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-framework/commit/fc240f17bed6f21a67d580ac410cc0cb35b1c6e4";><code>fc240f1</code></a>
 ResourceIdentity: Validate that identities do not change after Terraform 
stor...</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-framework/commit/e43fb0b504c3e1702c2c8913eae78523fd816eac";><code>e43fb0b</code></a>
 build(deps): Bump actions/setup-go from 5.4.0 to 5.5.0 (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1142";>#1142</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-framework/commit/77d74764642e5d26bb60f474d2839727fd93103b";><code>77d7476</code></a>
 build(deps): Bump golangci/golangci-lint-action from 7.0.0 to 8.0.0 (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1143";>#1143</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-framework/commit/68d7b53836690c927c08f60d9b0cddb8411aa44a";><code>68d7b53</code></a>
 github: Use Dependabot to keep Actions updated (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1141";>#1141</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-framework/commit/e1d72e4112536aad26a23964555f747e09964ce6";><code>e1d72e4</code></a>
 Resource Identity: Add the UpgradeRPC for resource identity (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1135";>#1135</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-framework/commit/5c1ab2d98cfc44fd4a3f42c22ed053f269d8dec4";><code>5c1ab2d</code></a>
 Prep changelogs for <code>v1.15.0</code> release (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1138";>#1138</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-framework/commit/24e7ad7aec11f264757acb1e0256d58202cf1ee4";><code>24e7ad7</code></a>
 Add catalog metadata (META.d) (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1139";>#1139</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-framework/commit/17f1faf8787c6987ade7b6d58e297f256473ab43";><code>17f1faf</code></a>
 resource: Add identity to DeleteRequest (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1132";>#1132</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/hashicorp/terraform-plugin-framework/compare/v1.7.0...v1.15.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.7.0&new-version=1.15.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>


-- 
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

Reply via email to