Mike Farah
Mike Farah
https://github.com/mikefarah/yq/releases/tag/v4.46.1
Unfortunately the anchor logic is within the underlying yaml parser library, which only has context of the current yaml document its parsing. What you can do though, is come up...
This is an error coming from golang's CSV parsing library (https://pkg.go.dev/encoding/csv) , seems like you need to do: ``` Code Name 1010 "a ""quoted-field""" ``` To get it to work.
I haven't actually implemented "if" in yq - which i what the lexer is complaining about
Yeah this is related to the bug: https://github.com/mikefarah/yq/issues/2384 (which was caused by a changed I did in #2325 :( - will fix in next release!
https://github.com/mikefarah/yq/releases/tag/v4.46.1
Minor comment, need more time to review this and consider if there are any side effects - thanks for the contribution though!
This is really good - I think you have a clearer picture of how merge works better than I do 😅 - I'm going to go over it again later...
Ok I think to properly fix explode I need to take a step further and rewrite the reconstructAliasedMap - which I've done in a branch `MakeExplodeGreatAgain` and included your extra...
Ah the reason I was processing like that was to preserve key order on merging. Not a big issue though, this is looking good! Thanks for PR!