Skip to content

[Yaml] update changelog and upgrade files #19538

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions UPGRADE-3.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
3 changes: 3 additions & 0 deletions UPGRADE-4.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions src/Symfony/Component/Yaml/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down