Version 1
[yaffs-website] / vendor / symfony / yaml / CHANGELOG.md
1 CHANGELOG
2 =========
3
4 2.8.0
5 -----
6
7  * Deprecated usage of a colon in an unquoted mapping value
8  * Deprecated usage of @, \`, | and > at the beginning of an unquoted string
9  * When surrounding strings with double-quotes, you must now escape `\` characters. Not
10    escaping those characters (when surrounded by double-quotes) is deprecated.
11
12    Before:
13
14    ```yml
15    class: "Foo\Var"
16    ```
17
18    After:
19
20    ```yml
21    class: "Foo\\Var"
22    ```
23
24 2.1.0
25 -----
26
27  * Yaml::parse() does not evaluate loaded files as PHP files by default
28    anymore (call Yaml::enablePhpParsing() to get back the old behavior)