Bump the terraform-plugin group with 2 updates
Type: Pull Request
State: Merged
Association: Contributor
Comments: 1
(about 2 months ago)
(about 2 months ago)
(about 2 months ago)
by stephybun
dependencies go
Bumps the terraform-plugin group with 2 updates: github.com/hashicorp/terraform-plugin-framework and github.com/hashicorp/terraform-plugin-go.
Updates github.com/hashicorp/terraform-plugin-framework from 1.16.0-beta.1.0.20250812160436-e3cf75ae63ec to 1.16.0
Release notes
Sourced from github.com/hashicorp/terraform-plugin-framework's releases.
v1.16.0
NOTES:
- all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#1217)
- Support for the new
action{}block is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (#1181)- action: This release contains a new interface (
action.Action) 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 thelifecycle.action_triggerblock. (#1181)- List support is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (#1150)
- list: This release contains a new interface (
list.ListResource) 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. (#1150)FEATURES:
- action: New package for implementing actions. (#1181)
- action/schema: New package for implementing action schemas. (#1183)
- types: Exported a previously internal function,
TerraformTypeToFrameworkType, which convertstftypes.Typeto a known framework type. (#1200)- list: New package for implementing list resources. (#1150)
- all: Update Framework to handle new ListResource RPCs. (#1157)
ENHANCEMENTS:
- provider: Added
ProviderWithActionsinterface for implementing actions. (#1181)- provider: Added
ActionDatatoConfigureResponse, to pass provider-defined data toaction.Actionimplementations. (#1185)- provider: Added
ListResourceDatatoConfigureResponse, to pass provider-defined data tolist.ListResourceimplementations. (#1202)- tfsdk: Allow
SetAtPathto be called with atftypes.Value. (#1198)- tfsdk: Allow
SetAttributeto be called with atftypes.Value. (#1205)- list: Add the
ListResourceWithRawV5SchemasandListResourceWithRawV6Schemasinterfaces to support list implementation on non-framework resources. (#1198)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-framework's changelog.
1.16.0 (September 17, 2025)
NOTES:
- all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#1217)
- Support for the new
action{}block is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (#1181)- action: This release contains a new interface (
action.Action) 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 thelifecycle.action_triggerblock. (#1181)- List support is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (#1150)
- list: This release contains a new interface (
list.ListResource) 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. (#1150)FEATURES:
- action: New package for implementing actions. (#1181)
- action/schema: New package for implementing action schemas. (#1183)
- types: Exported a previously internal function,
TerraformTypeToFrameworkType, which convertstftypes.Typeto a known framework type. (#1200)- list: New package for implementing list resources. (#1150)
- all: Update Framework to handle new ListResource RPCs. (#1157)
ENHANCEMENTS:
- provider: Added
ProviderWithActionsinterface for implementing actions. (#1181)- provider: Added
ActionDatatoConfigureResponse, to pass provider-defined data toaction.Actionimplementations. (#1185)- provider: Added
ListResourceDatatoConfigureResponse, to pass provider-defined data tolist.ListResourceimplementations. (#1202)- tfsdk: Allow
SetAtPathto be called with atftypes.Value. (#1198)- tfsdk: Allow
SetAttributeto be called with atftypes.Value. (#1205)- list: Add the
ListResourceWithRawV5SchemasandListResourceWithRawV6Schemasinterfaces to support list implementation on non-framework resources. (#1198)1.16.0-beta.1 (July 31, 2025)
FEATURES:
- actions: Initial package implementation and new Actions RPC support (#1181)
ENHANCEMENTS:
- list: add
limitfield toListResult(#1182)- list: add primitives, list and map types to schema (#1177)
- actions: add schema interface and unlinked schema (#1183)
- actions: add standard validation methods and interfaces for
ValidateActionConfigRPCs (#1188)- actions: add attributes and nested blocks to schema package (#1186)
BUG FIXES:
- list: call
ConfigureinListResourceRPC and remove theListResourcecall inValidateListResourceConfig(#1192)1.16.0-alpha.1 (July 22, 2025)
NOTES:
- This alpha pre-release contains the initial implementation for list resource that returns a list of resource identities for a single managed resource type. (#1157)
... (truncated)
Commits
- See full diff in compare view
Updates github.com/hashicorp/terraform-plugin-go from 0.29.0-beta.1 to 0.29.0
Release notes
Sourced from github.com/hashicorp/terraform-plugin-go's releases.
v0.29.0
NOTES:
- all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#556)
- tfprotov5+tfprotov6: An upcoming release will require the
ActionServerimplementation as part ofProviderServer. (#534)FEATURES:
- tfprotov5+tfprotov6: Upgraded protocols and added types to support the new action type. (#534)
- tfprotov5+tfprotov6: Upgraded protocols and added types to support the new list type (#525)
ENHANCEMENTS:
- tftypes:
tftypes.Value.IsFullyNull()allows SDKs to determine when a value is null or consists of only null elements and attributes. (#541)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-go's changelog.
0.29.0 (September 17, 2025)
NOTES:
- all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#556)
- tfprotov5+tfprotov6: An upcoming release will require the
ActionServerimplementation as part ofProviderServer. (#534)FEATURES:
- tfprotov5+tfprotov6: Upgraded protocols and added types to support the new action type. (#534)
- tfprotov5+tfprotov6: Upgraded protocols and added types to support the new list type (#525)
ENHANCEMENTS:
- tftypes:
tftypes.Value.IsFullyNull()allows SDKs to determine when a value is null or consists of only null elements and attributes. (#541)
Commits
a361c9bUpdate changelog9c9e494add changelog for list (#561)2cd3335add action changelogs (#560)c3810b1Simplify actions to one schema type (#559)0d697e5build(deps): Bump google.golang.org/protobuf from 1.36.8 to 1.36.9 (#557)ef1c33ebuild(deps): Bump google.golang.org/grpc from 1.75.0 to 1.75.1 (#558)45d8122build(deps): Bump github.com/hashicorp/go-plugin from 1.6.3 to 1.7.0 (#555)d021075build(deps): Bump the github-actions group with 2 updates (#556)4c19f06Update action proto v5/v6 definitions to match TF core (#554)f90fa5dbuild(deps): Bump github.com/hashicorp/terraform-registry-address (#553)- Additional commits viewable in compare view
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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Pull Request Statistics
1
2
+29
-22
Package Dependencies
go
1.16.0-beta.1.0.20250812160436-e3cf75ae63ec → 1.16.0
go
0.29.0-beta.1 → 0.29.0
Technical Details
| ID: | 7940246 |
| UUID: | 2836708796 |
| Node ID: | PR_kwDOH_SFMc6pFL28 |
| Host: | GitHub |
| Repository: | hashicorp/terraform-plugin-framework-timeouts |
| Merge State: | Unknown |