Skip to content

Releases: reegnz/jq-zsh-plugin

v0.6.1

11 Apr 10:29
48befbc
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.6.0...v0.6.1

v0.6.0

23 Nov 11:19
a5b404a
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.1...v0.6.0

v0.5.1 bugfix release

10 Nov 15:52
7f64430
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.0...v0.5.1

v0.5.0

10 Nov 15:25
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.4.0...v0.5.0

0.4.0: improved completion suggestions

26 Jul 21:41
5a24091
Compare
Choose a tag to compare

The completions provided by jq-repl were not always usable.

Example, for an object like this:

{
    "a": {
        "hello": "there",
        "AABB": "CC",
        "abc123ZZZ": "cool",
        "5day": "next",
        "abc-123": "test",
        "aaa/bbb": "whatever"
    }
}

We used to generate completions like this:

.
.a
.a.5day
.a.AABB
.a.aaa/bbb
.a.abc-123
.a.abc123ZZZ
.a.hello

Note, that things like .a.aaa/bbb and .a.abc-123 are invalid jq expressions.

With this release the produced completion output is now improved to recognize these issues and produce a more sophisticated completion output, like this:

.
.a
.a.AABB
.a["5day"]
.a["aaa/bbb"]
.a["abc-123"]
.a.abc123ZZZ
.a.hello

0.3.0: gojq support

10 May 17:42
Compare
Choose a tag to compare

Allow using gojq instead of jq

0.2.1: fix jq-paths script

01 Dec 09:56
Compare
Choose a tag to compare
Fix /usr/bin/env use in jq-paths script

Fixes #11

0.2.0: support shell alias expansion

23 Nov 10:37
Compare
Choose a tag to compare

jq-zsh-plugin now works with zsh aliases!

Example:

alias k='kubecdl'
alias pods='k get pods -A -o json'
pods <alt+j>

If you don't want automatic shell alias expansion, then put this in your .zshrc:

JQ_ZSH_PLUGIN_EXPAND_ALIASES=0

v0.1.1: Fix paths not showing when file contains spaces

13 Sep 12:14
Compare
Choose a tag to compare
This was a regression after introducting refresh.

v0.1.0: Add reload feature

13 Sep 10:57
Compare
Choose a tag to compare

The plugin has been pretty stable so it makes sense to start doing releases.

New features since inception:

  • jq paths in fuzzy-search, tab-to-complete after selection
  • ctrl+r to re-run shell command and get updated JSON