From 3cd293280ddbddbfefb38c5101685239ee29a8aa Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Fri, 5 Aug 2016 00:00:11 +0200 Subject: [PATCH] [Yaml] update changelog and upgrade files --- UPGRADE-3.2.md | 6 ++++++ UPGRADE-4.0.md | 3 +++ src/Symfony/Component/Yaml/CHANGELOG.md | 3 +++ 3 files changed, 12 insertions(+) diff --git a/UPGRADE-3.2.md b/UPGRADE-3.2.md index edd6d70cb5..89b763a7d6 100644 --- a/UPGRADE-3.2.md +++ b/UPGRADE-3.2.md @@ -70,3 +70,9 @@ Validator // ... } ``` + +Yaml +---- + + * Mappings with a colon that is not followed by a space are deprecated and + will lead to a `ParseException` in Symfony 4.0. diff --git a/UPGRADE-4.0.md b/UPGRADE-4.0.md index 2abe339922..b4079bf269 100644 --- a/UPGRADE-4.0.md +++ b/UPGRADE-4.0.md @@ -147,6 +147,9 @@ Translation Yaml ---- + * Mappings with a colon that is not followed by a space are are not + supported anymore and lead to a `ParseException`. + * Starting an unquoted string with `%` leads to a `ParseException`. * The `Dumper::setIndentation()` method was removed. Pass the indentation diff --git a/src/Symfony/Component/Yaml/CHANGELOG.md b/src/Symfony/Component/Yaml/CHANGELOG.md index 7a14fb2467..961325c3f1 100644 --- a/src/Symfony/Component/Yaml/CHANGELOG.md +++ b/src/Symfony/Component/Yaml/CHANGELOG.md @@ -4,6 +4,9 @@ CHANGELOG 3.2.0 ----- + * Mappings with a colon that is not followed by a space are deprecated and + will lead to a `ParseException` in Symfony 4.0. + * Added support for parsing PHP constants: ```php