From 0c3334d838db6e1b970e6a3a7be0210d0b134729 Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Sun, 12 Sep 2021 17:01:11 +1000 Subject: [PATCH] Draft release notes --- release_notes.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/release_notes.txt b/release_notes.txt index f8f06c67..721700bf 100644 --- a/release_notes.txt +++ b/release_notes.txt @@ -1,3 +1,18 @@ +4.13.0: + +BREAKING CHANGE - the `as` variable operator (e.g. `.a as $x`) now makes a _copy_ of the node(s) at the +path rather than a reference. This is in order to make it work more like the `jq` equivalent. + +This means any updates made to that variable do not update the original. + +There's a new operator `ref` that will make a reference (and allow multiple updates to the original path by referencing the variable). + +Sorry for any inconvenience caused!. + +- Fixed Swapping values using variables #934 +- Github Action now properly supports multiline output #936, thanks @pjxiao +- Fixed missing closing bracket validation #932 + 4.12.2: - Fix processing of hex numbers #929 - Fixed alternative and union operator issues #930