]> granicus.if.org Git - jq/shortlog
jq
2012-09-17 Stephen DolanRecursive functions + bugfix for stack reallocation.
2012-09-17 Stephen DolanMake the code compile with warnings-as-errors.
2012-09-17 Stephen DolanFix debugging code in execute.c so that debug jq compil...
2012-09-17 Stephen DolanMake "not" a builtin function rather than syntax.
2012-09-17 Stephen DolanRedefine true and false. Define empty, distict from...
2012-09-17 Stephen DolanMerge branch 'master' of github:stedolan/jq
2012-09-17 Stephen DolanFirst pass at string interpolation.
2012-09-17 Stephen DolanAdd a "tostring" function.
2012-09-17 Stephen DolanSupport rendering a JSON value to a string buffer.
2012-09-17 Stephen DolanBetter support for appending strings in JV.
2012-09-16 Stephen DolanBind builtin functions in a slightly less ugly way.
2012-09-16 Stephen DolanBuiltin function 'length', for arrays/objects/strings.
2012-09-16 Stephen DolanHrm. Update operators (//=, +=, etc.) aren't very well...
2012-09-11 Stephen DolanAdd update operators (+=, -=, *=, /= and //=)
2012-09-11 Stephen DolanMake .[] capable of iteration over objects as well...
2012-09-11 Stephen DolanPretty-printing of JSON values.
2012-09-11 Stephen DolanJSON stream parser.
2012-09-11 Stephen DolanMore error handling - locations of refs to undefined...
2012-09-11 Stephen DolanBetter error handling and messages for invalid index...
2012-09-11 Stephen DolanMore error handling in the parser.
2012-09-11 Stephen DolanProper error messages from lexer errors (e.g. bad chara...
2012-09-10 Stephen DolanMuch, much better error reporting from the parser.
2012-09-10 Stephen Dolan'==' operator, tests for equality and operator precedence.
2012-09-10 Stephen DolanString -> number conversions with "tonumber".
2012-09-10 Stephen DolanMultiplication and division operators.
2012-09-10 Stephen DolanSubtraction - as expected for numbers, ruby-style set...
2012-09-10 Stephen DolanString concatenation.
2012-09-10 Stephen DolanSensible error messages when a silly addition is performed.
2012-09-10 Stephen Dolanjv_string_fmt (create printf-formatted JSON strings)
2012-09-10 Stephen DolanPlug a memory leak in jv_object_merge
2012-09-10 Stephen DolanMake jv_invalid() first-class values capable of holding...
2012-09-10 Stephen DolanWhen comparing two objects for equality, we don't need...
2012-09-10 Stephen DolanMake a main program that doesn't spam debugging info.
2012-09-09 Stephen DolanMake the '+' operator merge objects.
2012-09-09 Stephen DolanBugfix for expanding objects.
2012-09-09 Stephen DolanPrint bad number values (Inf,NaN) "correctly".
2012-09-06 Stephen Dolannull and string literals now exist, so add tests
2012-09-06 Stephen DolanUTF8 coding utilities and unicode escaping in jv_dump...
2012-09-04 Stephen DolanMake the test harness not segfault when a test fails (!)
2012-09-04 Stephen DolanAdd a Boolean "not" operator.
2012-09-04 Stephen DolanShort-circuiting Boolean "and" and "or" operators.
2012-09-04 Stephen DolanMove some unicode handling stuff to a separate file.
2012-09-04 Stephen DolanAdd "elif" to if-then-else constructs.
2012-09-04 Stephen Dolanif-then-else and defined-or operators
2012-09-03 Stephen DolanFix some confusion between "null" and "invalid".
2012-09-03 Stephen DolanFix a memory leak in JV and add more tests
2012-09-03 Stephen DolanPerl-style autovivification.
2012-09-03 Stephen Dolansquash a debug printf
2012-09-03 Stephen DolanJV_KIND_INVALID values to represent failed lookups...
2012-09-03 Stephen DolanSupport "null" in JQ programs
2012-09-03 Stephen DolanMake assignment work again: = and |= operators.
2012-09-03 Stephen DolanDisallow a + before numbers (makes parsing easier,...
2012-09-03 Stephen DolanModify number formatting so that 1e-3 renders as 0...
2012-09-03 Stephen DolanLiteral strings and better literal numbers.
2012-09-03 Stephen DolanRemove globals from parser, use explicit structure.
2012-09-02 Stephen DolanMark a constant array const in jvp_dtoa.c
2012-09-02 Stephen DolanFix behaviour of stack at program termination.
2012-09-02 Stephen DolanMove from Jansson to JV - proper freeing of memory
2012-09-02 Stephen DolanClean up build a little and add .gitignore.
2012-09-02 Stephen DolanMove from Jansson to JV - interpreter loop
2012-09-02 Stephen DolanMove from Jansson to JV - everything but the interprete...
2012-09-01 Stephen DolanValidation for empty objects
2012-09-01 Stephen DolanFirst pass at a JSON parser
2012-09-01 Stephen DolanFix a memory leak when inserting into an object with...
2012-09-01 Stephen DolanMinor changes to dtoa.c to make it easier to work with.
2012-09-01 Stephen DolanImport a copy of David Gay's dtoa.c
2012-08-28 Stephen DolanFix a bug in lexical scoping, add tests
2012-08-28 Stephen DolanReference-counted copy-on-write JSON library.
2012-08-27 Stephen DolanRemove syntax distinction between builtin and user...
2012-08-27 Stephen Dolanfirst pass at assignment
2012-08-26 Stephen Dolan2nd order functions
2012-08-22 Stephen DolanFix a revolting hack
2012-08-22 Stephen Dolanbugfix for backtracking over RET insns, and a truly...
2012-08-21 Stephen DolanClosures over variables
2012-08-21 Stephen DolanFirst pass at functions + tests
2012-08-21 Stephen Dolanframe layout refactor
2012-08-20 StephenStacks grow down now
2012-08-16 Stephenan addition operator, of sorts
2012-08-16 StephenMost of a C implementation of jq
2012-07-18 Stephen Dolaninitial