Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: symfony/yaml
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.1.7
Choose a base ref
...
head repository: symfony/yaml
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.1.8
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 11, 2018

  1. Bump phpunit XSD version to 5.2

    Some attributes being used in the phpunit configuration files, namely
    failOnRisky and failOnWarning were introduced in phpunit 5.2.0. The
    Composer configuration shows that tests should run with old versions of
    phpunit, but phpunit only validates the configuration against the XSD
    since phpunit 7.2.0.
    These changes can be tested as follows:
    
    wget http://schema.phpunit.de/5.2/phpunit.xsd
    xargs xmllint --schema phpunit.xsd  1>/dev/null
    find src -name phpunit.xml.dist| xargs xmllint --schema phpunit.xsd  1>/dev/null
    
    See sebastianbergmann/phpunit@7e06a82
    See https://github.com/symfony/symfony/blob/46e3745a03e199e64cc0fcf3284a96b5a25dcee9/composer.json#L98
    greg0ire committed Nov 11, 2018
    Copy the full SHA
    02c1859 View commit details
  2. Merge branch '2.8' into 3.4

    * 2.8:
      [Form] Hardened test suite for empty data
      Bump phpunit XSD version to 5.2
      Add required key attribute
    nicolas-grekas committed Nov 11, 2018
    Copy the full SHA
    291e13d View commit details
  3. Merge branch '3.4' into 4.1

    * 3.4:
      [Form] Hardened test suite for empty data
      Bump phpunit XSD version to 5.2
      [Fwb][EventDispatcher][HttpKernel] Fix getClosureScopeClass usage to describe callables
      Add required key attribute
    nicolas-grekas committed Nov 11, 2018
    Copy the full SHA
    fe87e3b View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 phpunit.xml.dist
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.2/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"