From e28825656b5e87dab854ad54426f6de6475f0be7 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 25 Aug 2016 08:47:13 +0200 Subject: [PATCH] [Yaml] improve changelog and upgrade entries --- UPGRADE-3.2.md | 5 +++-- UPGRADE-4.0.md | 5 +++-- src/Symfony/Component/Yaml/CHANGELOG.md | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/UPGRADE-3.2.md b/UPGRADE-3.2.md index 39b5ba0dca..a4f709324f 100644 --- a/UPGRADE-3.2.md +++ b/UPGRADE-3.2.md @@ -77,5 +77,6 @@ Yaml * Support for silently ignoring duplicate keys in YAML has been deprecated and will lead to a `ParseException` in Symfony 4.0. - * Mappings with a colon that is not followed by a space are deprecated and - will lead to a `ParseException` in Symfony 4.0. + * Mappings with a colon (`:`) that is not followed by a whitespace are deprecated + and will lead to a `ParseException` in Symfony 4.0 (e.g. `foo:bar` must be + `foo: bar`). diff --git a/UPGRADE-4.0.md b/UPGRADE-4.0.md index 014d2393e0..ef64f15d1d 100644 --- a/UPGRADE-4.0.md +++ b/UPGRADE-4.0.md @@ -147,8 +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`. + * Mappings with a colon (`:`) that is not followed by a whitespace are not + supported anymore and lead to a `ParseException`(e.g. `foo:bar` must be + `foo: bar`). * Starting an unquoted string with `%` leads to a `ParseException`. diff --git a/src/Symfony/Component/Yaml/CHANGELOG.md b/src/Symfony/Component/Yaml/CHANGELOG.md index b321cf0ca8..3fcebe554c 100644 --- a/src/Symfony/Component/Yaml/CHANGELOG.md +++ b/src/Symfony/Component/Yaml/CHANGELOG.md @@ -4,8 +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. + * Mappings with a colon (`:`) that is not followed by a whitespace are deprecated + and will lead to a `ParseException` in Symfony 4.0 (e.g. `foo:bar` must be + `foo: bar`). * Added support for parsing PHP constants: