Releases: KunalSin9h/livejq
Releases · KunalSin9h/livejq
v2.0.0
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
Internal Refactoring
v1.1.1
v1.1.0
Added
- Support for termination of program when input stream is closed (program is finished) [EOF]
v1.0.2
Added
- CI / CD Pipeline
v1.0.1
What's Changed
- fix: infinite loop in absence of input by @KunalSin9h in #1
New Contributors
- @KunalSin9h made their first contribution in #1
Full Changelog: v1.0.0...v1.0.1
v1.0.0
Full Changelog: https://github.com/KunalSin9h/livejq/commits/v1.0.0