Skip to content

Releases: filhodanuvem/gitql

v2.3.1

Choose a tag to compare

@filhodanuvem filhodanuvem released this 14 Jan 19:48
0eec7f4

Bug fixes and dependency upgrades

v2.3.0

Choose a tag to compare

@filhodanuvem filhodanuvem released this 08 Jul 16:37
  • 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

Choose a tag to compare

@filhodanuvem filhodanuvem released this 06 Jul 09:49
8846303

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

Choose a tag to compare

@filhodanuvem filhodanuvem released this 26 May 19:59
0149225

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.

Choose a tag to compare

@filhodanuvem filhodanuvem released this 04 Oct 22:01
3e065e8
2.1.0

update Dockerfile (#97)

Static binary release

Choose a tag to compare

@filhodanuvem filhodanuvem released this 28 Oct 00:48
d936e68
  • 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

Choose a tag to compare

@filhodanuvem filhodanuvem released this 21 Feb 22:03

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

Add initial windows support

Choose a tag to compare

@filhodanuvem filhodanuvem released this 16 Feb 12:06

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

Choose a tag to compare

@filhodanuvem filhodanuvem released this 18 Oct 19:31

#68 Language accepts not in and not like operations.

Thanks for @frahman5, who worked on it πŸŽ‰.

New operators

Choose a tag to compare

@filhodanuvem filhodanuvem released this 08 Sep 13:05
  • 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.