We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
According the documentation: https://yaml.org/type/merge.html
Keys in mapping nodes earlier in the sequence override keys specified in later mapping nodes
Considering this example:
.first: &first x: 1 .second: &second x: 2 item: <<: [*second, *first]
element item.x should have value 2, but YamlDotNet produces value 1 Sample project can be found here: https://github.com/Indomitable/yaml-merge-bug
BR
The text was updated successfully, but these errors were encountered:
A fix for this issue has been released in version 11.0.1.
Sorry, something went wrong.
Map keys must be unique
Successfully merging a pull request may close this issue.
Hello,
According the documentation: https://yaml.org/type/merge.html
Considering this example:
element item.x should have value 2, but YamlDotNet produces value 1
Sample project can be found here: https://github.com/Indomitable/yaml-merge-bug
BR
The text was updated successfully, but these errors were encountered: