chore(deps): bump github.com/hashicorp/terraform-plugin-framework from 1.11.0 to 1.15.0
Open
Number: #102
Type: Pull Request
State: Open
Type: Pull Request
State: Open
Author:
dependabot[bot]
Association: Contributor
Comments: 0
Association: Contributor
Comments: 0
Created:
May 19, 2025 at 11:05 AM UTC
(6 months ago)
(6 months ago)
Updated:
May 19, 2025 at 11:05 AM UTC
(6 months ago)
(6 months ago)
Labels:
dependencies go
dependencies go
Description:
Bumps github.com/hashicorp/terraform-plugin-framework from 1.11.0 to 1.15.0.
Release notes
Sourced from github.com/hashicorp/terraform-plugin-framework's releases.
v1.15.0
NOTES:
- all: This Go module has been updated to Go 1.23 per the Go support policy. It is recommended to review the Go 1.23 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#1114)
- 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
identityattribute in Terraform configurationimportblocks, available in Terraform v1.12+. Theresource.ResourceWithIdentityinterface 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 newIdentityfields in the response objects on the resource CRUD methods. (#1112)FEATURES:
- tfsdk: Added
ResourceIdentitystruct to represent managed resource identity data. (#1112)- resource/identityschema: New package for implementing managed resource identity schemas. (#1107)
- resource: Added new
ImportStatePassthroughWithIdentityhelper that can support both identity and ID importing via a single field. (#1134)- resource: Added
ResourceWithIdentityinterface for implementing managed resource identity. (#1107)ENHANCEMENTS:
- resource: Updated
Create,Update,Read, andDeleterequest and response objects to support the passing of identity data. (#1112)- resource: Updated
ImportStatemethod to allow importing by resource identity and returning identity data from import response. (#1126)v1.15.0-beta.1
NOTES:
- 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
resource.ResourceWithImportStateinterface will automatically pass-through identity data to theReadmethod. TheRequiredForImportandOptionalForImportfields on the identity schema can be used to control the validation that Terraform core will apply to the import config block. (#1126)v1.15.0-alpha.1
NOTES:
- all: This Go module has been updated to Go 1.23 per the Go support policy. It is recommended to review the Go 1.23 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#1114)
- 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
resource.ResourceWithIdentityinterface and defining an identity schema. Once the identity schema is defined, you can read and store identity data in the state file via the newIdentityfields in the response objects on the resource CRUD methods. (#1112)v1.14.1
BUG FIXES:
- internal/fwserver: fixed bug where write-only attributes set in configuration would cause perpetual diffs for computed attributes. (#1097)
v1.14.0
NOTES:
- Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. (#1044)
- ephemeral: Ephemeral resources are now considered generally available and protected by compatibility promises. (#1052)
FEATURES:
- resource/schema: Added
WriteOnlyschema 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. (#1044)BUG FIXES:
- internal/fwschemadata: Set semantic equality logic has been adjusted and will now ignore order of elements during comparison. (#1061)
- internal/fwserver: Fixed bug where dynamic attributes would not prompt invalid configuration error messages (#1090)
v1.13.0
... (truncated)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-framework's changelog.
1.15.0 (May 16, 2025)
NOTES:
- all: This Go module has been updated to Go 1.23 per the Go support policy. It is recommended to review the Go 1.23 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#1114)
- 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
identityattribute in Terraform configurationimportblocks, available in Terraform v1.12+. Theresource.ResourceWithIdentityinterface 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 newIdentityfields in the response objects on the resource CRUD methods. (#1112)FEATURES:
- tfsdk: Added
ResourceIdentitystruct to represent managed resource identity data. (#1112)- resource/identityschema: New package for implementing managed resource identity schemas. (#1107)
- resource: Added new
ImportStatePassthroughWithIdentityhelper that can support both identity and ID importing via a single field. (#1134)- resource: Added
ResourceWithIdentityinterface for implementing managed resource identity. (#1107)ENHANCEMENTS:
- resource: Updated
Create,Update,Read, andDeleterequest and response objects to support the passing of identity data. (#1112)- resource: Updated
ImportStatemethod to allow importing by resource identity and returning identity data from import response. (#1126)1.15.0-beta.1 (April 15, 2025)
NOTES:
- 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
resource.ResourceWithImportStateinterface will automatically pass-through identity data to theReadmethod. TheRequiredForImportandOptionalForImportfields on the identity schema can be used to control the validation that Terraform core will apply to the import config block. (#1126)1.15.0-alpha.1 (March 18, 2025)
NOTES:
- all: This Go module has been updated to Go 1.23 per the Go support policy. It is recommended to review the Go 1.23 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#1114)
- 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
resource.ResourceWithIdentityinterface and defining an identity schema. Once the identity schema is defined, you can read and store identity data in the state file via the newIdentityfields in the response objects on the resource CRUD methods. (#1112)1.14.1 (February 20, 2025)
BUG FIXES:
- internal/fwserver: fixed bug where write-only attributes set in configuration would cause perpetual diffs for computed attributes. (#1097)
1.14.0 (February 19, 2025)
NOTES:
- Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. (#1044)
- ephemeral: Ephemeral resources are now considered generally available and protected by compatibility promises. (#1052)
FEATURES:
- resource/schema: Added
WriteOnlyschema 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. (#1044)BUG FIXES:
... (truncated)
Commits
acbc06aUpdate changelog57021a4build(deps): Bump github.com/hashicorp/terraform-plugin-go (#1145)fc240f1ResourceIdentity: Validate that identities do not change after Terraform stor...e43fb0bbuild(deps): Bump actions/setup-go from 5.4.0 to 5.5.0 (#1142)77d7476build(deps): Bump golangci/golangci-lint-action from 7.0.0 to 8.0.0 (#1143)68d7b53github: Use Dependabot to keep Actions updated (#1141)e1d72e4Resource Identity: Add the UpgradeRPC for resource identity (#1135)5c1ab2dPrep changelogs forv1.15.0release (#1138)24e7ad7Add catalog metadata (META.d) (#1139)17f1fafresource: Add identity to DeleteRequest (#1132)- 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 this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request Statistics
Commits:
1
1
Files Changed:
2
2
Additions:
+79
+79
Deletions:
-75
-75
Package Dependencies
Ecosystem:
go
go
Version Change:
1.11.0 → 1.15.0
Update Type:
Minor
Minor
Technical Details
| ID: | 458033 |
| UUID: | 2528381957 |
| Node ID: | PR_kwDOMZpT6c6WtAwF |
| Host: | GitHub |
| Repository: | coder/terraform-provider-envbuilder |
| Merge State: | Unknown |