Skip to content

Releases: Respect/Validation

2.3.7

13 Apr 09:48
Compare
Choose a tag to compare

Changes from last version: 2.3.6...2.3.7

2.3.6

24 Mar 18:51
263ae11
Compare
Choose a tag to compare

Changes from last version: 2.3.5...2.3.6

2.3.5

15 Mar 11:06
Compare
Choose a tag to compare

Changes from last version: 2.3.4...2.3.5

First release of 2.3 series

27 Jan 19:43
8d7d783
Compare
Choose a tag to compare

Versioning Changes:

  • Dropped support for PHP 8.0 and below.
  • Updated dev dependencies

Deprecations:

  • Symfony façade validators are no longer supported and were
    removed.

Fixes:

  • KeySet now reports which extra keys are causing the rule to fail.
  • Ensure empty strings are never a valid currency code
  • Do not hide messages on EachException
  • Dot not throw exception when validating an uninitialized property

Changes:

  • You can no longer wrap KeySet in Not.
  • Phone now uses giggsey/libphonenumber-for-php, this package needs
    to be installed if you want to use this validator.
  • Phone now supports the parameter $countryCode to validate phones
    of a specific country.

2.3.0-RC

04 Mar 03:59
Compare
Choose a tag to compare
2.3.0-RC Pre-release
Pre-release

2.3-RC

Versioning Changes:

  • Dropped support for PHP 7.4.
  • Updated dev dependencies

Deprecations:

  • Symfony façade validators are no longer supported and were
    removed.

Fixes:

  • KeySet now reports which extra keys are causing the rule to fail.

Changes:

  • You can no longer wrap KeySet in Not.
  • Phone now uses giggsey/libphonenumber-for-php, this package needs
    to be installed if you want to use this validator.
  • Phone now supports the parameter $countryCode to validate phones
    of a specific country.

Release 2.2.4

15 Feb 01:15
Compare
Choose a tag to compare

The Respect team is proud to announce the release of Respect\Validation 2.24 🐼 This version is also already available on packagist.

This is a dusting-off release with most of the PRs since 2.2.3 being merged, compatibility for newer PHP versions adjusted and a new lead maintainer (@alganet, which is the original library author).

It is expected that 2.2.4 will be the last release of the 2.2.x series, with 2.3 following soon after.

Feedback and bug reports are highly appreciated. Feel free to get in touch either via Issues or Discussions.

Happy Validatin'


Meta:

  • CHANGELOG.md is being written once again to provide an overview
    of active changes to the API and codebase.

Versioning Changes:

  • Dropped PHP 7.3 support.
  • Added support for PHP 8.0 and PHP 8.1. This will be the
    last release with PHP 7.4 support. Support for PHP 8.2 is considered
    experimental, local development should be done at 8.1.

Deprecations:

  • Zend Framework façade validators are no longer supported and were
    removed.
  • Symfony façade validators are no longer suggested, and will be
    removed in release 2.3.
  • v::dateTime('z') is not supported anymore in PHP8, and should not be relied upon

Fixes:

  • Updated bin/update-currency-codes to fetch XML from another source.
  • Updated bin/update-iso-codes to new file format.
  • Updated regionals (CountryCode.php, CurrencyCode.php, Tld.php) (2023-02-13).
  • Added RuPay card validation (thanks @rakshit087)
  • Fixed v::decimal() for float values (thanks @scruwi)
  • Added v::portugueseNif() to validate Número de Identificação Fiscal in Portugal (thanks @goncalo-andrade).
  • Allow 5-digit and 6-digit postal codes for Cambodia (thanks @omega3000)
  • v::intval() now handles negative values with trailing zeroes better (thanks @l-x)

First release of 2.1 series

04 Oct 12:16
2.1.0
6c3aed9
Compare
Choose a tag to compare

New rules

  • Decimal

New features

  • Make "HexRgbColor" rule case-insensitive
  • Allow file-related rules to validate PSR-7 interfaces
  • Auto-resolve exception namespaces

Improvements

  • Allow optional space for greek postal codes
  • Remove "Key" prefix from KeyException message
  • Update list of top-level domains

PHP support

Drop support for PHP 7.2.

First release of 2.0 series

04 Apr 22:02
2.0.0
b4ad2f6
Compare
Choose a tag to compare

The Respect development team announces the immediate availability of Respect\Validation 2.0.0.

This release adds nineteen new rules, improvements, and bug fixes.

This version is been in the master branch for a long time, it’s not perfect, but it is good enough.

Acknowledgment

We would like to thanks to all the developers who spent their free time to contribute to this project. Without you, this release would be impossible. Especially:

  • Danilo Correa (@danilocorrea87), for grabbing the bull by the horns and applying the new contribution guidelines to 36 rules, and for always asking how he could help to make the release go earlier.
  • Emmerson Siqueira (@batusa), for applying the new contribution guidelines to a few rules, reviewing code, managing issues, and challenging the ideas in this release.
  • William Espindola (@williamespindola), for applying the new contribution guidelines to 21 rules, and also doing code review, managing issues.
  • Danilo Benevides (@DaniloBenevides), for applying the new contribution guidelines to 16 rules.

Also, Jetbrains for providing a License that allowed me to refactor a lot faster using PHPStorm.

New rules

New features

  • Array with exception messages
  • Improve support for translation
  • Customize stringier
  • Custom exception namespace
  • No need to create one exception per rule
  • Increase granularity control of Not rule

PHP support

  • Drops support for PHP < 7.2

Backwards Compatibility Breaks

This version (2.0) has more than 8k backward compatibility breaks 1 with the last version (1.1). Most of them, are all the classes becoming final and public properties becoming private, but there are some other big ones. All those backward compatibility breaks help Validation to be easier to maintain, allowing us to release more and more often.

Below a more detailed list of the main backward compatibility breaks:

Almost all classes are final

There are many reasons why classes should be final 2. Most classes we have are self-contained, and there are not many cases that inheritance is necessary. We want to encourage users to use them to use composition rather than inheritance, especially if we are talking about the rules, and for that same reason, we are also focusing on making their APIs clearer.

No more public properties

Public properties are one of the enemies of maintainability because they make the objects mutable and unpredictable. With them, we cannot ensure an object has a valid state, and we need to validate the properties before using them. Besides, changing a property name is a background compatibility break.

PHP 7 type-hinting

In this version, the whole codebase uses PHP 7.1 type-hinting. They are also using strict typing.

Methods assert() and check() do not return values

In the last versions, those methods were supposed to return a boolean value or throw an exception. However, in practice, those methods throw an exception when the validation fails and return TRUE when the validation passes.

In this version, those methods don't return any value: when it throws an exception it means that the validation failed; when they don't throw an exception it means that the validation passed.

NestedValidationException::findMessages() was removed

After trying to fix its behavior many times, it was clear that the method itself was very confusing. Also, it became unnecessary due to how Validation evolved during the development of version 2.0.

In older versions, that method is mainly used to translate, customize templates, and retrieve the messages in an array structure.

In this version, users can configure a global translator in the Factory. As for the customization and to retrieve the messages in an array structure, users can use "NestedValidationException::getMessages()" that does a much better job.

Because of the reasons mentioned above, and for the fact that "NestedValidationException::findMessages()" is so high maintenance as a consequence of all its edge cases, it made sense to remove it from the codebase.

Rules cannot be overwritten

In the previous versions, user could overwrite Validation rules using with(), not they can’t./

OneOf rule has different behavior

In the last version, the OneOf rule validation passes if any assigned rule validation passes. In this version, the OneOf rule validation pass if only one of the assigned rule validation passes.

We also created the AnyOf rule in which the validation passes if any assigned rule validation passes.

Date rule has different behavior

In the last version, the Date rule validation passes if the input is a date, time, or date and time. However, it does not provide a way to be specific about the validation of date or time.

In this version, the Date rule validation passes only if the input is a date. We also created a [Time][] rule to validate time, and a DateTime rule to validate date and time (as Date used to be).

Min, Max, and Between rule have different behavior

In the last version, Min, Max, and Between allow users to define whether the validation is inclusive or exclusive with a boolean value in their constructor. Those boolean values not made the complexity or those rules higher, but also confusing sometimes.

In this version, the validation of those rules is always inclusive, and to use Between you need it is necessary to provide both minimum and maximum values. To help with non-inclusive validation we created LessThan and GreaterThan rules.

Each rule has different behavior

In this version, the Each rule can validate both keys and values of the input. In this version, the Each rule can only validate the values of the input.

Some rules were renamed

Some rules were removed

  • *SubdivisionCode rules: in favor of only [SubdivisionCode][] rule
  • Age: in favor of MinAge and MaxAge
  • IdentityCard: in favor of PolishIdCard
  • Bank, BankAccount, and Bic: these rules were depending on the same dependency. That dependency kept on breaking the build for a while and after struggling with that so many times it seemed like removing them would be the best option.

[Subd...

Read more

Update ISO codes and TLD

28 May 07:38
1.1.31
45d109f
Compare
Choose a tag to compare
  • Update list of country codes
  • Update list of currency codes
  • Update list of language code
  • Update list of subdivision codes
  • Update list of top-level domains

1.1.19

02 Jul 06:30
667ed36
Compare
Choose a tag to compare
  • Fix grammatical errors in URL exception message
  • Fix wrong behavior when using templates
  • Make clear that "Alnum" rule accepts whitespaces
  • Fix postal code for The Netherlands
  • Fix wrong behavior with nested exceptions
  • Fix "IntVal" considering boolean values as valid