Skip to content

Commit 1981f06

Browse files
Merge branch '4.3' into 4.4
* 4.3: fix deps=low [VarExporter] fix support for PHP 7.4 Use PHP 7.4 on deps=low
2 parents 153e081 + 0a25cca commit 1981f06

33 files changed

+251
-80
lines changed

.travis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ env:
2626
matrix:
2727
include:
2828
- php: 7.1
29-
- php: 7.2
30-
env: deps=high
29+
env: php_extra="7.2"
3130
- php: 7.3
31+
env: deps=high
32+
- php: 7.4snapshot
3233
env: deps=low
3334
fast_finish: true
3435

@@ -78,6 +79,12 @@ before_install:
7879
export COMPONENTS=$(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n')
7980
find ~/.phpenv -name xdebug.ini -delete
8081
82+
if [[ $TRAVIS_PHP_VERSION = 7.4* && $deps ]]; then
83+
export PHPUNIT_X="$PHPUNIT_X,issue-32995"
84+
elif [[ $TRAVIS_PHP_VERSION = 7.4* ]]; then
85+
export PHPUNIT_X="$PHPUNIT --group issue-32995"
86+
fi
87+
8188
nanoseconds () {
8289
local cmd="date"
8390
local format="+%s%N"

src/Symfony/Bridge/Doctrine/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@
3737
"symfony/expression-language": "^3.4|^4.0|^5.0",
3838
"symfony/validator": "^3.4.31|^4.3.4|^5.0",
3939
"symfony/translation": "^3.4|^4.0|^5.0",
40-
"doctrine/annotations": "~1.0",
40+
"doctrine/annotations": "~1.7",
4141
"doctrine/cache": "~1.6",
4242
"doctrine/collections": "~1.0",
4343
"doctrine/data-fixtures": "1.0.*",
4444
"doctrine/dbal": "~2.4",
45-
"doctrine/orm": "^2.4.5",
45+
"doctrine/orm": "^2.6.3",
4646
"doctrine/reflection": "~1.0"
4747
},
4848
"conflict": {

src/Symfony/Bridge/Twig/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"twig/twig": "^1.41|^2.10"
2222
},
2323
"require-dev": {
24-
"egulias/email-validator": "^2.0",
24+
"egulias/email-validator": "^2.1.10",
2525
"symfony/asset": "^3.4|^4.0|^5.0",
2626
"symfony/dependency-injection": "^3.4|^4.0|^5.0",
2727
"symfony/finder": "^3.4|^4.0|^5.0",

src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/ValidatorCacheWarmerTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
class ValidatorCacheWarmerTest extends TestCase
2222
{
2323
/**
24+
* @group issue-32995
25+
*
2426
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
2527
*/
2628
public function testWarmUp()

src/Symfony/Bundle/FrameworkBundle/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030
"symfony/routing": "^4.4|^5.0"
3131
},
3232
"require-dev": {
33+
"doctrine/annotations": "~1.7",
3334
"doctrine/cache": "~1.0",
3435
"symfony/asset": "^3.4|^4.0|^5.0",
3536
"symfony/browser-kit": "^4.3|^5.0",
36-
"symfony/console": "^4.3|^5.0",
37+
"symfony/console": "^4.3.4|^5.0",
3738
"symfony/css-selector": "^3.4|^4.0|^5.0",
3839
"symfony/dom-crawler": "^4.3|^5.0",
3940
"symfony/polyfill-intl-icu": "~1.0",
@@ -58,9 +59,8 @@
5859
"symfony/yaml": "^3.4|^4.0|^5.0",
5960
"symfony/property-info": "^3.4|^4.0|^5.0",
6061
"symfony/web-link": "^4.4|^5.0",
61-
"doctrine/annotations": "~1.0",
6262
"phpdocumentor/reflection-docblock": "^3.0|^4.0",
63-
"twig/twig": "~1.34|~2.4"
63+
"twig/twig": "~1.41|~2.10"
6464
},
6565
"conflict": {
6666
"phpdocumentor/reflection-docblock": "<3.0",

src/Symfony/Bundle/SecurityBundle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"symfony/yaml": "^3.4|^4.0|^5.0",
4545
"symfony/expression-language": "^3.4|^4.0|^5.0",
4646
"doctrine/doctrine-bundle": "~1.5",
47-
"twig/twig": "~1.34|~2.4"
47+
"twig/twig": "~1.41|~2.10"
4848
},
4949
"conflict": {
5050
"symfony/browser-kit": "<4.2",

src/Symfony/Bundle/TwigBundle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"symfony/yaml": "^3.4|^4.0|^5.0",
3838
"symfony/framework-bundle": "^4.4|^5.0",
3939
"symfony/web-link": "^3.4|^4.0|^5.0",
40-
"doctrine/annotations": "~1.0",
40+
"doctrine/annotations": "~1.7",
4141
"doctrine/cache": "~1.0"
4242
},
4343
"conflict": {

src/Symfony/Component/Cache/Tests/Adapter/AdapterTestCase.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,8 @@ public function testPrune()
254254
}
255255

256256
/**
257+
* @group issue-32995
258+
*
257259
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
258260
*/
259261
public function testSavingObject()

src/Symfony/Component/Config/Tests/Resource/ClassExistenceResourceTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ public function testExistsKo()
7676
}
7777

7878
/**
79+
* @group issue-32995
80+
*
7981
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
8082
*/
8183
public function testBadParentWithTimestamp()
@@ -85,6 +87,8 @@ public function testBadParentWithTimestamp()
8587
}
8688

8789
/**
90+
* @group issue-32995
91+
*
8892
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
8993
*/
9094
public function testBadParentWithNoTimestamp()

src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,8 @@ public function testClassNotFoundThrowsException()
350350
}
351351

352352
/**
353+
* @group issue-32995
354+
*
353355
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
354356
*/
355357
public function testParentClassNotFoundThrowsException()
@@ -626,6 +628,8 @@ public function getCreateResourceTests()
626628
}
627629

628630
/**
631+
* @group issue-32995
632+
*
629633
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
630634
*/
631635
public function testIgnoreServiceWithClassNotExisting()
@@ -831,6 +835,8 @@ public function testExceptionWhenAliasExists()
831835
}
832836

833837
/**
838+
* @group issue-32995
839+
*
834840
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
835841
*/
836842
public function testExceptionWhenAliasDoesNotExist()

0 commit comments

Comments
 (0)