Skip to content

Releases: KunalSin9h/livejq

v2.0.0

04 Aug 08:45
Compare
Choose a tag to compare

Added

Filter

To apply filtering, you need to create livejq.toml file in the project root.

It contains labels. labels are filter labels which you can apply with -f / --filter flag.

Example config file:

# livejq.toml

allow = ["name"] # default

[network-fail]  # -f network-fail
allow = ["failed"]

[memory-info] # -f memory-info
allow = ["memory"]

Then run the application as

./your_program | livejq -f network-fail

# you can apply multiple filters
./your_program | livejq -f network-fail memory-info

when not label is created, default is used. For each label, you can only give allow or disallow, not both.

When not flag is used while running the program, the default flag is used.

v1.1.2

29 Feb 09:23
Compare
Choose a tag to compare

Internal Refactoring

v1.1.1

01 Aug 19:36
6e01b0e
Compare
Choose a tag to compare

Fixed

  • Indentation on array and object's curly brackets when no items.

before-after-demo

v1.1.0

01 Aug 18:43
Compare
Choose a tag to compare

Added

  • Support for termination of program when input stream is closed (program is finished) [EOF]

v1.0.2

31 Jul 07:45
Compare
Choose a tag to compare

Added

  • CI / CD Pipeline

v1.0.1

30 Jul 14:26
935f20e
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.0...v1.0.1

v1.0.0

30 Jul 13:44
Compare
Choose a tag to compare