Skip to content

Releases: go-jsonfile/jp

Release v0.2.2, added `matches` for regular expression support

25 Dec 15:53

Choose a tag to compare

Release v0.2.2, added matches for regular expression support

$ echo '{}' | jp 'matches(`"foobarbaz"`, `"baz"`)'
true

$ echo '{}' | jp 'matches(`"This and these"`, `"t(his|h[eo]se)"`)'
true

$ echo '{}' | jp 'matches(`"Those people"`, `"t(his|h[eo]se)"`)'
false

$ echo '{}' | jp 'matches(`"THOSE people"`, `"(?i)t(his|h[eo]se)"`)'
true

$ echo '"foobarbaz"' | jp 'matches(@, `"baz"`)'
true

Changelog

  • e945bbe - [#] go mod tidy
  • d5ee648 - [#] replace go-jmespath with improved
  • 4f58cb0 - [!] fix go.mod order
  • b1b17b8 - [#] update to upstream version scheme
  • c313432 - [+] added GitHub Action to build releases
  • 54882e0 Update README to donwload latest jp version on Linux

v0.1.5

05 Jun 22:09

Choose a tag to compare

Changelog

e5e982d - [*] bump version to 0.1.5
ca51577 Allow processing of a stream of separate JSON elements

v0.1.4

05 Jun 20:47

Choose a tag to compare

Changelog

e35e9a0 - [+] added GitHub Action to build releases
ab6a085 Generate a .tar.gz artifact for homebrew