Skip to content
This repository has been archived by the owner on May 9, 2021. It is now read-only.

Bump symfony/validator from 5.1.7 to 5.2.2 #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2021

Bumps symfony/validator from 5.1.7 to 5.2.2.

Release notes

Sourced from symfony/validator's releases.

v5.2.2

Changelog (symfony/validator@v5.2.1...v5.2.2)

  • bug #39872 propagate the object being validated to nested constraints (xabbuh)
  • bug #39936 Fix DebugCommand (loic425)
  • bug #39633 Drop int return type from parseFilesize() (LukeTowers)
  • bug #39649 propagate groups to nested constraints (xabbuh)
  • bug #39647 Update Isin message to match the translation files (derrabus)

v5.2.1

Changelog (symfony/validator@v5.2.0...v5.2.1)

  • no changes

v5.2.0

Changelog (symfony/validator@v5.2.0-RC2...v5.2.0)

  • bug #39068 Silent deprecation triggered by libxml_disable_entity_loader (jderusse)

v5.2.0-RC2

Changelog (symfony/validator@v5.2.0-RC1...v5.2.0-RC2)

  • bug #38387 prevent hash collisions caused by reused object hashes (fancyweb, xabbuh)
  • bug #39070 Remove IsinValidator's validator dependency (derrabus)

v5.2.0-RC1

Changelog (symfony/validator@v5.2.0-BETA3...v5.2.0-RC1)

  • feature #39032 Allow load mappings from attributes without doctrine/annotations (derrabus)
  • bug #39002 Override the default option of the choice constraint (benji07)

v5.1.11

Changelog (symfony/validator@v5.1.10...v5.1.11)

  • bug #39872 propagate the object being validated to nested constraints (xabbuh)
  • bug #39633 Drop int return type from parseFilesize() (LukeTowers)
  • bug #39649 propagate groups to nested constraints (xabbuh)

v5.1.10

Changelog (symfony/validator@v5.1.9...v5.1.10)

  • no changes

v5.1.9

Changelog (symfony/validator@v5.1.8...v5.1.9)

  • bug #39068 Silent deprecation triggered by libxml_disable_entity_loader (jderusse)
  • bug #38387 prevent hash collisions caused by reused object hashes (fancyweb, xabbuh)

v5.1.8

... (truncated)

Changelog

Sourced from symfony/validator's changelog.

CHANGELOG

5.2.0

  • added a Cascade constraint to ease validating nested typed object properties

  • deprecated the allowEmptyString option of the Length constraint

    Before:

    use Symfony\Component\Validator\Constraints as Assert;
    /**
    
    @Assert\Length(min=5, allowEmptyString=true)
    */

After:

use Symfony\Component\Validator\Constraints as Assert;
/**

@Assert\AtLeastOneOf({

@Assert\Blank(),



@Assert\Length(min=5)


})
*/
  • added the Isin constraint and validator

  • added the ULID constraint and validator

  • added support for UUIDv6 in Uuid constraint

  • enabled the validator to load constraints from PHP attributes

  • deprecated the NumberConstraintTrait trait

  • deprecated setting or creating a Doctrine annotation reader via ValidatorBuilder::enableAnnotationMapping(), pass true as first parameter and additionally call setDoctrineAnnotationReader() or addDefaultDoctrineAnnotationReader() to set up the annotation reader

  • 5.1.0

    • added the Hostname constraint and validator
    • added the alpha3 option to the Country and Language constraints
    • allow to define a reusable set of constraints by extending the Compound constraint
    • added Sequentially constraint, to sequentially validate a set of constraints (any violation raised will prevent further validation of the nested constraints)
    • added the divisibleBy option to the Count constraint
    • added the ExpressionLanguageSyntax constraint

    5.0.0

    ... (truncated)

    Commits
    • c2c234d Merge branch '5.1' into 5.2
    • c651438 Use import instead of FQCN
    • d4bf2ca Merge branch '5.1' into 5.2
    • 6531b7e Fix merge
    • 9edf674 Merge branch '5.1' into 5.2
    • abcd19e Merge branch '4.4' into 5.1
    • 0394791 Use createMock() and use import instead of FQCN
    • c4077f2 Merge branch '5.1' into 5.2
    • 52abe09 bug #39872 [Validator] propagate the object being validated to nested constra...
    • 847962f propagate the object being validated to sub-constraints
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

    @dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Feb 1, 2021
    @codecov
    Copy link

    codecov bot commented Feb 1, 2021

    Codecov Report

    Merging #93 (d9c9c15) into master (50ad592) will not change coverage.
    The diff coverage is n/a.

    Impacted file tree graph

    @@            Coverage Diff            @@
    ##             master      #93   +/-   ##
    =========================================
      Coverage     14.77%   14.77%           
      Complexity      802      802           
    =========================================
      Files           142      142           
      Lines          2193     2193           
    =========================================
      Hits            324      324           
      Misses         1869     1869           

    Continue to review full report at Codecov.

    Legend - Click here to learn more
    Δ = absolute <relative> (impact), ø = not affected, ? = missing data
    Powered by Codecov. Last update 50ad592...d9c9c15. Read the comment docs.

    Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
    Labels
    dependencies Pull requests that update a dependency file php Pull requests that update Php code
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    0 participants