File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ CHANGELOG
28
28
* Made ` BrowserKitAssertionsTrait ` report the original error message in case of a failure
29
29
* Added ability for ` config:dump-reference ` and ` debug:config ` to dump and debug kernel container extension configuration.
30
30
* Deprecated ` session.attribute_bag ` service and ` session.flash_bag ` service.
31
- * Added ` UidNormalizer ` to the framework serializer.
32
31
33
32
5.0.0
34
33
-----
Original file line number Diff line number Diff line change 44
44
use Symfony \Component \Serializer \Normalizer \ObjectNormalizer ;
45
45
use Symfony \Component \Serializer \Normalizer \ProblemNormalizer ;
46
46
use Symfony \Component \Serializer \Normalizer \PropertyNormalizer ;
47
+ use Symfony \Component \Serializer \Normalizer \UidNormalizer ;
47
48
use Symfony \Component \Serializer \Normalizer \UnwrappingDenormalizer ;
48
49
use Symfony \Component \Serializer \Serializer ;
49
50
use Symfony \Component \Serializer \SerializerInterface ;
106
107
->args ([service ('serializer.property_accessor ' )])
107
108
->tag ('serializer.normalizer ' , ['priority ' => 1000 ])
108
109
110
+ ->set ('serializer.normalizer.uid ' , UidNormalizer::class)
111
+ ->tag ('serializer.normalizer ' , ['priority ' => -915 ])
112
+
109
113
->set ('serializer.normalizer.object ' , ObjectNormalizer::class)
110
114
->args ([
111
115
service ('serializer.mapping.class_metadata_factory ' ),
You can’t perform that action at this time.
0 commit comments