-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Yaml] improve changelog and upgrade entries #19731
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think you are talking about the same thing than before There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. actually you just removed the wrong entry (see the following one) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh indeed, good catch. Thank you for the heads up. |
||
and will lead to a `ParseException` in Symfony 4.0 (e.g. `foo:bar` must be | ||
`foo: bar`). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW can't we add an example for this one? It looks hard to understand when you're not aware of the linked change.