chore(deps): update module github.com/hashicorp/terraform-plugin-framework to v1.19.0 #3

Open
sa-renovate wants to merge 1 commit from renovate/github.com-hashicorp-terraform-plugin-framework-1.x into main
Member

This PR contains the following updates:

Package Type Update Change
github.com/hashicorp/terraform-plugin-framework require minor v1.16.1v1.19.0

Release Notes

hashicorp/terraform-plugin-framework (github.com/hashicorp/terraform-plugin-framework)

v1.19.0

Compare Source

NOTES:

  • This release moves the resource configuration generation logic for the -generate-config-out flag from Terraform Core to the Framework for Terraform v1.14.0 and above. There should be no functionality changes for resource configuration generation in this release. (#​1281)
  • This Go module has been updated to Go 1.25 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#​1287)

v1.18.0

Compare Source

NOTES:

  • State store support is considered experimental and offered without compatibility promises until support for state_store in Terraform core is generally available. (#​1259)

FEATURES:

  • framework: Add support for deprecation messages on attributes and blocks in the configuration schema (#​1276)
  • statestore: New package for implementing state stores (#​1259)
  • statestore/schema: New package for implementing state store schemas (#​1259)

ENHANCEMENTS:

  • types/basetypes: Added Length() method for the ListValue type. (#​1067)
  • types/basetypes: Added Length() method for the MapValue type. (#​1067)
  • types/basetypes: Added Length() method for the SetValue type. (#​1067)
  • types/basetypes: Added Length() method for the TupleValue type. (#​1067)
  • provider: Added ProviderWithStateStores interface for implementing state stores (#​1259)
  • provider: Added StateStoreData to ConfigureResponse, to pass provider-defined data to (statestore.StateStore).Initialize methods (#​1262)

v1.17.0

Compare Source

NOTES:

  • In terraform-plugin-framework@v1.15.1, the UseStateForUnknown plan modifier was updated to preserve null values from prior state for unconfigured attributes. This updated version can cause plan inconsistency errors when used on child attributes of a nested attribute that expect UseStateForUnknown to keep the child attributes on new nested objects as <unknown> (known after apply).
    The new UseNonNullStateForUnknown plan modifier can now be used where child attributes are expecting this pre-1.15.1 behavior. (#​1197)

FEATURES:

  • action/schema: Added WriteOnly schema field for action schemas. (#​1233)
  • all: Added a new plan modifier for all types, UseNonNullStateForUnknown that preserves known, non-null, values for unconfigured attributes. This can be used when it is known that an unconfigured value will remain the same after the attribute is updated to a non-null value. (#​1242)

BUG FIXES:

  • fwserver: update validation list result validation to check if an identity's values are all null (#​1230)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) | require | minor | `v1.16.1` → `v1.19.0` | --- ### Release Notes <details> <summary>hashicorp/terraform-plugin-framework (github.com/hashicorp/terraform-plugin-framework)</summary> ### [`v1.19.0`](https://github.com/hashicorp/terraform-plugin-framework/releases/tag/v1.19.0) [Compare Source](https://github.com/hashicorp/terraform-plugin-framework/compare/v1.18.0...v1.19.0) NOTES: - This release moves the [resource configuration generation](https://developer.hashicorp.com/terraform/language/import/generating-configuration) logic for the `-generate-config-out` flag from Terraform Core to the Framework for Terraform `v1.14.0` and above. There should be no functionality changes for resource configuration generation in this release. ([#&#8203;1281](https://github.com/hashicorp/terraform-plugin-framework/issues/1281)) - This Go module has been updated to Go 1.25 per the [Go support policy](https://golang.org/doc/devel/release.html#policy). Any consumers building on earlier Go versions may experience errors. ([#&#8203;1287](https://github.com/hashicorp/terraform-plugin-framework/issues/1287)) ### [`v1.18.0`](https://github.com/hashicorp/terraform-plugin-framework/releases/tag/v1.18.0) [Compare Source](https://github.com/hashicorp/terraform-plugin-framework/compare/v1.17.0...v1.18.0) NOTES: - State store support is considered experimental and offered without compatibility promises until support for `state_store` in Terraform core is generally available. ([#&#8203;1259](https://github.com/hashicorp/terraform-plugin-framework/issues/1259)) FEATURES: - framework: Add support for deprecation messages on attributes and blocks in the configuration schema ([#&#8203;1276](https://github.com/hashicorp/terraform-plugin-framework/issues/1276)) - statestore: New package for implementing state stores ([#&#8203;1259](https://github.com/hashicorp/terraform-plugin-framework/issues/1259)) - statestore/schema: New package for implementing state store schemas ([#&#8203;1259](https://github.com/hashicorp/terraform-plugin-framework/issues/1259)) ENHANCEMENTS: - types/basetypes: Added `Length()` method for the `ListValue` type. ([#&#8203;1067](https://github.com/hashicorp/terraform-plugin-framework/issues/1067)) - types/basetypes: Added `Length()` method for the `MapValue` type. ([#&#8203;1067](https://github.com/hashicorp/terraform-plugin-framework/issues/1067)) - types/basetypes: Added `Length()` method for the `SetValue` type. ([#&#8203;1067](https://github.com/hashicorp/terraform-plugin-framework/issues/1067)) - types/basetypes: Added `Length()` method for the `TupleValue` type. ([#&#8203;1067](https://github.com/hashicorp/terraform-plugin-framework/issues/1067)) - provider: Added `ProviderWithStateStores` interface for implementing state stores ([#&#8203;1259](https://github.com/hashicorp/terraform-plugin-framework/issues/1259)) - provider: Added `StateStoreData` to `ConfigureResponse`, to pass provider-defined data to `(statestore.StateStore).Initialize` methods ([#&#8203;1262](https://github.com/hashicorp/terraform-plugin-framework/issues/1262)) ### [`v1.17.0`](https://github.com/hashicorp/terraform-plugin-framework/releases/tag/v1.17.0) [Compare Source](https://github.com/hashicorp/terraform-plugin-framework/compare/v1.16.1...v1.17.0) NOTES: - In `terraform-plugin-framework@v1.15.1`, the `UseStateForUnknown` plan modifier was updated to preserve null values from prior state for unconfigured attributes. This updated version can cause plan inconsistency errors when used on child attributes of a nested attribute that expect `UseStateForUnknown` to keep the child attributes on new nested objects as `<unknown>` (known after apply). The new `UseNonNullStateForUnknown` plan modifier can now be used where child attributes are expecting this pre-1.15.1 behavior. ([#&#8203;1197](https://github.com/hashicorp/terraform-plugin-framework/issues/1197)) FEATURES: - action/schema: Added `WriteOnly` schema field for action schemas. ([#&#8203;1233](https://github.com/hashicorp/terraform-plugin-framework/issues/1233)) - all: Added a new plan modifier for all types, `UseNonNullStateForUnknown` that preserves known, non-null, values for unconfigured attributes. This can be used when it is known that an unconfigured value will remain the same after the attribute is updated to a non-null value. ([#&#8203;1242](https://github.com/hashicorp/terraform-plugin-framework/issues/1242)) BUG FIXES: - fwserver: update validation list result validation to check if an identity's values are all null ([#&#8203;1230](https://github.com/hashicorp/terraform-plugin-framework/issues/1230)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My43Ni40IiwidXBkYXRlZEluVmVyIjoiNDMuNzYuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
chore(deps): update module github.com/hashicorp/terraform-plugin-framework to v1.19.0
Some checks failed
renovate/artifacts Artifact file update failure
aa3780e5ed
Author
Member

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: downloading edp.buildth.ing/DevFW-CICD/edge-connect-client/v2 v2.3.1
go: downloading github.com/hashicorp/terraform-plugin-framework v1.19.0
go: downloading github.com/hashicorp/terraform-plugin-log v0.10.0
go: downloading github.com/hashicorp/terraform-plugin-go v0.31.0
go: downloading google.golang.org/grpc v1.79.2
go: downloading github.com/fatih/color v1.18.0
go: downloading github.com/mattn/go-colorable v0.1.14
go: downloading google.golang.org/protobuf v1.36.11
go: downloading golang.org/x/sys v0.39.0
go: downloading golang.org/x/net v0.48.0
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217
go: downloading golang.org/x/text v0.32.0
go: edp.buildth.ing/DevFW-CICD/terraform-provider-edge-connect/internal/provider imports
	edp.buildth.ing/DevFW-CICD/edge-connect-client/v2/sdk/edgeconnect: edp.buildth.ing/DevFW-CICD/edge-connect-client/v2@v2.3.1: verifying module: checksum mismatch
	downloaded: h1:qRZ2lzCKVUUBcpQz/5AnQ8MhjsubHdGYINwpMwqJkhk=
	sum.golang.org: h1:zB6TkvfkBR2FV6d5ILlQkuCUbLvIaza24dRPpeDUnU8=

SECURITY ERROR
This download does NOT match the one reported by the checksum server.
The bits may have been replaced on the origin server, or an attacker may
have intercepted the download attempt.

For more information, see 'go help module-auth'.


### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: go.sum ``` Command failed: go get -t ./... go: downloading edp.buildth.ing/DevFW-CICD/edge-connect-client/v2 v2.3.1 go: downloading github.com/hashicorp/terraform-plugin-framework v1.19.0 go: downloading github.com/hashicorp/terraform-plugin-log v0.10.0 go: downloading github.com/hashicorp/terraform-plugin-go v0.31.0 go: downloading google.golang.org/grpc v1.79.2 go: downloading github.com/fatih/color v1.18.0 go: downloading github.com/mattn/go-colorable v0.1.14 go: downloading google.golang.org/protobuf v1.36.11 go: downloading golang.org/x/sys v0.39.0 go: downloading golang.org/x/net v0.48.0 go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 go: downloading golang.org/x/text v0.32.0 go: edp.buildth.ing/DevFW-CICD/terraform-provider-edge-connect/internal/provider imports edp.buildth.ing/DevFW-CICD/edge-connect-client/v2/sdk/edgeconnect: edp.buildth.ing/DevFW-CICD/edge-connect-client/v2@v2.3.1: verifying module: checksum mismatch downloaded: h1:qRZ2lzCKVUUBcpQz/5AnQ8MhjsubHdGYINwpMwqJkhk= sum.golang.org: h1:zB6TkvfkBR2FV6d5ILlQkuCUbLvIaza24dRPpeDUnU8= SECURITY ERROR This download does NOT match the one reported by the checksum server. The bits may have been replaced on the origin server, or an attacker may have intercepted the download attempt. For more information, see 'go help module-auth'. ```
Some checks failed
renovate/artifacts Artifact file update failure
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/github.com-hashicorp-terraform-plugin-framework-1.x:renovate/github.com-hashicorp-terraform-plugin-framework-1.x
git switch renovate/github.com-hashicorp-terraform-plugin-framework-1.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/github.com-hashicorp-terraform-plugin-framework-1.x
git switch renovate/github.com-hashicorp-terraform-plugin-framework-1.x
git rebase main
git switch main
git merge --ff-only renovate/github.com-hashicorp-terraform-plugin-framework-1.x
git switch renovate/github.com-hashicorp-terraform-plugin-framework-1.x
git rebase main
git switch main
git merge --no-ff renovate/github.com-hashicorp-terraform-plugin-framework-1.x
git switch main
git merge --squash renovate/github.com-hashicorp-terraform-plugin-framework-1.x
git switch main
git merge --ff-only renovate/github.com-hashicorp-terraform-plugin-framework-1.x
git switch main
git merge renovate/github.com-hashicorp-terraform-plugin-framework-1.x
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
DevFW-CICD/terraform-provider-edge-connect!3
No description provided.