Skip to content

Releases: filhodanuvem/gitql

v2.3.1

14 Jan 19:48
0eec7f4
Compare
Choose a tag to compare

Bug fixes and dependency upgrades

v2.3.0

08 Jul 16:37
Compare
Choose a tag to compare
  • Gitql binary uses the embed file version.txt to outputs the gitql version command. On every release, the file content is replaced by the correct tag or git commit sha.
  • Set .goreleaser.yml to force it to release to all platforms (including windows).

v2.2.1

06 Jul 09:49
8846303
Compare
Choose a tag to compare

On adding functional tests I've noticed that queries using order by have results differently than a normal git log.
You can check the change here.

DISTINCT and USE branches support

26 May 19:59
0149225
Compare
Choose a tag to compare

DISTINCT

Use select distinct to group rows by a certain field.
Eg.: select distinct author from commits where date > '2020-01-01 .

USE

To switch to another branch you can run use <branch>.

Remove usage of git2go in favour of go-git.

04 Oct 22:01
3e065e8
Compare
Choose a tag to compare
2.1.0

update Dockerfile (#97)

Static binary release

28 Oct 00:48
d936e68
Compare
Choose a tag to compare
  • Provide a static binary for linux and windows 64 bits
  • Move from travis to github actions
  • remove support to remotes
  • use fixed version of OS on github actions
  • set short and long flags for cli

COUNT function

21 Feb 22:03
Compare
Choose a tag to compare

Add support to count results. Another amazing work from @budden

Add initial windows support

16 Feb 12:06
Compare
Choose a tag to compare

With a great help of @budden , we allow users to use gitql on windows.
This support is on beta stage, we appreciate any feedback from win users.

NOT Operator

18 Oct 19:31
Compare
Choose a tag to compare

#68 Language accepts not in and not like operations.

Thanks for @frahman5, who worked on it 🎉.

New operators

08 Sep 13:05
Compare
Choose a tag to compare
  • Add LIKE operator to work better than in - 6716a7
  • Add <> as not equal operator - f0d7b3
  • Allow in operator to work with order by - aab37b

Thanks to @luizperes , @jsixface and other contributors who works a lot on these operators.