Skip to content

Tags: validformbuilder/validformbuilder

Tags

v5.3.2

Toggle v5.3.2's commit message
fix: remove incorrect version from composer

v5.3.1

Toggle v5.3.1's commit message
fix: preserve /u flag for regex patterns using Unicode property escapes

The __sanitizeCheckForJs method was unconditionally stripping the PCRE
/u modifier from regex patterns before passing them to JavaScript.
This broke patterns using Unicode property escapes (\p{...}), which
require the /u flag in JavaScript as well.

The fix now only strips /u when the pattern does not contain \p{...}
escapes. Also adds ext-mbstring as an explicit composer requirement.

references #193

v5.3.0

Toggle v5.3.0's commit message
Add support for min and max value validation

v5.2.0

Toggle v5.2.0's commit message

Verified

This commit was signed with the committer’s verified signature.
flangfeldt FΞLIX
refactor: add getLastFieldset method to ValidForm

Also adds the ValidForm object to child elements using the “parent” meta.

v5.1.0

Toggle v5.1.0's commit message
feat: add support for “list items only” validation for select, radio …

…and checkboxes

v5.0.0

Toggle v5.0.0's commit message
refactor: support for version8

v4.8.1

Toggle v4.8.1's commit message
refactor: fix overly eager preparation for PHP 8.1

v4.8.0

Toggle v4.8.0's commit message
refactor: update PHP requirement to v7.3

v4.7.0

Toggle v4.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #142 from WiebeCelery/master

Adds external validation.

v4.6.3

Toggle v4.6.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #141 from flangfeldt/master

refactor: add override error logic to all cases in the Field Validator