summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-12-09Two sub bugs fixed; two new gsub tests have been added.pkoppstein
./jq --run-tests < tests/onig.test has been run successfully: ... Testing 'gsub("a";"b")' at line number 70 Testing 'gsub( "(.*)"; ""; "x")' at line number 74 ... 22 of 22 tests passed (0 malformed)
2015-12-01Fix JV_OBJECT() and go up to 18Nicolas Williams
2015-12-01Assume . if either stdin/on isatty() (fix #1028)Nicolas Williams
And move the #define of isatty on Windows up.
2015-11-26yum has been replaced with dnf as of f22Mark McKinstry
https://fedoraproject.org/wiki/Changes/ReplaceYumWithDNF
2015-11-21Support --without-onigurumaDavid Tolnay
2015-11-18Oniguruma hash in dockerfileDavid Tolnay
2015-11-15Fix manual signature for split (non-regex)Loamhoof
2015-10-27Add address sanitizer (ASAN) support (fix #1002)Nicolas Williams
2015-10-25Support numbers and boolean in join (fix #930)David Tolnay
2015-10-24Heap buffer overflow in tokenadd() (fix #105)Nicolas Williams
This was an off-by one: the NUL terminator byte was not allocated on resize. This was triggered by JSON-encoded numbers longer than 256 bytes.
2015-10-24strptime() on OpenBSD requires _XOPEN_SOURCE_EXTENDED 1 (fix #999)David Tolnay
strptime() is an XPG4v2 function, on OpenBSD the prototype is not included in time.h unless visibility is set, it needs either "#define _XOPEN_SOURCE_EXTENDED 1" or _XOPEN_SOURCE >= 500. Without this the prototype isn't included and strptime's returned pointer is truncated to an int, causing SEGV on 64-bit arches when using it. Thanks @sthen
2015-10-24mktemp needs 6 or more X's (fix #1000)David Tolnay
mktemp(1) isn't posix specified, but it's reasonable to use mktemp(3) to implement it which requires 6 trailing X's in the format Thanks @sthen
2015-10-22Fix builtin.o dependency (#992)Nicolas Williams
2015-10-22Fix linux32 jq-1.5 executable (fix #935)Nicolas Williams
2015-10-22Rename sig/v1.5/jq-linux32.asc (prep for #935)Nicolas Williams
2015-10-22Remove setup.sh (fix #993)Nicolas Williams
2015-10-22Move jq-coded builtins to non-C file (fix #424)David Tolnay
2015-10-17Move docs for map earlier (fix #288)David Tolnay
2015-10-17If-then-else documentation for forking conditional (fix #942)David Tolnay
2015-10-17Support lowercase name in from_entries (fix #990)David Tolnay
2015-10-13Revert "Adjust spacing of section headers to account for nav bar (fix #986)"David Tolnay
This reverts commit 73b8413d10751c7be3e54d83ea338b3e895bdda3. The fix for #986 caused #988.
2015-10-13Autocomplete manual search to first result on submitDavid Tolnay
2015-10-12Add background color to typeahead menuDavid Tolnay
2015-10-12Sort manual search results shortest to longestDavid Tolnay
2015-10-12Remove backticks from manual headers and search stringsDavid Tolnay
2015-10-12Adjust spacing of section headers to account for nav bar (fix #986)David Tolnay
2015-10-12Merge typeaheadjs.css into base.scssDavid Tolnay
2015-10-12PGP signatures for release binaries (fix #889)David Tolnay
2015-10-12Accept only bitwise identical NaN values in jv_identical (fix #978)David Tolnay
2015-10-12Add signing key and dtolnay's key fingerprints to KEYSDavid Tolnay
2015-10-12Remove expired key from KEYSNicolas Williams
2015-10-12Add KEYS fileNicolas Williams
2015-10-12Link to BootstrapCDN for Bootstrap and Bootswatch (fix #985)David Tolnay
2015-10-12Explicitly use current directory in RakefileDavid Tolnay
2015-10-12Split up Rakefile to minimize dependencies (fix #435)David Tolnay
2015-10-12Add description for rake tasksDavid Tolnay
You can see the descriptions by running `rake --tasks`.
2015-10-12Remove duplicate yaml import in RakefileDavid Tolnay
2015-10-12Remove old Rakefile dist targetsDavid Tolnay
Because binaries no longer go into the repo.
2015-10-12docs: jq 1.5 is now available in Debian unstableSimon Elsbrock
It may take some time until it bubbles up into Ubuntu repositories.
2015-10-02Bump fedora and chocolatey available version numbersDavid Tolnay
2015-09-24Support NaN in path expressions (fix #962)David Tolnay
2015-09-22EOF after newline in string mishandled (fix #951)Nicolas Williams
2015-09-21Delete negative indices in array (fix #954)David Tolnay
2015-09-21Fix assert fail if object literal key is not a string (fix #953)David Tolnay
2015-09-20Add openSUSE repositoryRoman Inflianskas
2015-09-16Address comments on PR #950David Tolnay
2015-09-16Improve invalid object key error messageDavid Tolnay
2015-09-13Remove "Requires 1.5" from manualsDavid Tolnay
No longer necessary now that manuals are versioned.
2015-09-13utf8bytelength: count UTF8 string bytelengthJoel Nothman
[Builtin name changed, and it only works on string inputs. -Nico]
2015-09-10Fix segmentation fault on Windows with long paths (fix #939)Steven Penny