Skip to content

Releases: Octagon-simon/octaValidate

octaValidate V1.3.2

04 Feb 00:27
c07f398
Compare
Choose a tag to compare
  • Optimized the code
  • Length validations (Maxlength, Minlength & Length), now work only if the input element contains a value

octaValidate v1.3.0

29 Nov 15:15
1c581d5
Compare
Choose a tag to compare
  • This version addresses issue #11
  • Please visit the discussions tab to see what's new on this release #13

octaValidate v1.2.9

10 Nov 08:10
Compare
Choose a tag to compare
  • Updated readme file

octaValidate V1.2.7

08 Nov 16:50
Compare
Choose a tag to compare
  • Optimized the code according to issues with the react release of the library

octaValidate V1.2.5

06 Nov 02:16
Compare
Choose a tag to compare
  • We optimized the source code
  • We fixed a bug that occurs when using the EQUALTO validation rule

octaValidate V1.2.3

09 Oct 10:11
Compare
Choose a tag to compare
  • Fixed a bug with strict mode. See issue #9

octaValidate V1.2.2

02 Oct 17:47
Compare
Choose a tag to compare
  • successBorder configuration option now has a default of true. Use the syntax below to modify configuration options
//config options
const config = {
    successBorder : false
}
//initialize function
const myForm = new octaValidate(FORM_ID, config)
  • If strictMode is enabled, the library returns the words provided by the user that are not allowed.
  • showBackendErrors() method now removes error text when the input element has a value

octaValidate V1.2.0

27 Jul 18:10
1a38caf
Compare
Choose a tag to compare
  • Validation error/success display was improved
  • File size conversions were modified
  • New attribute "accept-mime" allows you to provide File MIME types and it supports MIME types with wildcards. Please refer to the documentation to learn more
  • totalsize, totalminsize, and totalmaxsize were modified to be size, minsize, maxsize.
  • New attributes "files, minfiles , and maxfiles" were added. Please refer to the documentation to learn more

octaValidate V1.1.4

11 Jul 14:10
Compare
Choose a tag to compare

STRICT WORDS

  • Strict words were modified to perform a case-insensitive search
  • User's words are flagged as "not allowed" if it contains any of the strict words.
    • For Eg. If strict words contain "null" and the user provides "nullify", we will flag it as not allowed.

octaValidate V1.1.3

10 Jul 20:26
Compare
Choose a tag to compare

CHANGELOGS

  • An issue with installing octavalidate through NPM was resolved See issue 7. Please check out how to install this library with NPM on the documentation

  • You don't need the CHECK rule to validate checkboxes or radio elements again. You just have to use the R rule to validate any input element to mark it as required

  • File Validation was added, along with attributes like size, minsize, maxsize, accept, totalsize, totalminsize, totalmaxsize.

  • First official documentation was created for octaValidate. Please check out the documentation here