]> granicus.if.org Git - jq/shortlog
jq
2012-10-22 Stephen DolanDocs fixes.
2012-10-22 Stephen DolanMerge pull request #14 from merriam/patch-2
2012-10-22 Stephen DolanDelete a badly-thought-out bit of a Makefile.
2012-10-22 Stephen Dolanupdated autogenerated files
2012-10-22 Stephen DolanSupport a -f option to load from a file, and # comments
2012-10-22 Stephen DolanFix logic for "slurp" option. Fixes #18
2012-10-22 Stephen DolanMake the gen_utf8_tables script Python3 compatible...
2012-10-22 Charles MerriamUpdate docs/content/1.tutorial/default.yml 14/head
2012-10-21 Stephen DolanVersion number tracking. jq-1.0 jq-1.1
2012-10-21 Stephen DolanFix a mistake in the docs. Fixes #10
2012-10-21 Stephen DolanMerge pull request #8 from maxme/master
2012-10-21 Stephen DolanUpdate website: binaries + version bump.
2012-10-21 Maxime Biaisadd install and uninstall rules in Makefile 8/head
2012-10-21 Stephen DolanCheck in a bunch of autogenerated files.
2012-10-19 Stephen DolanAdd a 'keys' function. Fixes #4.
2012-10-19 Stephen DolanA string interpolation syntax that I don't hate. Also...
2012-10-11 Stephen DolanMerge pull request #6 from stroan/numeric-comparison...
2012-10-10 Stephen RoantreeMake comp binops nonassoc 6/head
2012-10-07 Stephen RoantreeAdd <,>,<=,>= binops
2012-09-22 Stephen DolanAllow underscores in IDENT tokens. Fixes #3.
2012-09-20 Stephen DolanAdd a bunch of commandline options for controlling...
2012-09-19 Stephen DolanMore broken links :(
2012-09-19 Stephen DolanMake URLs relative to not break on github-pages
2012-09-19 Stephen DolanMake the <title>s of the doc pages less messy.
2012-09-19 Stephen DolanNo HTTPS for me, sadly.
2012-09-19 Stephen DolanFix some issues with relative URLs on Github Pages.
2012-09-19 Stephen DolanAdd a rake task to compile docs into static html.
2012-09-19 Stephen DolanUse a theme from Bootswatch for docs.
2012-09-18 Stephen DolanEnsure 'make tarball' creates the required directories.
2012-09-18 Stephen DolanAdd some release stuff to Makefile.
2012-09-18 Stephen DolanAdd binaries and update download docs.
2012-09-18 Stephen DolanInitialise some variables to keep gcc happy.
2012-09-18 Stephen DolanFix a parsing bug for \uXXXX escapes (some invalid...
2012-09-18 Stephen DolanAdd a README
2012-09-18 Stephen DolanUsage messages if jq is run with no arguments.
2012-09-18 Stephen DolanImplement the 'add' builtin promised by the docs' examples.
2012-09-18 Stephen DolanMore docs + docs cleanup
2012-09-18 Stephen DolanPrint Unicode characters unescaped by default.
2012-09-18 Stephen DolanSeparate the tests and the main program.
2012-09-18 Stephen DolanAdd a COPYING file with too many words in it.
2012-09-18 Stephen DolanDocumentation. Copious.
2012-09-18 Stephen DolanMove everything around - delete old Haskell code, clean...
2012-09-18 Stephen DolanSlightly better string interpolation.
2012-09-18 Stephen DolanAdd the builtin 'select' function.
2012-09-18 Stephen DolanAdd a missing file from prev commit
2012-09-18 Stephen DolanBuiltin functions defined in jq.
2012-09-18 Stephen Dolan-Werror was a little overzealous.
2012-09-17 Stephen DolanBuiltin function 'type'.
2012-09-17 Stephen DolanFix a precedence bug.
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.
next