File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
src/Symfony/Component/Yaml Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 77
77
* Support for silently ignoring duplicate keys in YAML has been deprecated and
78
78
will lead to a ` ParseException ` in Symfony 4.0.
79
79
80
- * Mappings with a colon that is not followed by a space are deprecated and
81
- will lead to a ` ParseException ` in Symfony 4.0.
80
+ * Mappings with a colon (` : ` ) that is not followed by a whitespace are deprecated
81
+ and will lead to a ` ParseException ` in Symfony 4.0 (e.g. ` foo:bar ` must be
82
+ ` foo: bar ` ).
Original file line number Diff line number Diff line change @@ -147,8 +147,9 @@ Translation
147
147
Yaml
148
148
----
149
149
150
- * Mappings with a colon that is not followed by a space are are not
151
- supported anymore and lead to a ` ParseException ` .
150
+ * Mappings with a colon (` : ` ) that is not followed by a whitespace are not
151
+ supported anymore and lead to a ` ParseException ` (e.g. ` foo:bar ` must be
152
+ ` foo: bar ` ).
152
153
153
154
* Starting an unquoted string with ` % ` leads to a ` ParseException ` .
154
155
Original file line number Diff line number Diff line change @@ -4,8 +4,9 @@ CHANGELOG
4
4
3.2.0
5
5
-----
6
6
7
- * Mappings with a colon that is not followed by a space are deprecated and
8
- will lead to a ` ParseException ` in Symfony 4.0.
7
+ * Mappings with a colon (` : ` ) that is not followed by a whitespace are deprecated
8
+ and will lead to a ` ParseException ` in Symfony 4.0 (e.g. ` foo:bar ` must be
9
+ ` foo: bar ` ).
9
10
10
11
* Added support for parsing PHP constants:
11
12
You can’t perform that action at this time.
0 commit comments