BUG FIXES:
- datasource/timeouts: Prevented
Value Conversion Error
with terraform-plugin-framework 1.3.0 and later (#72) - resource/timeouts: Prevented
Value Conversion Error
with terraform-plugin-framework 1.3.0 and later (#72)
NOTES:
- This Go module has been updated to Go 1.19 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#40)
ENHANCEMENTS:
- datasource/timeouts: Add default description for read (#51)
- resource/timeouts: Add default description for create, delete, read and update (#51)
- resource/timeouts: Add opts for
CreateDescription
,ReadDescription
,UpdateDescription
andDeleteDescription
to allow overriding of default description (#51) - datasource/timeouts: Add
BlockWithOpts()
andAttributesWithOpts()
functions to allow overriding of default description (#51)
BUG FIXES:
- datasource/timeouts: Use default for null and unknown (#35). (#35)
- resource/timeouts: Use default for null and unknown (#35). (#35)
BREAKING CHANGES:
- all: The
Attributes() tfsdk.Attribute
method has been removed. Use the resourceAttributes() schema.Attribute
or data sourceAttributes() schema.Attribute
function instead. (#18) - all: The
AttributesAll() tfsdk.Attribute
method has been removed. Use the resourceAttributesAll() schema.Attribute
or data sourceAttributes() schema.Attribute
function instead. (#18) - all: The
Block() tfsdk.Block
method has been removed. Use the resourceBlock() schema.Block
or data sourceBlock() schema.Block
function instead. (#18) - all: The
BlockAll() tfsdk.Block
method has been removed. Use the resourceBlockAll() schema.Block
or data sourceBlock() schema.Block
function instead. (#18)
FEATURES:
- Introduced
datasource/timeouts
package for use with datasource schema (#18) - Introduced
resource/timeouts
package for use with resource schema (#18)
NOTES:
- all: This Go module has been updated for deprecations in terraform-plugin-framework version 0.15.0 (#11)
- all: This Go module has been updated to make it compatible with the breaking changes in terraform-plugin-framework version 0.16.0 (#12)
FEATURES: