Changelog
*Sourced from [symfony/yaml's changelog](https://github.com/symfony/yaml/blob/master/CHANGELOG.md).*
> CHANGELOG
> =========
>
> 5.0.0
> -----
>
> * Removed support for mappings inside multi-line strings.
> * removed support for implicit STDIN usage in the `lint:yaml` command, use `lint:yaml -` (append a dash) instead to make it explicit.
>
> 4.4.0
> -----
>
> * Added support for parsing the inline notation spanning multiple lines.
> * Added support to dump `null` as `~` by using the `Yaml::DUMP_NULL_AS_TILDE` flag.
> * deprecated accepting STDIN implicitly when using the `lint:yaml` command, use `lint:yaml -` (append a dash) instead to make it explicit.
>
> 4.3.0
> -----
>
> * Using a mapping inside a multi-line string is deprecated and will throw a `ParseException` in 5.0.
>
> 4.2.0
> -----
>
> * added support for multiple files or directories in `LintCommand`
>
> 4.0.0
> -----
>
> * The behavior of the non-specific tag `!` is changed and now forces
> non-evaluating your values.
> * complex mappings will throw a `ParseException`
> * support for the comma as a group separator for floats has been dropped, use
> the underscore instead
> * support for the `!!php/object` tag has been dropped, use the `!php/object`
> tag instead
> * duplicate mapping keys throw a `ParseException`
> * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS`
> flag to cast them to strings
> * `%` at the beginning of an unquoted string throw a `ParseException`
> * mappings with a colon (`:`) that is not followed by a whitespace throw a
> `ParseException`
> * the `Dumper::setIndentation()` method has been removed
> * being able to pass boolean options to the `Yaml::parse()`, `Yaml::dump()`,
> `Parser::parse()`, and `Dumper::dump()` methods to configure the behavior of
> the parser and dumper is no longer supported, pass bitmask flags instead
> * the constructor arguments of the `Parser` class have been removed
> * the `Inline` class is internal and no longer part of the BC promise
> * removed support for the `!str` tag, use the `!!str` tag instead
> * added support for tagged scalars.
> ... (truncated)
Commits
- [`51b6844`](https://github.com/symfony/yaml/commit/51b684480184fa767b97e28eaca67664e48dd3e9) Allow PHP ^7.2.5
- [`2b50f04`](https://github.com/symfony/yaml/commit/2b50f047909601cd3cdeb4e3623c6d1d02366fcf) Merge branch '4.4'
- [`76de473`](https://github.com/symfony/yaml/commit/76de473358fe802578a415d5bb43c296cf09d211) Allow \Throwable $previous everywhere
- [`267f649`](https://github.com/symfony/yaml/commit/267f64914dc519c21ee757ca7831b574576abe04) Merge branch '4.4'
- [`8b24107`](https://github.com/symfony/yaml/commit/8b24107fe8363d94ec6569217e0cc72664b8314c) Merge branch '4.3' into 4.4
- [`324cf4b`](https://github.com/symfony/yaml/commit/324cf4b19c345465fad14f3602050519e09e361d) [4.3] Remove unused local variables
- [`77b5e83`](https://github.com/symfony/yaml/commit/77b5e83879e42591f7aa9383ce7cba38159ed5ae) Merge branch '4.4'
- [`b58a531`](https://github.com/symfony/yaml/commit/b58a531af74e2e836a8f00b49b30adf83bed8db7) Merge branch '4.3' into 4.4
- [`7fbd58a`](https://github.com/symfony/yaml/commit/7fbd58abeb7ddf87053ef01fcb7297465e3919ac) Merge branch '3.4' into 4.3
- [`dab657d`](https://github.com/symfony/yaml/commit/dab657db15207879217fc81df4f875947bf68804) Remove unused local variables in tests
- Additional commits viewable in [compare view](https://github.com/symfony/yaml/compare/v4.2.4...v5.0.1)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Bumps symfony/yaml from 4.2.4 to 5.0.1.
Changelog
*Sourced from [symfony/yaml's changelog](https://github.com/symfony/yaml/blob/master/CHANGELOG.md).* > CHANGELOG > ========= > > 5.0.0 > ----- > > * Removed support for mappings inside multi-line strings. > * removed support for implicit STDIN usage in the `lint:yaml` command, use `lint:yaml -` (append a dash) instead to make it explicit. > > 4.4.0 > ----- > > * Added support for parsing the inline notation spanning multiple lines. > * Added support to dump `null` as `~` by using the `Yaml::DUMP_NULL_AS_TILDE` flag. > * deprecated accepting STDIN implicitly when using the `lint:yaml` command, use `lint:yaml -` (append a dash) instead to make it explicit. > > 4.3.0 > ----- > > * Using a mapping inside a multi-line string is deprecated and will throw a `ParseException` in 5.0. > > 4.2.0 > ----- > > * added support for multiple files or directories in `LintCommand` > > 4.0.0 > ----- > > * The behavior of the non-specific tag `!` is changed and now forces > non-evaluating your values. > * complex mappings will throw a `ParseException` > * support for the comma as a group separator for floats has been dropped, use > the underscore instead > * support for the `!!php/object` tag has been dropped, use the `!php/object` > tag instead > * duplicate mapping keys throw a `ParseException` > * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS` > flag to cast them to strings > * `%` at the beginning of an unquoted string throw a `ParseException` > * mappings with a colon (`:`) that is not followed by a whitespace throw a > `ParseException` > * the `Dumper::setIndentation()` method has been removed > * being able to pass boolean options to the `Yaml::parse()`, `Yaml::dump()`, > `Parser::parse()`, and `Dumper::dump()` methods to configure the behavior of > the parser and dumper is no longer supported, pass bitmask flags instead > * the constructor arguments of the `Parser` class have been removed > * the `Inline` class is internal and no longer part of the BC promise > * removed support for the `!str` tag, use the `!!str` tag instead > * added support for tagged scalars. > ... (truncated)Commits
- [`51b6844`](https://github.com/symfony/yaml/commit/51b684480184fa767b97e28eaca67664e48dd3e9) Allow PHP ^7.2.5 - [`2b50f04`](https://github.com/symfony/yaml/commit/2b50f047909601cd3cdeb4e3623c6d1d02366fcf) Merge branch '4.4' - [`76de473`](https://github.com/symfony/yaml/commit/76de473358fe802578a415d5bb43c296cf09d211) Allow \Throwable $previous everywhere - [`267f649`](https://github.com/symfony/yaml/commit/267f64914dc519c21ee757ca7831b574576abe04) Merge branch '4.4' - [`8b24107`](https://github.com/symfony/yaml/commit/8b24107fe8363d94ec6569217e0cc72664b8314c) Merge branch '4.3' into 4.4 - [`324cf4b`](https://github.com/symfony/yaml/commit/324cf4b19c345465fad14f3602050519e09e361d) [4.3] Remove unused local variables - [`77b5e83`](https://github.com/symfony/yaml/commit/77b5e83879e42591f7aa9383ce7cba38159ed5ae) Merge branch '4.4' - [`b58a531`](https://github.com/symfony/yaml/commit/b58a531af74e2e836a8f00b49b30adf83bed8db7) Merge branch '4.3' into 4.4 - [`7fbd58a`](https://github.com/symfony/yaml/commit/7fbd58abeb7ddf87053ef01fcb7297465e3919ac) Merge branch '3.4' into 4.3 - [`dab657d`](https://github.com/symfony/yaml/commit/dab657db15207879217fc81df4f875947bf68804) Remove unused local variables in tests - Additional commits viewable in [compare view](https://github.com/symfony/yaml/compare/v4.2.4...v5.0.1)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)