diff --git a/src/Symfony/Component/Serializer/CHANGELOG.md b/src/Symfony/Component/Serializer/CHANGELOG.md index 2f7310fd51..64be9caced 100644 --- a/src/Symfony/Component/Serializer/CHANGELOG.md +++ b/src/Symfony/Component/Serializer/CHANGELOG.md @@ -1,11 +1,26 @@ CHANGELOG ========= +2.7.0 +----- + + * added support for serialization and deserialization groups including + annotations, XML and YAML mapping. + * added `AbstractNormalizer` to factorise code and ease normalizers development + * added circular references handling for `PropertyNormalizer` + * added support for a context key called `object_to_populate` in `AbstractNormalizer` + to reuse existing objects in the deserialization process + * added `NameConverterInterface` and `CamelCaseToSnakeCaseNameConverter` + * [DEPRECATION] `GetSetMethodNormalizer::setCamelizedAttributes()` and + `PropertyNormalizer::setCamelizedAttributes()` are replaced by + `CamelCaseToSnakeCaseNameConverter` + 2.6.0 ----- * added a new serializer: `PropertyNormalizer`. Like `GetSetMethodNormalizer`, this normalizer will map an object's properties to an array. + * added circular references handling for `GetSetMethodNormalizer` 2.5.0 -----