This repository has been archived by the owner on Dec 27, 2024. It is now read-only.
Releases: FrangipaneTeam/terraform-plugin-framework-validators
Releases · FrangipaneTeam/terraform-plugin-framework-validators
v1.9.0
Dependencies
- deps: bumps github.com/hashicorp/terraform-plugin-framework from 1.4.1 to 1.4.2 (GH-103)
- deps: bumps github.com/hashicorp/terraform-plugin-framework-validators from 0.12.0 to 0.16.0 (GH-112)
- deps: bumps github.com/hashicorp/terraform-plugin-go from 0.19.0 to 0.19.1 (GH-105)
- deps: bumps github.com/hashicorp/terraform-plugin-go from 0.19.1 to 0.25.0 (GH-111)
v1.8.1
Dependencies
- deps: bumps github.com/hashicorp/terraform-plugin-framework from 1.3.4 to 1.3.5 (GH-97)
- deps: bumps github.com/hashicorp/terraform-plugin-framework from 1.3.5 to 1.4.0 (GH-101)
- deps: bumps github.com/hashicorp/terraform-plugin-framework from 1.4.0 to 1.4.1 (GH-102)
- deps: bumps github.com/hashicorp/terraform-plugin-framework-validators from 0.10.0 to 0.11.0 (GH-96)
- deps: bumps github.com/hashicorp/terraform-plugin-go from 0.18.0 to 0.19.0 (GH-100)
v1.8.0
🚨 Breaking Changes
- Remove OLD Name of validators
IsValidIP
,IsValidUUID
,IsValidNetmask
andIsValidUUID
(GH-81)
🚀 New Features
NullIfAttributeIsSet
- New validator that allows you to validate that an attribute is null if another attribute is set. This is available for all types of attributes. (GH-83)RequireIfAttributeIsSet
- New validator that allows you to validate that an attribute is required if another attribute is set. This is available for all types of attributes. (GH-84)stringvalidator/IsNetwork
- This is a new generic validator that checks if the value is a valid network format. Currently there is 4 formats that are supported:IPV4
,IPV4WithCIDR
,IPV4WithNetmask
andRFC1918
. (GH-85)
🎉 Improvements
null_if_attribute_is_one_of
- Improve documentation generation. (GH-72)require_if_attribute_is_one_of
- Improve documentation generation. (GH-72)
ℹ️ Notes
stringvalidator/IsIP
- This validator is now deprecated and will be removed in the release v1.11. Please usestringvalidator/IsNetwork
instead. (GH-85)