Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf354c1e

Browse files
committed
feature#51425 [FrameworkBundle][Validator] Deprecate annotation occurrences (alexandre-daubois)
This PR was merged into the 6.4 branch.Discussion----------[FrameworkBundle][Validator] Deprecate annotation occurrences| Q | A| ------------- | ---| Branch? | 6.4| Bug fix? | no| New feature? | no| Deprecations? | yes| Tickets | Part of#51381| License | MIT| Doc PR | - * Deprecate `framework.validation.enable_annotations` in favor of `framework.validation.enable_attributes` * Deprecate `framework.serializer.enable_annotations` in favor of use `framework.serializer.enable_attributes` * Deprecate `ValidatorBuilder::enableAnnotationMapping()` in favor of `ValidatorBuilder::enableAttributeMapping()` * Deprecate `ValidatorBuilder::disableAnnotationMapping()` in favor of `ValidatorBuilder::disableAttributeMapping()` * Deprecate `AnnotationLoader` in favor of `AttributeLoader`Commits-------2e1e805 [FrameworkBundle][Validator] Deprecate annotation occurrences
2 parents8fe4804 +2e1e805 commitf354c1e

File tree

100 files changed

+306
-191
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+306
-191
lines changed

‎UPGRADE-6.4.md‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ FrameworkBundle
9494
* Deprecate not setting the`framework.uid.default_uuid_version` config option; it will default to`7` in 7.0
9595
* Deprecate not setting the`framework.uid.time_based_uuid_version` config option; it will default to`7` in 7.0
9696
* Deprecate not setting the`framework.validation.email_validation_mode` config option; it will default to`html5` in 7.0
97+
* Deprecate`framework.validation.enable_annotations`, use`framework.validation.enable_attributes` instead
98+
* Deprecate`framework.serializer.enable_annotations`, use`framework.serializer.enable_attributes` instead
9799

98100
HttpFoundation
99101
--------------
@@ -158,3 +160,6 @@ Validator
158160
* Deprecate passing an annotation reader to the constructor signature of`AnnotationLoader`
159161
* Deprecate`ValidatorBuilder::setDoctrineAnnotationReader()`
160162
* Deprecate`ValidatorBuilder::addDefaultDoctrineAnnotationReader()`
163+
* Deprecate`ValidatorBuilder::enableAnnotationMapping()`, use`ValidatorBuilder::enableAttributeMapping()` instead
164+
* Deprecate`ValidatorBuilder::disableAnnotationMapping()`, use`ValidatorBuilder::disableAttributeMapping()` instead
165+
* Deprecate`AnnotationLoader`, use`AttributeLoader` instead

‎src/Symfony/Bridge/Doctrine/Tests/Validator/Constraints/UniqueEntityTest.php‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
usePHPUnit\Framework\TestCase;
1515
useSymfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
1616
useSymfony\Component\Validator\Mapping\ClassMetadata;
17-
useSymfony\Component\Validator\Mapping\Loader\AnnotationLoader;
17+
useSymfony\Component\Validator\Mapping\Loader\AttributeLoader;
1818

1919
class UniqueEntityTestextends TestCase
2020
{
2121
publicfunctiontestAttributeWithDefaultProperty()
2222
{
2323
$metadata =newClassMetadata(UniqueEntityDummyOne::class);
24-
$loader =newAnnotationLoader();
24+
$loader =newAttributeLoader();
2525
self::assertTrue($loader->loadClassMetadata($metadata));
2626

2727
/** @var UniqueEntity $constraint */
@@ -35,7 +35,7 @@ public function testAttributeWithDefaultProperty()
3535
publicfunctiontestAttributeWithCustomizedService()
3636
{
3737
$metadata =newClassMetadata(UniqueEntityDummyTwo::class);
38-
$loader =newAnnotationLoader();
38+
$loader =newAttributeLoader();
3939
self::assertTrue($loader->loadClassMetadata($metadata));
4040

4141
/** @var UniqueEntity $constraint */
@@ -50,7 +50,7 @@ public function testAttributeWithCustomizedService()
5050
publicfunctiontestAttributeWithGroupsAndPaylod()
5151
{
5252
$metadata =newClassMetadata(UniqueEntityDummyThree::class);
53-
$loader =newAnnotationLoader();
53+
$loader =newAttributeLoader();
5454
self::assertTrue($loader->loadClassMetadata($metadata));
5555

5656
/** @var UniqueEntity $constraint */

‎src/Symfony/Bridge/Doctrine/Tests/Validator/DoctrineLoaderTest.php‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class DoctrineLoaderTest extends TestCase
3939
publicfunctiontestLoadClassMetadata()
4040
{
4141
$validator = Validation::createValidatorBuilder()
42-
->enableAnnotationMapping(true)
42+
->enableAttributeMapping()
4343
->addLoader(newDoctrineLoader(DoctrineTestHelper::createTestEntityManager(),'{^Symfony\\\\Bridge\\\\Doctrine\\\\Tests\\\\Fixtures\\\\DoctrineLoader}'))
4444
->getValidator()
4545
;
@@ -142,7 +142,7 @@ public function testExtractEnum()
142142
{
143143
$validator = Validation::createValidatorBuilder()
144144
->addMethodMapping('loadValidatorMetadata')
145-
->enableAnnotationMapping(true)
145+
->enableAttributeMapping()
146146
->addLoader(newDoctrineLoader(DoctrineTestHelper::createTestEntityManager(),'{^Symfony\\\\Bridge\\\\Doctrine\\\\Tests\\\\Fixtures\\\\DoctrineLoader}'))
147147
->getValidator()
148148
;
@@ -159,7 +159,7 @@ public function testExtractEnum()
159159
publicfunctiontestFieldMappingsConfiguration()
160160
{
161161
$validator = Validation::createValidatorBuilder()
162-
->enableAnnotationMapping(true)
162+
->enableAttributeMapping()
163163
->addXmlMappings([__DIR__.'/../Resources/validator/BaseUser.xml'])
164164
->addLoader(
165165
newDoctrineLoader(
@@ -200,7 +200,7 @@ public static function regexpProvider(): array
200200
publicfunctiontestClassNoAutoMapping()
201201
{
202202
$validator = Validation::createValidatorBuilder()
203-
->enableAnnotationMapping(true)
203+
->enableAttributeMapping()
204204
->addLoader(newDoctrineLoader(DoctrineTestHelper::createTestEntityManager(),'{.*}'))
205205
->getValidator();
206206

‎src/Symfony/Bridge/Doctrine/composer.json‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"symfony/stopwatch":"^5.4|^6.0|^7.0",
4242
"symfony/translation":"^5.4|^6.0|^7.0",
4343
"symfony/uid":"^5.4|^6.0|^7.0",
44-
"symfony/validator":"^5.4.25|~6.2.12|^6.3.1|^7.0",
44+
"symfony/validator":"^6.4|^7.0",
4545
"symfony/var-dumper":"^5.4|^6.0|^7.0",
4646
"doctrine/collections":"^1.0|^2.0",
4747
"doctrine/data-fixtures":"^1.1",
@@ -63,7 +63,7 @@
6363
"symfony/property-info":"<5.4",
6464
"symfony/security-bundle":"<5.4",
6565
"symfony/security-core":"<6.4",
66-
"symfony/validator":"<5.4.25|>=6,<6.2.12|>=6.3,<6.3.1"
66+
"symfony/validator":"<6.4"
6767
},
6868
"autoload": {
6969
"psr-4": {"Symfony\\Bridge\\Doctrine\\":"" },

‎src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ CHANGELOG
2222
* Deprecate not setting the`framework.uid.default_uuid_version` config option; it will default to`7` in 7.0
2323
* Deprecate not setting the`framework.uid.time_based_uuid_version` config option; it will default to`7` in 7.0
2424
* Deprecate not setting the`framework.validation.email_validation_mode` config option; it will default to`html5` in 7.0
25+
* Deprecate`framework.validation.enable_annotations`, use`framework.validation.enable_attributes` instead
26+
* Deprecate`framework.serializer.enable_annotations`, use`framework.serializer.enable_attributes` instead
2527

2628
6.3
2729
---

‎src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php‎

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,6 +1032,16 @@ private function addValidationSection(ArrayNodeDefinition $rootNode, callable $e
10321032
trigger_deprecation('symfony/framework-bundle','6.4','Not setting the "framework.validation.email_validation_mode" config option is deprecated. It will default to "html5" in 7.0.');
10331033
}
10341034

1035+
if (isset($v['enable_annotations'])) {
1036+
trigger_deprecation('symfony/framework-bundle','6.4','Option "enable_annotations" at "framework.validation" is deprecated. Use the "enable_attributes" option instead.');
1037+
1038+
if (!isset($v['enable_attributes'])) {
1039+
$v['enable_attributes'] =$v['enable_annotations'];
1040+
}else {
1041+
thrownewLogicException('The "enable_annotations" and "enable_attributes" options at path "framework.validation" must not be both set. Only the "enable_attributes" option must be used.');
1042+
}
1043+
}
1044+
10351045
return$v;
10361046
})
10371047
->end()
@@ -1041,7 +1051,8 @@ private function addValidationSection(ArrayNodeDefinition $rootNode, callable $e
10411051
->{$enableIfStandalone('symfony/validator', Validation::class)}()
10421052
->children()
10431053
->scalarNode('cache')->end()
1044-
->booleanNode('enable_annotations')->{!class_exists(FullStack::class) ?'defaultTrue' :'defaultFalse'}()->end()
1054+
->booleanNode('enable_annotations')->end()
1055+
->booleanNode('enable_attributes')->{!class_exists(FullStack::class) ?'defaultTrue' :'defaultFalse'}()->end()
10451056
->arrayNode('static_method')
10461057
->defaultValue(['loadValidatorMetadata'])
10471058
->prototype('scalar')->end()
@@ -1147,10 +1158,25 @@ private function addSerializerSection(ArrayNodeDefinition $rootNode, callable $e
11471158
$rootNode
11481159
->children()
11491160
->arrayNode('serializer')
1161+
->validate()
1162+
->always(function ($v) {
1163+
if (isset($v['enable_annotations'])) {
1164+
trigger_deprecation('symfony/framework-bundle','6.4','Option "enable_annotations" at "framework.serializer" is deprecated. Use the "enable_attributes" option instead.');
1165+
1166+
if (!isset($v['enable_attributes'])) {
1167+
$v['enable_attributes'] =$v['enable_annotations'];
1168+
}else {
1169+
thrownewLogicException('The "enable_annotations" and "enable_attributes" options at path "framework.serializer" must not be both set. Only the "enable_attributes" option must be used.');
1170+
}
1171+
}
1172+
1173+
return$v;
1174+
})->end()
11501175
->info('serializer configuration')
11511176
->{$enableIfStandalone('symfony/serializer', Serializer::class)}()
11521177
->children()
1153-
->booleanNode('enable_annotations')->{!class_exists(FullStack::class) ?'defaultTrue' :'defaultFalse'}()->end()
1178+
->booleanNode('enable_annotations')->end()
1179+
->booleanNode('enable_attributes')->{!class_exists(FullStack::class) ?'defaultTrue' :'defaultFalse'}()->end()
11541180
->scalarNode('name_converter')->end()
11551181
->scalarNode('circular_reference_handler')->end()
11561182
->scalarNode('max_depth_handler')->end()

‎src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1657,8 +1657,8 @@ private function registerValidationConfiguration(array $config, ContainerBuilder
16571657
$definition =$container->findDefinition('validator.email');
16581658
$definition->replaceArgument(0,$config['email_validation_mode']);
16591659

1660-
if (\array_key_exists('enable_annotations',$config) &&$config['enable_annotations']) {
1661-
$validatorBuilder->addMethodCall('enableAnnotationMapping', [true]);
1660+
if (\array_key_exists('enable_attributes',$config) &&$config['enable_attributes']) {
1661+
$validatorBuilder->addMethodCall('enableAttributeMapping', [true]);
16621662
if ($this->isInitializedConfigEnabled('annotations') &&method_exists(ValidatorBuilder::class,'setDoctrineAnnotationReader')) {
16631663
$validatorBuilder->addMethodCall('setDoctrineAnnotationReader', [newReference('annotation_reader')]);
16641664
}
@@ -1930,7 +1930,7 @@ private function registerSerializerConfiguration(array $config, ContainerBuilder
19301930
}
19311931

19321932
$serializerLoaders = [];
1933-
if (isset($config['enable_annotations']) &&$config['enable_annotations']) {
1933+
if (isset($config['enable_attributes']) &&$config['enable_attributes']) {
19341934
if ($container->getParameter('kernel.debug')) {
19351935
$container->removeDefinition('serializer.mapping.cache_class_metadata_factory');
19361936
}

‎src/Symfony/Bundle/FrameworkBundle/Resources/config/schema/symfony-1.0.xsd‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@
269269
<xsd:attributename="enabled"type="xsd:boolean" />
270270
<xsd:attributename="cache"type="xsd:string" />
271271
<xsd:attributename="enable-annotations"type="xsd:boolean" />
272+
<xsd:attributename="enable-attributes"type="xsd:boolean" />
272273
<xsd:attributename="static-method"type="xsd:boolean" />
273274
<xsd:attributename="translation-domain"type="xsd:string" />
274275
<xsd:attributename="strict-email"type="xsd:boolean" />
@@ -322,6 +323,7 @@
322323
</xsd:choice>
323324
<xsd:attributename="enabled"type="xsd:boolean" />
324325
<xsd:attributename="enable-annotations"type="xsd:boolean" />
326+
<xsd:attributename="enable-attributes"type="xsd:boolean" />
325327
<xsd:attributename="name-converter"type="xsd:string" />
326328
<xsd:attributename="circular-reference-handler"type="xsd:string" />
327329
<xsd:attributename="max-depth-handler"type="xsd:string" />

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function testWarmUp()
2626
$validatorBuilder->addXmlMapping(__DIR__.'/../Fixtures/Validation/Resources/person.xml');
2727
$validatorBuilder->addYamlMapping(__DIR__.'/../Fixtures/Validation/Resources/author.yml');
2828
$validatorBuilder->addMethodMapping('loadValidatorMetadata');
29-
$validatorBuilder->enableAnnotationMapping();
29+
$validatorBuilder->enableAttributeMapping();
3030

3131
$file =sys_get_temp_dir().'/cache-validator.php';
3232
@unlink($file);
@@ -46,7 +46,7 @@ public function testWarmUpWithAnnotations()
4646
{
4747
$validatorBuilder =newValidatorBuilder();
4848
$validatorBuilder->addYamlMapping(__DIR__.'/../Fixtures/Validation/Resources/categories.yml');
49-
$validatorBuilder->enableAnnotationMapping();
49+
$validatorBuilder->enableAttributeMapping();
5050

5151
$file =sys_get_temp_dir().'/cache-validator-with-annotations.php';
5252
@unlink($file);

‎src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ protected static function getBundleDefaultConfig()
591591
],
592592
'validation' => [
593593
'enabled' => !class_exists(FullStack::class),
594-
'enable_annotations' => !class_exists(FullStack::class),
594+
'enable_attributes' => !class_exists(FullStack::class),
595595
'static_method' => ['loadValidatorMetadata'],
596596
'translation_domain' =>'validators',
597597
'mapping' => [
@@ -612,7 +612,7 @@ protected static function getBundleDefaultConfig()
612612
'serializer' => [
613613
'default_context' => ['foo' =>'bar', JsonDecode::DETAILED_ERROR_MESSAGES =>true],
614614
'enabled' =>true,
615-
'enable_annotations' => !class_exists(FullStack::class),
615+
'enable_attributes' => !class_exists(FullStack::class),
616616
'mapping' => ['paths' => []],
617617
],
618618
'property_access' => [

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp