]> granicus.if.org Git - jq/shortlog
jq
2012-12-03 Lee Thompsonstart work on getting RPM to work with tarball
2012-11-28 Lee Thompsonrevert back to make invoking flex, fix a few bugs
2012-11-27 Lee Thompsoninitial attempt at autoconf implementation, removed...
2012-10-30 Anthony ShortlandFixed to work under CentOS 5.4
2012-10-30 Anthony ShortlandAdded initial support for packaging jq as an RPM
2012-10-25 Stephen DolanMerge pull request #36 from stroan/contains-operator
2012-10-25 Stephen RoantreeMerge branch 'master' of https://github.com/stedolan... 36/head
2012-10-25 Stephen RoantreeRemove redundant code from jv_object_contains
2012-10-25 Stephen RoantreeRestructure contains methods to use public jv methods
2012-10-24 Stephen DolanFix a bug in string parsing. Closes #35
2012-10-24 Stephen RoantreeImplemented contains operator
2012-10-24 Stephen DolanMerge pull request #34 from dgryski/master
2012-10-24 Damian GryskiUpdate generated lexer.gen.* and parser.gen.* files 34/head
2012-10-24 Damian GryskiReplace yyscan_t with another pointer type that we...
2012-10-23 Stephen DolanRemove .gitignore from tarballs.
2012-10-23 Damian GryskiAdd some in/equality test cases
2012-10-23 Stephen DolanMerge pull request #22 from alexchamberlain/patch-1
2012-10-23 Damian GryskiRegenerate lex/yacc files
2012-10-23 Damian GryskiImplement 'not equal' (!=) as a binop
2012-10-23 Damian Gryskiyyscan_t isn't exposed by some versions of flex.
2012-10-23 Alex ChamberlainAdd docs for installing on Arch Linux. 22/head
2012-10-22 Stephen DolanAllow the 'keys' function to take arrays.
2012-10-22 Stephen DolanI should probably document select and empty :) (#29...
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.
next