Releases: harelba/q
Releases · harelba/q
2.0.10: Merge pull request #218 from harelba/new-site-sources
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
2.0.8
2.0.7
py3 single-binary version
2.0.6 bump to 2.0.6
2.0.4
2.0.2: Merge pull request #196 from mbrukman/readme-images-to-code
Replace image code samples with text.
1.7.1
1.6.3
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:
- #137 - Unit tests with Travis CI - Thanks @serima !
- #107 - update query parameter - Thanks @jungle-boogie !
- #103 - Simplified mac homebrew version bump instructions - Thanks @bfontaine !
- Version release process changes
- Doc changes
v1.5.0
- 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