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
With yq 3.1.1 we're noticing a change in behavior from yq v2. It's unexpected that the quoted key is parsed into an array.
$ rm -rf out.yaml ; touch out.yaml $ echo "'key[bracket]': value" > in.yaml $ cat in.yaml 'key[bracket]': value $ yq merge -i out.yaml in.yaml $ cat out.yaml key: bracket: value
we expect the behavior of yq v2
$ echo 'cannot: merge-empty' > out.yaml $ echo "'key[bracket]': value" > in.yaml $ cat in.yaml 'key[bracket]': value $ yq merge -i out.yaml in.yaml $ cat out.yaml cannot: merge-empty 'key[bracket]': value
How can we accomplish this in yq v3?
Similar to #345 but for brackets.
The text was updated successfully, but these errors were encountered:
Fixed in https://github.com/mikefarah/yq/releases/tag/3.1.2
Sorry, something went wrong.
No branches or pull requests
With yq 3.1.1 we're noticing a change in behavior from yq v2. It's unexpected that the quoted key is parsed into an array.
we expect the behavior of yq v2
How can we accomplish this in yq v3?
Similar to #345 but for brackets.
The text was updated successfully, but these errors were encountered: