Skip to content

Latest commit

 

History

History
285 lines (182 loc) · 8.2 KB

CHANGELOG.md

File metadata and controls

285 lines (182 loc) · 8.2 KB

Changelog

All notable changes to laravel-jsvalidation will be documented in this file.

2.3.0 - 2018-07-19

Added

  • (#337) Validate each form with same selector

Fixed

  • (#319) Fix custom rules

2.2.3 - 2018-05-17

Added

  • (#325) Added Bootstrap 4 support

Fixed

  • (#312) Array validation rule fixed

2.2.2 - 2018-04-18

Fixed

  • (#316, #317) Array rule validation

2.2.1 - 2018-02-27

Fixed

  • (#307) Fix images, mimetypes & files rules in Laravel 5.6

2.2.0 - 2018-02-09

Added

  • (#302) Laravel 5.6 support

2.1.0 - 2017-08-31

Added

  • (#277) Laravel 5.5 support

2.0.0 - 2017-07-10

Added

  • (#224) Laravel 5.4 support

Changed

  • (#250) Typo in resources/assets/js/helpers.js method gess fixed. Method renamed to guess

Fixed

  • (#239) JPEG mime-type check in image rule

Removed

  • (#258) Laravel <= 5.3 support. Will be maintained in 1.x releases
  • PHP < 5.6.4 support (Laravel 5.4 minimum requirement)

1.5.0 - 2017-01-22

Added

  • Javascript validation for File rule
  • Javascript validation for Mimetypes rule
  • Javascript validation for Nullable rule
  • Javascript validation for Filled rule
  • Javascript validation for Dimensions rule
  • Javascript validation for InArray rule
  • Javascript validation for Distinct rule

Fixed

  • (#130) Fix issue with HttpResponseException
  • (#201) Fix Undefined index: _jsvalidation_validate_all

1.4.3 - 2017-01-07

Added

  • (#179) Add support for the "bail" keyword
  • (#180, #158) Add support to validate array fields using non array rules

Fixed

  • (#175) Fix remote custom validation
  • (#156) File Size doesn't work with JavaScript Validator

1.4.2 - 2016-12-28

Fixed

  • Fix javascript build files

1.4.1 - 2016-12-28

Fixed

  • Fix javascript build files

1.4.0 - 2016-12-28

Bugfixes:

  • Features:

  • Issues resolved:

    • Convert Exceptions to E_USER_ERROR in __toString() (#126)
    • Chrome and IE case fix in mime types (PR #136)
    • Fix Turn off remote validation (#145)
    • Support for Laravel 5.3.21 and greater

1.3.1 - 2016-01-04

Features:

  • Allow Dependency Injection in FormRequest Validations
  • Add extra field values to ajax request on remote validation (#88, #99)

1.3.0 - 2015-12-29

Features:

  • Add ignore method to override default configuration
  • Add remote_validation_field config option
  • Allow using with other validation packages
  • Improved performance and refactoring

Bugfixes:

  • Issues resolved:
    • Critical error with numeric min & max values (#98)
    • Error when using FormRequest validation (#96)
    • Conflict with other Laravel functionality? (#90)
    • Multiple Instances of JSValidation (#87)
    • Error when using FormRequest validation (#96)

1.2.0 - 2015-09-30

Features:

  • Allow validate rule "In" for type array
  • Added JSON validator 3f508c1
  • Allow disable remote validations
  • Add support for other validation packages (#69)

Bugfixes:

  • Issues resolved:
    • Fix some validations when field is array (#75)
    • Updated validateAlpha logic c31a38d

1.1.4 - 2015-09-10

Bugfixes:

  • Issues resolved:
    • String validation fails on length (#71)
    • Default validation messages can't be changed (#27)

1.1.3 - 2015-09-07

Bugfixes:

  • Issues resolved:
    • DateFormat generate javascript error if date is not valid

1.1.2 - 2015-09-05

Features:

  • Automatic update for public Javascript assets
  • Minor Javascript improvements.
  • Support multidimensional array validation

Bugfixes:

  • Issues resolved:
    • Wrong password confirmed rule conversion (#52)
    • Fix numeric check for min/max validation (#54)
    • Validate PUT/PATCH methods on remote (#69)
    • Hidden input raising an error (#58)
    • Non radio-list show error messages from other radio-list (#57)
    • date_format:m rule always return not valid (#66)

1.1.1 - 2015-08-15

Bugfixes:

  • Issues resolved:
    • Rules that depends from other rules they are not validated in some cases (#47)
    • Route Model Binding Form Request Validation Error (#44)

1.1.0 - 2015-08-11

Features:

  • ActiveURL, Unique and Exists rules support
  • Support for Custom Validation Rules
  • Multiple forms support improved

Bugfixes:

  • Issues resolved:
    • Some bugs resolved (#14, #17, #26, #29, #38, #39)

1.0.5 - 2015-06-13

Features:

  • Laravel 5.1 support

1.0.4 - 2015-05-09

Refactoring:

  • Renamed JsValidation class name to avoid problems with IDE's code completion

1.0.3 - 2015-04-11

Bugfixes:

  • Input custom attributes from Requests are not applied.

1.0.2 - 2015-03-27

Features:

  • Allow disable validations for certain attributes
  • Unit testing

Bugfixes:

  • The config key form_selector is not loaded when package boots

1.0.1 - 2015-03-17

Bufixes:

  • jQuery Validation Plugin debug doesn't work. disabled

1.0.0 - 2015-03-17

Features:

  • Automatic creation of javascript validation based on your Validation Rules, Messages, FormRequest and Validators.
  • The package uses Jquery Validation Plugin bundled in provided script.
  • Unobtrusive integration, you can use independently of Laravel Form Builder. and no Javascript coding required.
  • Uses Laravel Localization to translate messages
  • Can be configured in controllers or views.