Releases: orange-cloudavenue/terraform-plugin-framework-validators
Releases · orange-cloudavenue/terraform-plugin-framework-validators
v1.16.0
🚀 New Features
stringvalidator
- Add new formats
validator to validate strings against specific formats (e.g., Base64, UUIDv4, URN ). (GH-59)
stringvalidator/formats
- Add new function IsBase64
to validate if a string is a valid Base64 encoded string. (GH-59)
stringvalidator/formats
- Add new function IsURN
to validate if a string is a valid URN. (GH-59)
stringvalidator/formats
- Add new function IsUUIDv4
to validate if a string is a valid UUIDv4. (GH-59)
ℹ️ Notes
stringvalidator
- The validator IsURN
has been deprecated in favor of formats.IsURN
. It will be removed in the next major release. (GH-59)
stringvalidator
- The validator IsUUID
has been deprecated in favor of formats.IsUUIDv4
. It will be removed in the next major release. (GH-59)
v1.15.0
🚀 New Features
stringvalidator
- Add new network validator HTTPCode
to validate with settings the http code range allowed (Ex: 2xx). (GH-55)
stringvalidator
- Add new network validator TCPUDPPort
to validate TCP/UDP port (Ex: 8080
). (GH-54)
v1.14.1
ℹ️ Notes
oneOf
- Improve markdown description rendering for OneOfWithDescription
(string/int32/int64) validator. Change to be rendered as a list instead of a single line. (GH-52)
v1.14.0
🚀 New Features
stringvalidator
- Add new network validator IPV4Range
to validate IPv4 range (Ex: 192.168.0.1-192.168.0.10). (GH-50)
stringvalidator
- Add new network validator TCPUDPPortRange
to validate TCP/UDP port range (Ex: 80-90). (GH-50)
Dependencies
- deps: bumps github.com/hashicorp/terraform-plugin-framework from 1.14.0 to 1.14.1 (GH-51)
- deps: bumps github.com/hashicorp/terraform-plugin-framework-validators from 0.16.0 to 0.17.0 (GH-48)
v1.13.0
🚀 New Features
int32validator
- Add common validators (based on int64validator) for the Int32 type. (GH-42)
Dependencies
- deps: bumps github.com/hashicorp/terraform-plugin-go from 0.25.0 to 0.26.0 (GH-41)
v1.12.0
🚀 New Features
stringvalidator
- Add new Cases
validator to validate string against multiple cases (Disallow Uppercase/Lowercase/Number/Space) (GH-37)
v1.11.0
😍 Many thanks @DariuszPorowski for the contributing
🚀 New Features
objectvalidator
- Add common validators (Not
, NullIfAttributeIsOneOf
, NullIfAttributeIsSet
, RequireIfAttributeIsOneOf
, RequireIfAttributeIsSet
) for the Object type. (GH-17)
v1.10.0
ℹ️ Notes
core
- The FrangipaneTeam/terraform-plugin-framework-validators
has been renamed to orange-cloudavenue/terraform-plugin-framework-validators
. The plugin has been moved to be under the orange-cloudavenue
organization. (GH-2)