Have only recently started using JQ, and it's absolutely brilliant. I'm on wsl2/Ubuntu - just pipe any Json content to it, and you get an easy to read colour version rather than your regular monotone output (which seems incompatible with my brain).
And you can then create queries to select certain keys - highly useful if you're dealing with monster documents, and customise the output of that (eg to reduce into just the info you need). Plus probably much more, but those are the features I've used so far. Big thanks to the Devs!
jq is great! Just so you know, there are similar programs for many other languages, like yq [0]. Also, there are interactive `jq` prompts like `ijq` [1].
And there is also a rust clone of `jq`, `jaq` [1], which aims for correctness, performance and simplicity.
I use it for the performance because there is a big startup time for `jq`, with `jaq` I can use it in scripts that are called every seconds in my status bar without delay.
This is really great news. jq deserves an active team maintaining it. The new features (in particular pick()) look great.
Just one tiny personal regret. I get GPT-4 to write almost all of my jq scripts for me, and it's going to stay stuck on that 2021 version for an unknown time going forward.
I guess I could try and come up with some custom instructions that teach it about the new syntax!
yeap that could be an extension of the shorthand syntax, but note that pick/1 also works with any "path expression" ex: pick(if .a then .b.c else .x end)
You do still get the number formatting advantage if you use the new version with GPT queries. It means for example jq . now pretty prints without converting all numbers to floats, for example.
Recently I needed to query something from a json document, but I just couldn't figure out how to express this in jq. In my spare time I'm working on a toy configuration language that is a superset of json, and expressing the query there was pretty straightforward, at least to me. So I added a mode to do that, and it comes in pretty handy once in a while now as a jq alternative.
2m28s from time I downloaded hosts.json to producing this solution, though I must admit I had to take a moment to look up contains to realized it had to take an array—I could've used index/1 and had a better time.
I didn't time myself, but took 25-50% more queries.
I'll echo the value of ijq, https://sr.ht/~gpanders/ijq/ The live updating makes for less to remember and visualize. Though there is some value in having intermediate history recorded, for the second and later questions you ask of the data. (And supports commenting out for error diagnosis without deleting half the expression, `# ...`, hash and space required.)
I hadn't known of `debug`, quite convenient. I've often used multiple outputs at the tail, for example `... | keys, .` to remind myself of the structure as I explore down. Also `gron` and `fzf --multi`.
I tried GPT-3.5, it got it wrong but it did get the overall setup right, just forgot about a detail. But I don't want to reach for ChatGPT every time I need to query something, I want something that I can write without having to solve a puzzle first. (True, maybe I should spend some time learning jq better.)
To the best of my recollection no one in the former HN comment threads expanded on the long hiatus .. suggesting an absence of any real drama.
Which leaves us with the RC release candidate Announcement:
After a five year hiatus we're back with a GitHub organization, with new admins and new maintainers who have brought a great deal of energy to make a long-awaited and long-needed new release.
It's been almost five years since the release of jq 1.6. Recently we have had a great influx of contributor and maintainer energy. We now have 12 maintainers (up from 3), with about 4 or 5 active maintainers (up from 0), we have 8 admins with several active admins, and several owners at least two of whom are active. As a result the project will not again have such a long hiatus.
Either any dirty laundry is well buried or (more likely) this was simply a case of the original implementers hitting some plateau of achievement and fading away leaving JQ to eventually be picked up by others.
Others would have to chime in, I have nothing I can add.
As far as I'm aware, there was no real drama, just Maintainers Having Lives. There was actually some progress being made in the intervening time on the timescale of months, it just never made it into a release—some distros actually took to shipping HEAD iirc.