Skip to content

Releases: harelba/q

2.0.10: Merge pull request #218 from harelba/new-site-sources

08 Feb 13:19
578d931
Compare
Choose a tag to compare

Please download release 2.0.9 from the web site http://harelba.github.io/q/ which contains rpm and deb packages as well. Another option would be to download version 2.0.9 from the "releases" list here, but it doesn't contain any rpm or deb packaging, just the windows installation.

2.0.9

12 Jan 16:17
Compare
Choose a tag to compare
Fix output header issue for multi-file tables https://github.com/hare…

2.0.8

23 Dec 12:57
Compare
Choose a tag to compare
Fix output header issue for multi-file tables https://github.com/hare…

2.0.7

16 Dec 14:55
Compare
Choose a tag to compare
Bumped version to 2.0.6

py3 single-binary version

30 Nov 16:28
Compare
Choose a tag to compare
2.0.6

bump to 2.0.6

2.0.4

29 Nov 09:53
Compare
Choose a tag to compare
bump to 2.0.3

2.0.2: Merge pull request #196 from mbrukman/readme-images-to-code

12 Nov 14:48
02821fe
Compare
Choose a tag to compare

1.7.1

24 Nov 17:44
Compare
Choose a tag to compare

This release has one feature - Being able to write the data into an sqlite3 disk database.

Use -S <db-filename> in order to save the data, and use any sqlite3 client to analyze/process it.

1.6.3

20 Apr 11:52
Compare
Choose a tag to compare

This is the first actual release of 1.6.x (previous 1.6.x were used to test the new release process).

  • Added parameter for controlling maximum field size and providing info when failed
  • Added a flag to disable automatic column type detection
  • Fixed beautify when output headers exist
  • Solved the following bugs:
    • #89 - Output formatting attempts to apply to header row
    • #115 - Fixed bug in escaping double-quotes
    • #116 - Test breaks when running on a Mac
    • #126 - Fixed bug with handling of null values in relaxed mode (exposed by #126)
    • #122 - Empty data and missing header behavior fixed
    • #132 - -b -D'|' not applied to -O header line
    • #131 - -b flag fails when no results match query
    • #114 - "Crashes" when conditions don't match any rows.
  • Merged the following PRs:
  • Version release process changes
  • Doc changes

v1.5.0

13 Dec 19:21
Compare
Choose a tag to compare
  • Full input/output support for double-quoting fields with delimiters
  • Multiple query support in one command line, reusing previously loaded data in subsequent queries
  • Support literal SELECT statements (e.g. SELECT 5+12.5/3)
  • Full code restructuring (Internally working now using a full python API which will become public in the next version)
  • Added sha1 function. You can use 'select sha1(c3) from ...'
  • Solved the following bugs/pull-requests:
    • #10 - Reuse of previously loaded data when running multiple queries in one command line
    • #64 - Full support for literal SELECT statements without a table (e.g. SELECT 5+12.5)
    • #56 - Proper double quote handling, including multiline fields, for both input and output according to csv standards
    • #69 - Added warning suppression when the user provides a specific column count
    • #40 - Code restructuring cleaning, creating a full python API (will be published in the next version)
    • #60 - Fixed RPM packaging
    • #68 - UTF-8 with BOM files cause column naming issues
    • #63 - Unicode string support in regexp function