fix(deps): update module github.com/hashicorp/terraform-plugin-framework to v1.13.0 #203
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.4.2
->v1.13.0
Release Notes
hashicorp/terraform-plugin-framework (github.com/hashicorp/terraform-plugin-framework)
v1.13.0
Compare Source
NOTES:
FEATURES:
ENHANCEMENTS:
ProviderWithEphemeralResources
interface for implementing ephemeral resources (#1050)EphemeralResultData
struct for representing ephemeral values produced by a provider, such as from an ephemeral resource (#1050)EphemeralResourceData
toConfigureResponse
, to pass provider-defined data toephemeral.EphemeralResource
implementations (#1050)v1.12.0
Compare Source
NOTES:
BUG FIXES:
moved
operation support between resource types for framework-only providers. (#1039)v1.11.0
Compare Source
NOTES:
Config.Get
,Plan.Get
, etc.) for structs withtfsdk
field tags has been updated to support embedded structs that promote exportedfields. For existing structs that embed unexported structs with exported fields, a tfsdk
ignore tag (
tfsdk:"-"
) can be added to ignore all promoted fields.For example, the following struct will now return an error diagnostic:
To preserve the original behavior, a tfsdk ignore tag can be added to ignore the entire embedded struct:
(#1021)
ENHANCEMENTS:
tfsdk
tags (#1021)v1.10.0
Compare Source
FEATURES:
Int32Type
andInt32Value
implementations for Int32 value handling. (#1010)basetypes.Int32Typable
,basetypes.Int32Valuable
, andbasetypes.Int32ValuableWithSemanticEquals
for Int32 custom type and value implementations. (#1010)Int32Attribute
implementation for Int32 value handling. (#1010)Int32Attribute
implementation for Int32 value handling. (#1010)Int32Attribute
implementation for Int32 value handling. (#1010)Int32Parameter
andInt32Return
for Int32 value handling. (#1010)StaticValue
implementation for Int32 schema-based default values. (#1010)Int32
interface for Int32 schema-based default implementations. (#1010)Int32
interface for Int32 value plan modification implementations. (#1010)Int32
interface for Int32 value schema validation. (#1010)Float32Type
andFloat32Value
implementations for Float32 value handling. (#1014)basetypes.Float32Typable
,basetypes.Float32Valuable
, andbasetypes.Float32ValuableWithSemanticEquals
for Float32 custom type and value implementations. (#1014)Float32Attribute
implementation for Float32 value handling. (#1014)Float32Attribute
implementation for Float32 value handling. (#1014)Float32Attribute
implementation for Float32 value handling. (#1014)Float32Parameter
andFloat32Return
for Float32 value handling. (#1014)StaticValue
implementation for Float32 schema-based default values. (#1014)Float32
interface for Float32 schema-based default implementations. (#1014)Float32
interface for Float32 value plan modification implementations. (#1014)Float32
interface for Float32 value schema validation. (#1014)v1.9.0
Compare Source
NOTES:
FEATURES:
Deferred
field toReadResponse
,ModifyPlanResponse
, andImportStateResponse
which indicates a resource deferred action to the Terraform client (#999)Deferred
field toReadResponse
which indicates a data source deferred action to the Terraform client (#999)ClientCapabilities
field toReadRequest
,ModifyPlanRequest
, andImportStateRequest
which specifies optionally supported protocol features for the Terraform client (#999)ClientCapabilities
field toReadRequest
which specifies optionally supported protocol features for the Terraform client (#999)Deferred
field toConfigureResponse
which indicates a provider deferred action to the Terraform client (#1002)ClientCapabilities
field toConfigureRequest
which specifies optionally supported protocol features for the Terraform client (#1002)ENHANCEMENTS:
BUG FIXES:
v1.8.0
Compare Source
BREAKING CHANGES:
Definition
typeParameter()
method (#968)NOTES:
TypeWithValidate
interface has been deprecated in preference of theValidateableAttribute
interface. AValidatableParameter
interface has also been added to thefunction
package (#968)FEATURES:
ValidateableAttribute
interface for custom value type implementations (#968)ValidateableParameter
interface for custom value type implementations (#968)function
: AddBoolParameterValidator
,DynamicParameterValidator
,Float64ParameterValidator
,Int64ParameterValidator
,ListParameterValidator
,MapParameterValidator
,NumberParameterValidator
,ObjectParameterValidator
,SetParameterValidator
, andStringParameterValidator
interfaces for custom function parameter validation implementations. (#971)function
: AddParameterWithBoolValidators
,ParameterWithInt64Validators
,ParameterWithFloat64Validators
,ParameterWithDynamicValidators
,ParameterWithListValidators
,ParameterWithMapValidators
,ParameterWithNumberValidators
,ParameterWithObjectValidators
,ParameterWithSetValidators
, andParameterWithStringValidators
interfaces to enable parameter-based validation support (#971)BUG FIXES:
MapValue
typesEqual
method when the receiver has a nilelementType
(#961)ListValue
typesEqual
method when the receiver has a nilelementType
(#961)SetValue
typesEqual
method when the receiver has a nilelementType
(#961)wrong final value type
errors during planning (#969)v1.7.0
Compare Source
BREAKING CHANGES:
Name
field (#964)DefaultParameterNamePrefix
andDefaultVariadicParameterName
constants have been removed (#964)FEATURES:
DynamicType
andDynamicValue
implementations for dynamic value handling (#147)basetypes.DynamicTypable
,basetypes.DynamicValuable
, andbasetypes.DynamicValuableWithSemanticEquals
for dynamic custom type and value implementations (#147)DynamicAttribute
implementation for dynamic value handling (#147)DynamicAttribute
implementation for dynamic value handling (#147)DynamicAttribute
implementation for dynamic value handling (#147)DynamicParameter
andDynamicReturn
for dynamic value handling` (#147)StaticValue
implementation for dynamic schema-based default values (#147)Dynamic
interface for dynamic schema-based default implementations (#147)Dynamic
interface for dynamic value plan modification implementations (#147)Dynamic
interface for dynamic value schema validation (#147)v1.6.1
Compare Source
NOTES:
v1.6.0
release updated this Go module to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#937)BUG FIXES:
function.Definition
to ensure all parameter names (including the variadic parameter) are unique. (#926)param1
,param2
, etc.). Variadic parameters will default tovarparam
. (#926)v1.6.0
Compare Source
BREAKING CHANGES:
types.TupleType
, where each element is the same element type. Provider-defined functions using atypes.List
for retrieving variadic argument data will need to update their code to usetypes.Tuple
. (#923)RunResponse
type, replacingDiagnostics
withFuncError
(#925)DiagnosticWithFunctionArgument
interface. RemovedNewArgumentErrorDiagnostic()
,NewArgumentWarningDiagnostic()
andWithFunctionArgument()
functions. RemovedAddArgumentError()
andAddArgumentWarning()
methods fromDiagnostics
. (#925)FEATURES:
ResourceWithMoveState
interface, which enables state moves across resource types with Terraform 1.8 and later (#917)ENHANCEMENTS:
SetKey()
method to fully remove key withnil
or zero-length value (#910)FuncError
type, required forRunResponse
(#925)NewFuncError()
andNewArgumentFuncError()
functions, which create aFuncError
(#925)ConcatFuncErrors()
andFuncErrorFromDiags()
helper functions for use when working withFuncError
(#925)v1.5.0
Compare Source
NOTES:
google.golang.org/grpc
dependency to address CVE-2023-44487 (#865)FEATURES:
ENHANCEMENTS:
TupleType
andTupleValue
implementations, which are only necessary for dynamic value handling (#870)NewArgumentErrorDiagnostic()
andNewArgumentWarningDiagnostic()
functions, which create diagnostics with the function argument position set (#889)ProviderWithFunctions
interface for implementing provider defined functions (#889)(Diagnostics).AddArgumentError()
and(Diagnostics).AddArgumentWarning()
methods for appending function argument diagnostics (#889)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.
This PR was generated by Mend Renovate. View the repository job log.