Skip to content

Releases: ashb/jqrepl

v0.1.0

09 Mar 16:53
70de3ca
Compare
Choose a tag to compare
  • Moar type support

    Should probably now have support for all the types JSON can express

  • New, simpler Go API for running JQ programs

  • Fix possible use-after-free race in the Go API

The one where you can refer to previous results

17 Oct 10:22
Compare
Choose a tag to compare

$_ | type or $out[20] | .Tags now work.

I might see about changing this to a function since then it can become _ | type or _(20) | .Tags

v0.0.2preview

15 Oct 10:59
Compare
Choose a tag to compare
v0.0.2preview Pre-release
Pre-release

I've updated it so you can now pipe JSON input in:

$ aws ec2 describe-instances | ./jqrepl-0.02preview
  0 » type
"object"
  1 » keys
[
  "Reservations"
]
  2 » .Reservations[0] | keys
[
  "Groups",
  "Instances",
  "OwnerId",
  "ReservationId"
]
  3 »

Preview release

26 May 14:59
Compare
Choose a tag to compare
Preview release Pre-release
Pre-release

A very simple preview build. It currently operates on a fixed input (shown below) and you can't refer to previous results.

screen shot 2016-05-26 at 16 00 33

{
  "simple": 123,
  "nested": {
    "a": [
      1,
      2,
      "a"
    ],
    "b": true,
    "c": null
  },
  "non_printable": "🇬🇧"
}