Skip to content

Releases: TLINDEN/tablizer

v1.4.0

06 Mar 16:30
eae39bb
Compare
Choose a tag to compare

Miscellaneus Changes

  • reverse the meaning of -n (#47) by TLINDEN
    Setting -n now enables numbered headers, otherwise headers are printed unnumbered by default. The old behavior was annoying and the numbers are not really needed anymore since we can use named headers, like -c id,name.
  • Bump github.com/spf13/cobra from 1.8.1 to 1.9.1 (#45) by dependabot[bot]
    Bumps github.com/spf13/cobra from 1.8.1 to 1.9.1.
Release notes

Sourced from github.com/spf13/cobra's releases.

v1.9.1

🐛 Fixes

Full Changelog: spf13/cobra@v1.9.0...v1.9.1

v1.9.0

✨ Features

🐛 Fixes

🤖 Completions

🧪 Testing

✍🏼 Documentation

🔧 Dependency upgrades

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate wi...
Read more

v1.3.3

23 Feb 17:23
65732a5
Compare
Choose a tag to compare

New Features

  • add yank support (#38) by TLINDEN
    You can use this to copy one or more values directly to the clipboard, which is especially useful if your filter yields only one row. Just add the flag -yN where N is the header name or number to be copied to the clipboard.

Bug Fixes

  • fix ci tests on windows: make clean before running test (#44) by TLINDEN

Full Changelog: v1.3.2...v1.3.3

v1.3.2

30 Jan 16:33
Compare
Choose a tag to compare

What's Changed

  • add support for multiple filters and negated by @TLINDEN in #39
    tablizer [..] '/Foo/i' '/bar/!' (you can omit the delimiters if you don't need flags: tablizer [..] 'foo' '/bar/!')
  • add support for negative field filters @TLINDEN in #40:
    -F field!=regex

Full Changelog: v1.3.1...v1.3.2

v1.3.1

15 Jan 17:54
Compare
Choose a tag to compare

What's Changed

  • add -k<name> and sort by multiple columns support, fixes #34 by @TLINDEN in #35

Full Changelog: v1.3.0...v1.3.1

v1.3.0

14 Jan 12:13
Compare
Choose a tag to compare

What's Changed

  • Add transpose feature, which allows you to modify matching fields, e.g. -Tname -R '/foo/bar'
  • Bump github.com/hashicorp/hcl/v2 from 2.22.0 to 2.23.0
  • Removed lisp plugin support (filters and transposers do the job)
  • Added L7 tests
  • Changed file handling, use -r <file> to read from a file, it reads from stdin otherwise, only one file supported anymore
  • Headers are now treated case insensitive (options -c and -T)

Full Changelog: v1.2.3...v1.3.0

v1.2.3

13 Dec 09:40
Compare
Choose a tag to compare

Full Changelog: v1.2.2...v1.2.3

Fixes

  • fix #29: when trying to open a config file with a filename longer than 255 chars, a crash happened. Now an appropriate error message is printed.

v1.2.2

04 Nov 10:17
Compare
Choose a tag to compare

Full Changelog: v1.2.1...v1.2.2

*Bugfixes:

  • fix bug #27: if after parsing the number of columns and headers do not match, print an error.

v1.2.1

25 Sep 16:59
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.0...v1.2.1

v1.2.0

07 May 16:43
Compare
Choose a tag to compare

What's Changed

  • Refactored and cleaned up the code, made linter happier
  • Fixed bug where using -v w/o a pattern lead to zero output #12
  • Added -F feature to filter by [multiple] columns #13
  • Added highlight lines feature (-L). The colors can be configured in a config file:
    tablizer-hl
    Place the config file to ~/.config/tablizer/config or specify with -f path. Example config:
# supported  colors:
# black, blue,  cyan, darkGray, default, green,  lightBlue, lightCyan,
# lightGreen,   lightMagenta,   lightRed,   lightWhite,   lightYellow,
# magenta, red, white, yellow
BG             = "lightGreen"
FG             = "white"
HighlightBG    = "lightGreen"
HighlightFG    = "white"
NoHighlightBG  = "white"
NoHighlightFG  = "lightGreen"
HighlightHdrBG = "red"
HighlightHdrFG = "white"

The config file is HCL formatted.

Full Changelog: v1.1.0...v1.2.0

v1.1.0

22 Nov 13:20
6fccd12
Compare
Choose a tag to compare

What's Changed

  • add color table support (using alternating colorization of rows) using new flag -L
  • add config file support (HCL format) using ~/.config/tablizer/config or -f <file> so the user can customize colors
  • removed golang 1.17 support

Full Changelog: v1.0.17...v1.1.0