Skip to content

Tags: jqlang/jq

Tags

jq-1.7.1

Toggle jq-1.7.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request from GHSA-686w-5m7m-54vc

decNumberToString calls for a buffer that can hold a string of digits+14
characters, not a buffer of size digits+14.
We need to allocate an extra byte for the NUL byte.

-10E-1000010001, for example, will be stringified as -1.0E-1000010000
and decNumberToString will currently write an extra NUL byte after the
allocated buffer in the heap.

Originally reported by @SEU-SSL on GitHub.

Ref: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=64574

Fixes GHSA-686w-5m7m-54vc

jq-1.7

Toggle jq-1.7's commit message
Add setlocale() call (fix #1740)

jq-1.7rc2

Toggle jq-1.7rc2's commit message
Improve handling of non-integer numeric indices (fix #2815)

jq-1.7rc1

Toggle jq-1.7rc1's commit message
Update `bug_report.md` with Discord link

jq-1.6

Toggle jq-1.6's commit message
Release jq-1.6

1.6rc2

Toggle 1.6rc2's commit message
Restore JV_PRINT_COLOUR as an alias

JV_PRINT_COLOUR was part of the public libjq headers and was removed as
part of 2d05b54. While JV_PRINT_COLOR is definitely the preferred
spelling this side of the pond, we shouldn't just remove otherwise
exposed enum values.

jq-1.6rc1

Toggle jq-1.6rc1's commit message
Update AUTHORS

jq-1.5

Toggle jq-1.5's commit message
Add autoconf outputs (fix #916)

jq-1.5rc2

Toggle jq-1.5rc2's commit message
Fix make dist (fix #870)

jq-1.5rc1

Toggle jq-1.5rc1's commit message
Fix warning in util.c