Skip to content

Commit a93dd4d

Browse files
committed
minor #1759 [LiveComponent] hide property-info deprecations in Symfony 7.1 (kbond)
This PR was merged into the 2.x branch. Discussion ---------- [LiveComponent] hide property-info deprecations in Symfony 7.1 | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Issues | n/a | License | MIT This fixes the LiveComponent CI on 7.1. Commits ------- 7c8fef7 [LiveComponent] hide property-info deprecations in Symfony 7.1
2 parents b3482eb + 7c8fef7 commit a93dd4d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Diff for: src/LiveComponent/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"symfony/form": "^5.4|^6.0|^7.0",
4444
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
4545
"symfony/options-resolver": "^5.4|^6.0|^7.0",
46-
"symfony/phpunit-bridge": "^6.0|^7.0",
46+
"symfony/phpunit-bridge": "^6.1|^7.0",
4747
"symfony/property-info": "^5.4|^6.0|^7.0",
4848
"symfony/security-bundle": "^5.4|^6.0|^7.0",
4949
"symfony/serializer": "^5.4|^6.0|^7.0",

Diff for: src/LiveComponent/phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<server name="KERNEL_CLASS" value="Symfony\UX\LiveComponent\Tests\Fixtures\Kernel"/>
1919
<server name="DATABASE_URL" value="sqlite:///%kernel.project_dir%/var/data.db"/>
2020
<env name="SHELL_VERBOSITY" value="-1"/>
21-
<server name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&amp;max[direct]=0"/>
21+
<server name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&amp;max[direct]=0&amp;ignoreFile=./tests/baseline-ignore"/>
2222
</php>
2323

2424
<testsuites>

Diff for: src/LiveComponent/tests/baseline-ignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
%Since symfony/property-info 7.1: The "Symfony\\Component\\PropertyInfo\\Extractor\\ReflectionExtractor::getTypes\(\)".+%
2+
%Since symfony/property-info 7.1: The "Symfony\\Component\\PropertyInfo\\Extractor\\PhpStanExtractor::getTypes\(\)".+%
3+
%Since symfony/property-info 7.1: The "Symfony\\Component\\PropertyInfo\\Extractor\\PhpDocExtractor::getTypes\(\)".+%
4+
%Since symfony/property-info 7.1: The "Symfony\\Component\\PropertyInfo\\PropertyInfoExtractor::getTypes\(\)".+%
5+
%Since symfony/property-info 7.1: The "Symfony\\Component\\PropertyInfo\\Type" class is deprecated..+%

0 commit comments

Comments
 (0)