dependabot[bot] opened a new pull request, #33: URL: https://github.com/apache/incubator-devlake-terraform/pull/33
Bumps the deps group with 3 updates in the / directory: [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework), [github.com/hashicorp/terraform-plugin-log](https://github.com/hashicorp/terraform-plugin-log) and [github.com/hashicorp/terraform-plugin-testing](https://github.com/hashicorp/terraform-plugin-testing). Updates `github.com/hashicorp/terraform-plugin-framework` from 1.15.0 to 1.16.1 <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.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> <ul> <li>actions: Initial package implementation and new Actions RPC support (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1181">#1181</a>)</li> </ul> <p>ENHANCEMENTS:</p> <ul> <li>list: add <code>limit</code> field to <code>ListResult</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1182">#1182</a>)</li> <li>list: add primitives, list and map types to schema (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1177">#1177</a>)</li> <li>actions: add schema interface and unlinked schema (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1183">#1183</a>)</li> <li>actions: add standard validation methods and interfaces for <code>ValidateActionConfig</code> RPCs (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1188">#1188</a>)</li> <li>actions: add attributes and nested blocks to schema package (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1186">#1186</a>)</li> </ul> <p>BUG FIXES:</p> <ul> <li>list: call <code>Configure</code> in <code>ListResource</code> RPC and remove the <code>ListResource</code> call in <code>ValidateListResourceConfig</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1192">#1192</a>)</li> </ul> <h2>v1.16.0-alpha.1</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.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> <h2>1.16.0-beta.1 (July 31, 2025)</h2> <p>FEATURES:</p> <ul> <li>actions: Initial package implementation and new Actions RPC support (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1181">#1181</a>)</li> </ul> <p>ENHANCEMENTS:</p> <ul> <li>list: add <code>limit</code> field to <code>ListResult</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1182">#1182</a>)</li> <li>list: add primitives, list and map types to schema (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1177">#1177</a>)</li> <li>actions: add schema interface and unlinked schema (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1183">#1183</a>)</li> <li>actions: add standard validation methods and interfaces for <code>ValidateActionConfig</code> RPCs (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1188">#1188</a>)</li> <li>actions: add attributes and nested blocks to schema package (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1186">#1186</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/6d2ebde661a1cf102e183710901060f158da9b01"><code>6d2ebde</code></a> Update changelog</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/94750495bb7ec748a72daedb936241696db20973"><code>9475049</code></a> Disallow null resource identities (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1193">#1193</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/bd26b78e2af3e265263214c73367d194463b5c8a"><code>bd26b78</code></a> identity: Update change validation to ensure empty identities (all null attri...</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/7ab0d8014a582db1c0e9857ba82138b23a9aadc4"><code>7ab0d80</code></a> Update changelog</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/601138920382c81d142b1a47247546b62639bbb4"><code>6011389</code></a> build(deps): Bump github.com/hashicorp/terraform-plugin-go (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1225">#1225</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/aa27e8a9eb5c7c13d75c9d1369ea82c9f2922ff4"><code>aa27e8a</code></a> list: add changelog (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1224">#1224</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/559599f5c11375d1af434533d49e3ab9518e6bec"><code>559599f</code></a> Add context setup to proto{5,6}server ListResource() (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1223">#1223</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/6af91641ed1ea3e6081929a8e0d277d458e66a50"><code>6af9164</code></a> actions: Update changelog (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1222">#1222</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/7fb936eeb1d4c4f180c4aad97270962cd744a856"><code>7fb936e</code></a> Simplify actions to one schema type (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1220">#1220</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/d67269903b1b4b1f7d06531ebb5a8c5d25d5737d"><code>d672699</code></a> add changelogs (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/1221">#1221</a>)</li> <li>Additional commits viewable in <a href="https://github.com/hashicorp/terraform-plugin-framework/compare/v1.15.0...v1.16.1">compare view</a></li> </ul> </details> <br /> Updates `github.com/hashicorp/terraform-plugin-go` from 0.27.0 to 0.29.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/hashicorp/terraform-plugin-go/releases">github.com/hashicorp/terraform-plugin-go's releases</a>.</em></p> <blockquote> <h2>v0.29.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-go/issues/556">#556</a>)</li> <li>tfprotov5+tfprotov6: An upcoming release will require the <code>ActionServer</code> implementation as part of <code>ProviderServer</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/534">#534</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>tfprotov5+tfprotov6: Upgraded protocols and added types to support the new action type. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/534">#534</a>)</li> <li>tfprotov5+tfprotov6: Upgraded protocols and added types to support the new list type (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/525">#525</a>)</li> </ul> <p>ENHANCEMENTS:</p> <ul> <li>tftypes: <code>tftypes.Value.IsFullyNull()</code> allows SDKs to determine when a value is null or consists of only null elements and attributes. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/541">#541</a>)</li> </ul> <h2>v0.29.0-beta.1</h2> <p>NOTES:</p> <ul> <li>Updates the <code>ValidateListResourceConfig</code> RPC to validate <code>include_resource</code> as well as <code>limit</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/538">#538</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>tfprotov5+tfprotov6: Add action validation RPC (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/539">#539</a>)</li> </ul> <p>ENHANCEMENTS:</p> <ul> <li>tftypes: <code>tftypes.Value.IsFullyNull()</code> allows SDKs to determine when a value is null or consists of only null elements and attributes. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/541">#541</a>)</li> </ul> <p>BUG FIXES:</p> <ul> <li>Fix proto field numbering for <code>GetProviderSchema</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/539">#539</a>)</li> </ul> <h2>v0.29.0-alpha.1</h2> <p>NOTES:</p> <ul> <li>This alpha pre-release contains the protocol definitions and Go type definitions for list resources, which are a new type of resource. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/512">#512</a>)</li> <li>A <code>ProviderServerWithListResource</code> can be used with the <code>terraform query</code> subcommand in Terraform 1.13.0-alpha20250708 and later to search unmanaged infrastructure. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/512">#512</a>)</li> <li>The list resource protocol definitions are considered experimental and may change up until general availability. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/512">#512</a>)</li> <li>tfprotov5+tfprotov6: An upcoming release will require the <code>ValidateListResourceConfig</code> and <code>ListResource</code> implementations as part of <code>ProviderServer</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/514">#514</a>)</li> </ul> <h2>v0.28.0</h2> <p>BREAKING CHANGES:</p> <ul> <li>tfprotov5+tfprotov6: Removed temporary <code>ProviderServerWithResourceIdentity</code> interface type. Use <code>ProviderServer</code> instead. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/516">#516</a>)</li> <li>tfprotov5+tfprotov6: <code>GetResourceIdentitySchemas</code> and <code>UpgradeResourceIdentity</code> RPC calls are now required in <code>ProviderServer</code> and <code>ResourceServer</code>. Implementations that don't support resource identity can return empty responses from the <code>GetResourceIdentitySchemas</code> method and an error message the <code>UpgradeResourceIdentity</code> method. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/516">#516</a>)</li> </ul> <p>NOTES:</p> <ul> <li>all: To prevent compilation errors, ensure your Go module is updated to at least [email protected], [email protected], terraform-plugin-sdk/[email protected], and [email protected] before upgrading this dependency. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/516">#516</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/hashicorp/terraform-plugin-go/blob/main/CHANGELOG.md">github.com/hashicorp/terraform-plugin-go's changelog</a>.</em></p> <blockquote> <h2>0.29.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-go/issues/556">#556</a>)</li> <li>tfprotov5+tfprotov6: An upcoming release will require the <code>ActionServer</code> implementation as part of <code>ProviderServer</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/534">#534</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>tfprotov5+tfprotov6: Upgraded protocols and added types to support the new action type. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/534">#534</a>)</li> <li>tfprotov5+tfprotov6: Upgraded protocols and added types to support the new list type (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/525">#525</a>)</li> </ul> <p>ENHANCEMENTS:</p> <ul> <li>tftypes: <code>tftypes.Value.IsFullyNull()</code> allows SDKs to determine when a value is null or consists of only null elements and attributes. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/541">#541</a>)</li> </ul> <h2>0.29.0-beta.1 (July 31, 2025)</h2> <p>NOTES:</p> <ul> <li>Updates the <code>ValidateListResourceConfig</code> RPC to validate <code>include_resource</code> as well as <code>limit</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/538">#538</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>tfprotov5+tfprotov6: Add action validation RPC (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/539">#539</a>)</li> </ul> <p>ENHANCEMENTS:</p> <ul> <li>tftypes: <code>tftypes.Value.IsFullyNull()</code> allows SDKs to determine when a value is null or consists of only null elements and attributes. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/541">#541</a>)</li> </ul> <p>BUG FIXES:</p> <ul> <li>Fix proto field numbering for <code>GetProviderSchema</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/539">#539</a>)</li> </ul> <h2>0.29.0-alpha.1 (July 08, 2025)</h2> <p>NOTES:</p> <ul> <li>This alpha pre-release contains the protocol definitions and Go type definitions for list resources, which are a new type of resource. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/512">#512</a>)</li> <li>A <code>ProviderServerWithListResource</code> can be used with the <code>terraform query</code> subcommand in Terraform 1.13.0-alpha20250708 and later to search unmanaged infrastructure. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/512">#512</a>)</li> <li>The list resource protocol definitions are considered experimental and may change up until general availability. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/512">#512</a>)</li> <li>tfprotov5+tfprotov6: An upcoming release will require the <code>ValidateListResourceConfig</code> and <code>ListResource</code> implementations as part of <code>ProviderServer</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/514">#514</a>)</li> </ul> <h2>0.28.0 (May 21, 2025)</h2> <p>BREAKING CHANGES:</p> <ul> <li>tfprotov5+tfprotov6: Removed temporary <code>ProviderServerWithResourceIdentity</code> interface type. Use <code>ProviderServer</code> instead. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/516">#516</a>)</li> <li>tfprotov5+tfprotov6: <code>GetResourceIdentitySchemas</code> and <code>UpgradeResourceIdentity</code> RPC calls are now required in <code>ProviderServer</code> and <code>ResourceServer</code>. Implementations that don't support resource identity can return empty responses from the <code>GetResourceIdentitySchemas</code> method and an error message the <code>UpgradeResourceIdentity</code> method. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/516">#516</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-go/commit/a361c9bf2cc501ea50660fd14125d33c57260454"><code>a361c9b</code></a> Update changelog</li> <li><a href="https://github.com/hashicorp/terraform-plugin-go/commit/9c9e494a6e759b9ad203c826335c57d52f576d2c"><code>9c9e494</code></a> add changelog for list (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/561">#561</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-go/commit/2cd3335df03c44f7acdded7f111446f65292b575"><code>2cd3335</code></a> add action changelogs (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/560">#560</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-go/commit/c3810b1245c0f956919b8d453cff9d28119914f0"><code>c3810b1</code></a> Simplify actions to one schema type (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/559">#559</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-go/commit/0d697e5665132b205e43bcd5243e4e11f02a1730"><code>0d697e5</code></a> build(deps): Bump google.golang.org/protobuf from 1.36.8 to 1.36.9 (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/557">#557</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-go/commit/ef1c33e9ddce70a1938c542f38aea8db8957d1f1"><code>ef1c33e</code></a> build(deps): Bump google.golang.org/grpc from 1.75.0 to 1.75.1 (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/558">#558</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-go/commit/45d8122ffc9f246ee0a1dc74afe66917e3cb4143"><code>45d8122</code></a> build(deps): Bump github.com/hashicorp/go-plugin from 1.6.3 to 1.7.0 (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/555">#555</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-go/commit/d0210751fafbe65e71a45affc3b65c252b93eb00"><code>d021075</code></a> build(deps): Bump the github-actions group with 2 updates (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/556">#556</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-go/commit/4c19f069077df4604e75bb02898903f7a78a31c7"><code>4c19f06</code></a> Update action proto v5/v6 definitions to match TF core (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/554">#554</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-go/commit/f90fa5d0756cde5bdd75fc54bc45ea796b635d8d"><code>f90fa5d</code></a> build(deps): Bump github.com/hashicorp/terraform-registry-address (<a href="https://redirect.github.com/hashicorp/terraform-plugin-go/issues/553">#553</a>)</li> <li>Additional commits viewable in <a href="https://github.com/hashicorp/terraform-plugin-go/compare/v0.27.0...v0.29.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/hashicorp/terraform-plugin-log` from 0.9.0 to 0.10.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/hashicorp/terraform-plugin-log/releases">github.com/hashicorp/terraform-plugin-log's releases</a>.</em></p> <blockquote> <h2>v0.10.0</h2> <p>NOTES:</p> <ul> <li>This Go module has been updated to Go 1.24 per the <a href="https://golang.org/doc/devel/release.html#policy">Go support policy</a>. Any consumers building on earlier Go versions may experience errors. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/263">#263</a>)</li> <li>tfsdklog.RegisterTestSink is deprecated in favor or tfsdklog.ContextWithTestLogging (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/264">#264</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>Added <code>tfsdklog.ContextWithStandardLogging()</code> for test sweeper logging (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/162">#162</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/hashicorp/terraform-plugin-log/blob/main/CHANGELOG.md">github.com/hashicorp/terraform-plugin-log's changelog</a>.</em></p> <blockquote> <h2>0.10.0 (November 13, 2025)</h2> <p>NOTES:</p> <ul> <li>This Go module has been updated to Go 1.24 per the <a href="https://golang.org/doc/devel/release.html#policy">Go support policy</a>. Any consumers building on earlier Go versions may experience errors. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/263">#263</a>)</li> <li>tfsdklog.RegisterTestSink is deprecated in favor or tfsdklog.ContextWithTestLogging (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/264">#264</a>)</li> </ul> <p>FEATURES:</p> <ul> <li>Added <code>tfsdklog.ContextWithStandardLogging()</code> for test sweeper logging (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/162">#162</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/hashicorp/terraform-plugin-log/commit/1a252785fd0d697042fcfa462b303f788a27ff33"><code>1a25278</code></a> Update changelog</li> <li><a href="https://github.com/hashicorp/terraform-plugin-log/commit/13ad22b5987139db6bfb0656541e0ef6f6ecd6a8"><code>13ad22b</code></a> Add <code>tfsdklog.ContextWithStdlibLogging</code> for consistency (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/267">#267</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-log/commit/1107e3fef6fcc8cfdb1155f2b825bde2383db88d"><code>1107e3f</code></a> build(deps): bump golangci/golangci-lint-action (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/268">#268</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-log/commit/f151a1014f287cf65723960c46a802cf328e8dca"><code>f151a10</code></a> build(deps): bump actions/upload-artifact in the github-actions group (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/266">#266</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-log/commit/18815d1a390cb432f4925f9580cd1a8405d1a433"><code>18815d1</code></a> Update CODEOWNERS (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/265">#265</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-log/commit/c20f085a1b804145018e95722bd3b7576b96584e"><code>c20f085</code></a> Adds logging sink that uses the standard logger (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/162">#162</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-log/commit/5926d5bbbf5d94bc7f2ced0758523d607344a161"><code>5926d5b</code></a> Deprecate <code>tfsdklog.RegisterTestSink</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/264">#264</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-log/commit/534b24b17af762b5b1b4b51725f277abbfa5bbab"><code>534b24b</code></a> [Chore] Upgrade Go version to 1.24 (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/263">#263</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-log/commit/374b4707a20e28a27ca6bdf0a96bf90c452491a3"><code>374b470</code></a> build(deps): bump the github-actions group with 2 updates (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/262">#262</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-log/commit/e486d3a2a78aa2a4de88c3da4be685fdbb70afa9"><code>e486d3a</code></a> chore: remove old docs (<a href="https://redirect.github.com/hashicorp/terraform-plugin-log/issues/261">#261</a>)</li> <li>Additional commits viewable in <a href="https://github.com/hashicorp/terraform-plugin-log/compare/v0.9.0...v0.10.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/hashicorp/terraform-plugin-testing` from 1.13.0 to 1.13.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/hashicorp/terraform-plugin-testing/releases">github.com/hashicorp/terraform-plugin-testing's releases</a>.</em></p> <blockquote> <h2>v1.13.3</h2> <p>NOTES:</p> <ul> <li>Adds an opt-in compatibility flag for config mode tests to unlock upgrade from v1.5.1 to latest for specific providers. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/496">#496</a>)</li> </ul> <h2>v1.13.2</h2> <p>BUG FIXES:</p> <ul> <li>helper/resource: Updated <code>ImportBlockWith*</code> import state modes to use the <code>ExpectNonEmpty</code> field to allow non-empty import plans to pass successfully. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/518">#518</a>)</li> <li>helper/resource: Fixed bug with import state mode where prior test config is not used for <code>ConfigFile</code> or <code>ConfigDirectory</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/516">#516</a>)</li> </ul> <h2>v1.13.1</h2> <p>BUG FIXES:</p> <ul> <li>echoprovider: Fixed bug where Terraform v1.12+ would return an error message indicating the provider doesn't support <code>GetResourceIdentitySchemas</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/512">#512</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/hashicorp/terraform-plugin-testing/blob/v1.13.3/CHANGELOG.md">github.com/hashicorp/terraform-plugin-testing's changelog</a>.</em></p> <blockquote> <h2>1.13.3 (August 15, 2025)</h2> <p>NOTES:</p> <ul> <li>Adds an opt-in compatibility flag for config mode tests to unlock upgrade from v1.5.1 to latest for specific providers. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/496">#496</a>)</li> </ul> <h2>1.13.2 (June 11, 2025)</h2> <p>BUG FIXES:</p> <ul> <li>helper/resource: Updated <code>ImportBlockWith*</code> import state modes to use the <code>ExpectNonEmpty</code> field to allow non-empty import plans to pass successfully. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/518">#518</a>)</li> <li>helper/resource: Fixed bug with import state mode where prior test config is not used for <code>ConfigFile</code> or <code>ConfigDirectory</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/516">#516</a>)</li> </ul> <h2>1.13.1 (May 21, 2025)</h2> <p>BUG FIXES:</p> <ul> <li>echoprovider: Fixed bug where Terraform v1.12+ would return an error message indicating the provider doesn't support <code>GetResourceIdentitySchemas</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/512">#512</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/hashicorp/terraform-plugin-testing/commit/1c1031c98a28729e2661d56f2dce8c61f4d2b5a4"><code>1c1031c</code></a> Update changelog</li> <li><a href="https://github.com/hashicorp/terraform-plugin-testing/commit/c569860d8482a7041e821d702745b56945d362bc"><code>c569860</code></a> helper/resource: compatibility refresh after config mode test step (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/496">#496</a>) (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/538">#538</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-testing/commit/1911214131f1514a01c55f6480a7b2bbc23c60f6"><code>1911214</code></a> Update changelog</li> <li><a href="https://github.com/hashicorp/terraform-plugin-testing/commit/2d87e3d2e56f22a133430d7a48308759fc318d77"><code>2d87e3d</code></a> importstate: Fixed bug where prior test config is not used for <code>ConfigFile</code> o...</li> <li><a href="https://github.com/hashicorp/terraform-plugin-testing/commit/baee5c6d8e2eff98c23ccbd05bcbdf0b1a44d025"><code>baee5c6</code></a> importstate: Use <code>ExpectNonEmptyPlan</code> field to ignore no-op assertion for imp...</li> <li><a href="https://github.com/hashicorp/terraform-plugin-testing/commit/40e77496ca29c982ecf485f67fe246eb578f2e4b"><code>40e7749</code></a> build(deps): Bump github.com/cloudflare/circl from 1.6.0 to 1.6.1 (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/524">#524</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-testing/commit/e0e40e8c75cc93bd0be10590cc7b00143559e81b"><code>e0e40e8</code></a> build(deps): Bump github.com/cloudflare/circl in /tools (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/523">#523</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-testing/commit/a15aaaf1ff0c5905fee0c90dd9f4e3a773817a14"><code>a15aaaf</code></a> build(deps): Bump golang.org/x/crypto from 0.38.0 to 0.39.0 (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/521">#521</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-testing/commit/433374658aa31d3491ecf8f7da2f8392702abbd9"><code>4333746</code></a> build(deps): Bump github.com/cli/go-gh/v2 in /tools (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/517">#517</a>)</li> <li><a href="https://github.com/hashicorp/terraform-plugin-testing/commit/f93511e1eeb942e64370f53368659a834e0ab9e8"><code>f93511e</code></a> build(deps): Bump github.com/hashicorp/terraform-plugin-go (<a href="https://redirect.github.com/hashicorp/terraform-plugin-testing/issues/515">#515</a>)</li> <li>Additional commits viewable in <a href="https://github.com/hashicorp/terraform-plugin-testing/compare/v1.13.0...v1.13.3">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </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]
