Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Bump symfony/validator from 4.4.2 to 5.0.10#374

Closed
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/composer/symfony/validator-5.0.10
Closed

Bump symfony/validator from 4.4.2 to 5.0.10#374
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/composer/symfony/validator-5.0.10

Conversation

@dependabot-preview
Copy link
Contributor

Bumps symfony/validator from 4.4.2 to 5.0.10.

Release notes

Sourced from symfony/validator's releases.

v5.0.10

Changelog (symfony/validator@v5.0.9...v5.0.10)

  • no changes

v5.0.9

Changelog (symfony/validator@v5.0.8...v5.0.9)

  • bug #36868 Use Mime component to determine mime type for file validator (pierredup)
  • bug #36905 Catch expected ValueError (derrabus)
  • bug #36894 never directly validate Existence (Required/Optional) constraints (xabbuh)
  • bug #36672 Skip validation when email is an empty object (acrobat)
  • bug #36627 fix lazy property usage. (bendavies)
  • bug #36501 Show the ParseException message in all YAML file loaders (fancyweb)

v5.0.8

Changelog (symfony/validator@v5.0.7...v5.0.8)

  • bug #35591 do not merge constraints within interfaces (greedyivan)
  • bug #36365 Fixed default group for nested composite constraints (HeahDude)
  • bug #36286 Allow URL-encoded special characters in basic auth part of URLs (cweiske)
  • bug #36245 Fixed calling getters before resolving groups (HeahDude)

v5.0.7

Changelog (symfony/validator@v5.0.6...v5.0.7)

  • bug #36216 Assert Valid with many groups (phucwan91)

v5.0.6

Changelog (symfony/validator@v5.0.5...v5.0.6)

  • bug #36103 fix preloading script generation (nicolas-grekas)

v5.0.5

Changelog (symfony/validator@v5.0.4...v5.0.5)

  • bug #35546 check for __get method existence if property is uninitialized (alekitto)

v5.0.4

Changelog (symfony/validator@v5.0.3...v5.0.4)

  • bug #35532 fix access to uninitialized property when getting value (greedyivan)

v5.0.3

Changelog (symfony/validator@v5.0.2...v5.0.3)

  • no changes

v4.4.10

Changelog (symfony/validator@v4.4.9...v4.4.10)

... (truncated)
Changelog

Sourced from symfony/validator's changelog.

CHANGELOG

5.2.0

  • 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)


})
*/

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

  • an ExpressionLanguage instance or null must be passed as the first argument of ExpressionValidator::__construct()
  • removed the checkDNS and dnsMessage options of the Url constraint
  • removed the checkMX, checkHost and strict options of the Email constraint
  • removed support for validating instances of \DateTimeInterface in DateTimeValidator, DateValidator and TimeValidator
  • removed support for using the Bic, Country, Currency, Language and Locale constraints without symfony/intl
  • removed support for using the Email constraint without egulias/email-validator
... (truncated)
Commits
  • 8bc3321 Merge branch '4.4' into 5.0
  • 2fae337 Merge branch '3.4' into 4.4
  • 5fb8812 bug #36894 [Validator] never directly validate Existence (Required/Optional) ...
  • ec017d5 [Validator] Use Mime component to determine mime type for file validator
  • 3c817de [Validator] add missing Czech translations
  • 988fbc1 Merge branch '4.4' into 5.0
  • 425e8b9 Merge branch '3.4' into 4.4
  • 51bed7f [Validator] Catch expected ValueError.
  • e625da8 never directly validate Existence (Required/Optional) constraints
  • bf95090 Merge branch '4.4' into 5.0
  • 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 use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [symfony/validator](https://github.com/symfony/validator) from 4.4.2 to 5.0.10.
- [Release notes](https://github.com/symfony/validator/releases)
- [Changelog](https://github.com/symfony/validator/blob/master/CHANGELOG.md)
- [Commits](symfony/validator@v4.4.2...v5.0.10)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jun 17, 2020
@dependabot-preview
Copy link
Contributor Author

Superseded by #383.

@dependabot-preview dependabot-preview bot deleted the dependabot/composer/symfony/validator-5.0.10 branch July 24, 2020 07:46
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants