From 86b84a573b9141bc26ae6de440c2cca4924733b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Mon, 2 Feb 2015 23:11:58 +0100 Subject: [PATCH] [Serializer] Update changelog --- src/Symfony/Component/Serializer/CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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 -----