@port-labs/jq-node-bindings 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +5 -0
- package/.jshintignore +1 -0
- package/.jshintrc +23 -0
- package/binding.gyp +56 -0
- package/configure +26 -0
- package/deps/jq/.gitattributes +2 -0
- package/deps/jq/.travis.yml +53 -0
- package/deps/jq/AUTHORS +73 -0
- package/deps/jq/COPYING +70 -0
- package/deps/jq/ChangeLog +1349 -0
- package/deps/jq/Makefile.am +198 -0
- package/deps/jq/NEWS +88 -0
- package/deps/jq/README.md +64 -0
- package/deps/jq/builtin.c +1684 -0
- package/deps/jq/builtin.h +10 -0
- package/deps/jq/bytecode.c +161 -0
- package/deps/jq/bytecode.h +92 -0
- package/deps/jq/compile-ios.sh +102 -0
- package/deps/jq/compile.c +1210 -0
- package/deps/jq/compile.h +101 -0
- package/deps/jq/config/m4/check-math-func.m4 +4 -0
- package/deps/jq/config/m4/find-func-no-libs.m4 +8 -0
- package/deps/jq/config/m4/find-func-no-libs2.m4 +62 -0
- package/deps/jq/config/m4/find-func.m4 +9 -0
- package/deps/jq/config/m4/misc.m4 +3 -0
- package/deps/jq/configure.ac +221 -0
- package/deps/jq/docs/Gemfile +7 -0
- package/deps/jq/docs/Gemfile.lock +63 -0
- package/deps/jq/docs/README.md +25 -0
- package/deps/jq/docs/Rakefile +145 -0
- package/deps/jq/docs/content/1.tutorial/default.yml +327 -0
- package/deps/jq/docs/content/2.download/default.yml +117 -0
- package/deps/jq/docs/content/3.manual/manual.yml +2878 -0
- package/deps/jq/docs/content/3.manual/v1.3/manual.yml +1270 -0
- package/deps/jq/docs/content/3.manual/v1.4/manual.yml +1672 -0
- package/deps/jq/docs/content/index/index.yml +51 -0
- package/deps/jq/docs/default_manpage.md +22 -0
- package/deps/jq/docs/public/.htaccess +28 -0
- package/deps/jq/docs/public/bootstrap/css/bootstrap-responsive.css +1058 -0
- package/deps/jq/docs/public/bootstrap/css/bootstrap-responsive.min.css +9 -0
- package/deps/jq/docs/public/bootstrap/css/bootstrap.css +5224 -0
- package/deps/jq/docs/public/bootstrap/css/bootstrap.min.css +9 -0
- package/deps/jq/docs/public/bootstrap/img/glyphicons-halflings-white.png +0 -0
- package/deps/jq/docs/public/bootstrap/img/glyphicons-halflings.png +0 -0
- package/deps/jq/docs/public/bootstrap/js/bootstrap.js +2027 -0
- package/deps/jq/docs/public/bootstrap/js/bootstrap.min.js +6 -0
- package/deps/jq/docs/public/css/base.scss +99 -0
- package/deps/jq/docs/public/jq.png +0 -0
- package/deps/jq/docs/public/robots.txt +2 -0
- package/deps/jq/docs/site.yml +18 -0
- package/deps/jq/docs/templates/default.liquid +34 -0
- package/deps/jq/docs/templates/index.liquid +60 -0
- package/deps/jq/docs/templates/manual.liquid +122 -0
- package/deps/jq/docs/templates/shared/_footer.liquid +5 -0
- package/deps/jq/docs/templates/shared/_head.liquid +12 -0
- package/deps/jq/docs/templates/shared/_header.liquid +26 -0
- package/deps/jq/exec_stack.h +112 -0
- package/deps/jq/execute.c +1155 -0
- package/deps/jq/inject_errors.c +112 -0
- package/deps/jq/jq.1.default +39 -0
- package/deps/jq/jq.1.prebuilt +3075 -0
- package/deps/jq/jq.h +60 -0
- package/deps/jq/jq.spec +70 -0
- package/deps/jq/jq_parser.h +9 -0
- package/deps/jq/jq_test.c +346 -0
- package/deps/jq/jv.c +1333 -0
- package/deps/jq/jv.h +240 -0
- package/deps/jq/jv_alloc.c +179 -0
- package/deps/jq/jv_alloc.h +27 -0
- package/deps/jq/jv_aux.c +619 -0
- package/deps/jq/jv_dtoa.c +4275 -0
- package/deps/jq/jv_dtoa.h +22 -0
- package/deps/jq/jv_file.c +49 -0
- package/deps/jq/jv_parse.c +852 -0
- package/deps/jq/jv_print.c +348 -0
- package/deps/jq/jv_unicode.c +96 -0
- package/deps/jq/jv_unicode.h +11 -0
- package/deps/jq/jv_utf8_tables.h +37 -0
- package/deps/jq/lexer.c +2442 -0
- package/deps/jq/lexer.h +362 -0
- package/deps/jq/lexer.l +184 -0
- package/deps/jq/libm.h +160 -0
- package/deps/jq/linker.c +393 -0
- package/deps/jq/linker.h +7 -0
- package/deps/jq/locfile.c +91 -0
- package/deps/jq/locfile.h +29 -0
- package/deps/jq/m4/ax_compare_version.m4 +177 -0
- package/deps/jq/m4/ax_prog_bison_version.m4 +68 -0
- package/deps/jq/main.c +566 -0
- package/deps/jq/opcode_list.h +44 -0
- package/deps/jq/parser.c +3914 -0
- package/deps/jq/parser.h +193 -0
- package/deps/jq/parser.y +923 -0
- package/deps/jq/scripts/crosscompile +42 -0
- package/deps/jq/scripts/gen_utf8_tables.py +32 -0
- package/deps/jq/scripts/version +5 -0
- package/deps/jq/setup.sh +33 -0
- package/deps/jq/tests/jq.test +1235 -0
- package/deps/jq/tests/jqtest +5 -0
- package/deps/jq/tests/mantest +7 -0
- package/deps/jq/tests/modules/.jq +5 -0
- package/deps/jq/tests/modules/a.jq +2 -0
- package/deps/jq/tests/modules/b/b.jq +2 -0
- package/deps/jq/tests/modules/c/c.jq +16 -0
- package/deps/jq/tests/modules/c/d.jq +1 -0
- package/deps/jq/tests/modules/data.json +4 -0
- package/deps/jq/tests/modules/lib/jq/e/e.jq +1 -0
- package/deps/jq/tests/modules/lib/jq/f.jq +1 -0
- package/deps/jq/tests/modules/syntaxerror/syntaxerror.jq +1 -0
- package/deps/jq/tests/modules/test_bind_order.jq +4 -0
- package/deps/jq/tests/modules/test_bind_order0.jq +1 -0
- package/deps/jq/tests/modules/test_bind_order1.jq +2 -0
- package/deps/jq/tests/modules/test_bind_order2.jq +2 -0
- package/deps/jq/tests/onig.supp +21 -0
- package/deps/jq/tests/onig.test +85 -0
- package/deps/jq/tests/onigtest +5 -0
- package/deps/jq/tests/setup +36 -0
- package/deps/jq/tests/shtest +205 -0
- package/deps/jq/tests/torture/input0.json +7 -0
- package/deps/jq/util.c +462 -0
- package/deps/jq/util.h +64 -0
- package/deps/jq.gyp +35 -0
- package/index.d.ts +3 -0
- package/jest.config.js +10 -0
- package/lib/index.js +14 -0
- package/package.json +48 -0
- package/reports/jest-port-api.xml +35 -0
- package/src/binding.cc +177 -0
- package/src/binding.h +13 -0
- package/test/santiy.test.js +122 -0
- package/util/configure.js +27 -0
|
@@ -0,0 +1,1349 @@
|
|
|
1
|
+
2015-07-10 Nicolas Williams nico@cryptonector.com
|
|
2
|
+
|
|
3
|
+
Use `include` for import into namespace
|
|
4
|
+
|
|
5
|
+
Simplify import docs
|
|
6
|
+
|
|
7
|
+
Fix typo in docs
|
|
8
|
+
|
|
9
|
+
2015-07-06 James Andariese james.andariese@locationlabs.com
|
|
10
|
+
|
|
11
|
+
Dockerfile reorganized
|
|
12
|
+
|
|
13
|
+
2015-07-04 David Tolnay dtolnay@gmail.com
|
|
14
|
+
|
|
15
|
+
Make jq.h usable from C++
|
|
16
|
+
|
|
17
|
+
2015-07-03 Nicolas Williams nico@cryptonector.com
|
|
18
|
+
|
|
19
|
+
Document math support
|
|
20
|
+
|
|
21
|
+
2015-06-30 David Tolnay dtolnay@gmail.com
|
|
22
|
+
|
|
23
|
+
strftime wrong day-of-week (fix #838)
|
|
24
|
+
|
|
25
|
+
2015-06-28 Nicolas Williams nico@cryptonector.com
|
|
26
|
+
|
|
27
|
+
Document --run-tests
|
|
28
|
+
|
|
29
|
+
Make --run-tests' jv_test() quiet
|
|
30
|
+
|
|
31
|
+
2015-06-27 Nicolas Williams nico@cryptonector.com
|
|
32
|
+
|
|
33
|
+
Make --run-tests less verbose by default
|
|
34
|
+
|
|
35
|
+
Add more basic number tests
|
|
36
|
+
|
|
37
|
+
Add `pow`, better libm detection (fix #443)
|
|
38
|
+
|
|
39
|
+
2015-06-27 David Tolnay dtolnay@gmail.com
|
|
40
|
+
|
|
41
|
+
gcov exclusions
|
|
42
|
+
|
|
43
|
+
flag to enable gcov and coveralls
|
|
44
|
+
|
|
45
|
+
add configure option to run tests without valgrind
|
|
46
|
+
|
|
47
|
+
2015-06-20 David Tolnay dtolnay@gmail.com
|
|
48
|
+
|
|
49
|
+
get Travis CI working
|
|
50
|
+
|
|
51
|
+
2015-06-26 Nicolas Williams nico@cryptonector.com
|
|
52
|
+
|
|
53
|
+
Add `{$var}` `. as {$var}` syntax (fix #831)
|
|
54
|
+
|
|
55
|
+
Add streaming utilities (fix #827)
|
|
56
|
+
|
|
57
|
+
2015-06-04 Santiago Lapresta santiago@typeform.com
|
|
58
|
+
|
|
59
|
+
Add combinations/0 and combinations/1
|
|
60
|
+
|
|
61
|
+
2015-06-22 Nicolas Williams nico@cryptonector.com
|
|
62
|
+
|
|
63
|
+
WriteFile() on WIN32 when stdout isatty (fix #824)
|
|
64
|
+
|
|
65
|
+
2015-06-19 David Tolnay dtolnay@gmail.com
|
|
66
|
+
|
|
67
|
+
fix errors flagged by clang static analyzer
|
|
68
|
+
|
|
69
|
+
2015-06-19 Nicolas Williams nico@cryptonector.com
|
|
70
|
+
|
|
71
|
+
Fix #811: use CommandLineToArgvW() and _wfopen()
|
|
72
|
+
|
|
73
|
+
2015-06-18 David Tolnay dtolnay@gmail.com
|
|
74
|
+
|
|
75
|
+
fix use after free in f_strptime
|
|
76
|
+
|
|
77
|
+
separate jq, oniguruma, sh, and man tests
|
|
78
|
+
|
|
79
|
+
2015-06-18 Nicolas Williams nico@cryptonector.com
|
|
80
|
+
|
|
81
|
+
argv[] may not be UTF-8 (fix #811)
|
|
82
|
+
|
|
83
|
+
2015-06-18 Doug Luce doug@github.con.com
|
|
84
|
+
|
|
85
|
+
Add alloca() discovery to configure.ac
|
|
86
|
+
|
|
87
|
+
2015-06-18 Nicolas Williams nico@cryptonector.com
|
|
88
|
+
|
|
89
|
+
Fix `finites`
|
|
90
|
+
|
|
91
|
+
2015-06-17 David Tolnay dtolnay@gmail.com
|
|
92
|
+
|
|
93
|
+
fix broken tests in manual.yml
|
|
94
|
+
|
|
95
|
+
2015-06-17 Nicolas Williams nico@cryptonector.com
|
|
96
|
+
|
|
97
|
+
Add isnormal and related, rename *inf
|
|
98
|
+
|
|
99
|
+
2015-06-17 Nicolas Williams nico@cryptonector.com
|
|
100
|
+
|
|
101
|
+
Fix #814: raise on div-0, add inf isinf nan isnan
|
|
102
|
+
|
|
103
|
+
2015-06-17 Nicolas Williams nico@cryptonector.com
|
|
104
|
+
|
|
105
|
+
Sequence parser: wait for RS on startup (fix #687)
|
|
106
|
+
|
|
107
|
+
2015-06-07 David Tolnay dtolnay@gmail.com
|
|
108
|
+
|
|
109
|
+
array and object destructuring (fix #533)
|
|
110
|
+
|
|
111
|
+
2015-06-03 Nicolas Williams nico@cryptonector.com
|
|
112
|
+
|
|
113
|
+
Add --tab and -indent n options
|
|
114
|
+
|
|
115
|
+
2015-05-29 Nicolas Williams nico@cryptonector.com
|
|
116
|
+
|
|
117
|
+
Fixup --slurpfile/argile docs
|
|
118
|
+
|
|
119
|
+
Add --slurpfile
|
|
120
|
+
|
|
121
|
+
Better handling of stdout errors
|
|
122
|
+
|
|
123
|
+
2015-05-25 Nicolas Williams nico@cryptonector.com
|
|
124
|
+
|
|
125
|
+
Add ./configure --enable-all-static
|
|
126
|
+
|
|
127
|
+
2015-05-25 Nicolas Williams nico@cryptonector.com
|
|
128
|
+
|
|
129
|
+
Keywords should be OK as object keys (fix #794)
|
|
130
|
+
|
|
131
|
+
2015-03-04 Travis Gockel travis@gockelhut.com
|
|
132
|
+
|
|
133
|
+
Add wrapping and clamping to jv_array_slice
|
|
134
|
+
|
|
135
|
+
2015-04-17 Assaf Gordon assafgordon@gmail.com
|
|
136
|
+
|
|
137
|
+
Print offending object in runtime error messages
|
|
138
|
+
|
|
139
|
+
Add filename/line functions to jq (fix #753)
|
|
140
|
+
|
|
141
|
+
2015-04-17 Assaf Gordon assafgordon@gmail.com
|
|
142
|
+
|
|
143
|
+
Report filename:line on runtime errors (fix #752)
|
|
144
|
+
|
|
145
|
+
2015-05-19 Nicolas Williams nico@cryptonector.com
|
|
146
|
+
|
|
147
|
+
Document gsub/3
|
|
148
|
+
|
|
149
|
+
2015-05-03 Nicolas Williams nico@cryptonector.com
|
|
150
|
+
|
|
151
|
+
Add error injection library
|
|
152
|
+
|
|
153
|
+
2015-04-28 Nicolas Williams nico@cryptonector.com
|
|
154
|
+
|
|
155
|
+
Report read errors too (and fix #772)
|
|
156
|
+
|
|
157
|
+
2015-05-02 Nicolas Williams nico@cryptonector.com
|
|
158
|
+
|
|
159
|
+
README: send questions to SO and Freenode
|
|
160
|
+
|
|
161
|
+
2015-04-28 Nicolas Williams nico@cryptonector.com
|
|
162
|
+
|
|
163
|
+
usage() should check fprintf() result (fix #771)
|
|
164
|
+
|
|
165
|
+
2015-04-28 Nicolas Williams nico@cryptonector.com
|
|
166
|
+
|
|
167
|
+
Fix header guards (fix #770)
|
|
168
|
+
|
|
169
|
+
2015-04-24 Nicolas Williams nico@cryptonector.com
|
|
170
|
+
|
|
171
|
+
--raw-input wrongly adds NULs (fix #761)
|
|
172
|
+
|
|
173
|
+
2015-04-23 Nicolas Williams nico@cryptonector.com
|
|
174
|
+
|
|
175
|
+
With `inputs` builtin, -n and -R can now coexist
|
|
176
|
+
|
|
177
|
+
--raw-input ought to read NULs (partial fix #760)
|
|
178
|
+
|
|
179
|
+
--slurp --raw-input is broken (fix #761)
|
|
180
|
+
|
|
181
|
+
from_entries is broken (fix #767)
|
|
182
|
+
|
|
183
|
+
2015-04-22 Assaf Gordon assafgordon@gmail.com
|
|
184
|
+
|
|
185
|
+
regex functions: report informative error if not available.
|
|
186
|
+
|
|
187
|
+
2015-04-21 Andrew O'Brien obrien.andrew@gmail.com
|
|
188
|
+
|
|
189
|
+
Fixes manual generation with psych
|
|
190
|
+
|
|
191
|
+
2015-04-20 Assaf Gordon assafgordon@gmail.com
|
|
192
|
+
|
|
193
|
+
Handle NUL in escaped-string output
|
|
194
|
+
|
|
195
|
+
2015-04-03 tal@whatexit.org tal@whatexit.org
|
|
196
|
+
|
|
197
|
+
manual.yml: Clarify how to specify keys with ":" and special chars.
|
|
198
|
+
|
|
199
|
+
2015-04-15 Assaf Gordon assafgordon@gmail.com
|
|
200
|
+
|
|
201
|
+
docs: expand @tsv section - add escape sequences.
|
|
202
|
+
|
|
203
|
+
@tsv: escape \r, \n, \\
|
|
204
|
+
|
|
205
|
+
2015-03-30 Nicolas Williams nico@cryptonector.com
|
|
206
|
+
|
|
207
|
+
Add `$__loc__` (fix #740)
|
|
208
|
+
|
|
209
|
+
2015-03-29 Nicolas Williams nico@cryptonector.com
|
|
210
|
+
|
|
211
|
+
Include filename and lineno in error messages
|
|
212
|
+
|
|
213
|
+
2015-03-06 Assaf Gordon assafgordon@gmail.com
|
|
214
|
+
|
|
215
|
+
detect and report output writing errors
|
|
216
|
+
|
|
217
|
+
2015-03-18 Santiago Lapresta santiago.lapresta@gmail.com
|
|
218
|
+
|
|
219
|
+
Adds Dockerfile
|
|
220
|
+
|
|
221
|
+
2015-03-10 Assaf Gordon assafgordon@gmail.com
|
|
222
|
+
|
|
223
|
+
partial handling of input errors
|
|
224
|
+
|
|
225
|
+
2015-03-09 Assaf Gordon assafgordon@gmail.com
|
|
226
|
+
|
|
227
|
+
always propagate input errors to exit code
|
|
228
|
+
|
|
229
|
+
2015-03-23 William Langford wlangfor@gmail.com
|
|
230
|
+
|
|
231
|
+
Fix #735 (SIGFPE on modulo by 0)
|
|
232
|
+
|
|
233
|
+
2015-03-08 Nicolas Williams nico@cryptonector.com
|
|
234
|
+
|
|
235
|
+
Add more date builtins
|
|
236
|
+
|
|
237
|
+
Automake: jq depends on version.h (fix #721)
|
|
238
|
+
|
|
239
|
+
2015-03-06 Assaf Gordon assafgordon@gmail.com
|
|
240
|
+
|
|
241
|
+
exit with non-zero code on runtime exceptions
|
|
242
|
+
|
|
243
|
+
2015-03-06 Nicolas Williams nico@cryptonector.com
|
|
244
|
+
|
|
245
|
+
Add date builtins (fix #364)
|
|
246
|
+
|
|
247
|
+
2015-02-18 Stefan Seemayer stefan@seemayer.de
|
|
248
|
+
|
|
249
|
+
Correct automake and autoconf version requirements
|
|
250
|
+
|
|
251
|
+
2015-02-17 Nicolas Williams nico@cryptonector.com
|
|
252
|
+
|
|
253
|
+
Mention --disable-maintainer-mode in bison error
|
|
254
|
+
|
|
255
|
+
2015-02-16 Sebastian Freundt freundt@ga-group.nl
|
|
256
|
+
|
|
257
|
+
Fix oniguruma detection logic
|
|
258
|
+
|
|
259
|
+
2015-02-15 Nicolas Williams nico@cryptonector.com
|
|
260
|
+
|
|
261
|
+
Add --disable-maintainer-mode; make bison optional
|
|
262
|
+
|
|
263
|
+
2015-02-14 Nicolas Williams nico@cryptonector.com
|
|
264
|
+
|
|
265
|
+
Make Oniguruma/regexp optional
|
|
266
|
+
|
|
267
|
+
2015-02-01 Nicolas Williams nico@cryptonector.com
|
|
268
|
+
|
|
269
|
+
Refactor moar: move parts of main.c into libjq
|
|
270
|
+
|
|
271
|
+
2014-12-27 Nicolas Williams nico@cryptonector.com
|
|
272
|
+
|
|
273
|
+
Refactor handling of inputs in main() (fix #667)
|
|
274
|
+
|
|
275
|
+
2015-02-10 Kim Toms kim.toms@bplglobal.net
|
|
276
|
+
|
|
277
|
+
Enhance from_entries to better deal with Amazon AWS Tags
|
|
278
|
+
|
|
279
|
+
2015-01-26 Nicolas Williams nico@cryptonector.com
|
|
280
|
+
|
|
281
|
+
Usage message for -h should go to stdout
|
|
282
|
+
|
|
283
|
+
2015-01-27 i isomorphisms@sdf.org
|
|
284
|
+
|
|
285
|
+
readability
|
|
286
|
+
|
|
287
|
+
2015-01-14 Joel Purra code+github@joelpurra.com
|
|
288
|
+
|
|
289
|
+
Empty arrays join/1 to an empty string, fixes #668 bug introduced by 9760245
|
|
290
|
+
|
|
291
|
+
2014-12-27 Nicolas Williams nico@cryptonector.com
|
|
292
|
+
|
|
293
|
+
Add `debug` and `stderr` builtins
|
|
294
|
+
|
|
295
|
+
2015-01-13 Nicolas Williams nico@cryptonector.com
|
|
296
|
+
|
|
297
|
+
join/1: respect empty strings (fix #668)
|
|
298
|
+
|
|
299
|
+
2015-01-13 Nicolas Williams nico@cryptonector.com
|
|
300
|
+
|
|
301
|
+
Split on empty sep: fix #552 moar
|
|
302
|
+
|
|
303
|
+
2015-01-12 Nicolas Williams nico@cryptonector.com
|
|
304
|
+
|
|
305
|
+
Fix docs for `split/0`
|
|
306
|
+
|
|
307
|
+
2015-01-12 Nicolas Williams nico@cryptonector.com
|
|
308
|
+
|
|
309
|
+
Fix #552
|
|
310
|
+
|
|
311
|
+
2015-01-02 Nicolas Williams nico@cryptonector.com
|
|
312
|
+
|
|
313
|
+
Look for jq/main.jq for imports
|
|
314
|
+
|
|
315
|
+
2015-01-01 Nicolas Williams nico@cryptonector.com
|
|
316
|
+
|
|
317
|
+
Add static build instructions (fix #294)
|
|
318
|
+
|
|
319
|
+
2014-12-30 Nicolas Williams nico@cryptonector.com
|
|
320
|
+
|
|
321
|
+
Further module system revamp (fix #659)
|
|
322
|
+
|
|
323
|
+
2014-12-28 Nicolas Williams nico@cryptonector.com
|
|
324
|
+
|
|
325
|
+
Add `label $name | EXP`; fix `break`
|
|
326
|
+
|
|
327
|
+
2014-12-30 Nicolas Williams nico@cryptonector.com
|
|
328
|
+
|
|
329
|
+
Remove string indexing by string (fix #454)
|
|
330
|
+
|
|
331
|
+
2014-12-30 Nicolas Williams nico@cryptonector.com
|
|
332
|
+
|
|
333
|
+
Add support for testing erroneous programs
|
|
334
|
+
|
|
335
|
+
2014-12-30 Nicolas Williams nico@cryptonector.com
|
|
336
|
+
|
|
337
|
+
Make --run-tests more informative
|
|
338
|
+
|
|
339
|
+
2014-10-06 pkoppstein pkoppstein@gmail.com
|
|
340
|
+
|
|
341
|
+
transpose/0 for possibly jagged matrices
|
|
342
|
+
|
|
343
|
+
2014-10-07 pkoppstein pkoppstein@gmail.com
|
|
344
|
+
|
|
345
|
+
bsearch(x) (binary search): builtin.c (tested), with documentation and test case. Always yields an integer (even if input is unsorted); returns (-1 - ix) if x is not in input array.
|
|
346
|
+
|
|
347
|
+
2014-10-06 pkoppstein pkoppstein@gmail.com
|
|
348
|
+
|
|
349
|
+
ascii_upcase/0 and ascii_downcase/0
|
|
350
|
+
|
|
351
|
+
2014-12-27 Nicolas Williams nico@cryptonector.com
|
|
352
|
+
|
|
353
|
+
Add `debug` builtin
|
|
354
|
+
|
|
355
|
+
Don't force C API users to set input cb
|
|
356
|
+
|
|
357
|
+
2014-12-26 Nicolas Williams nico@cryptonector.com
|
|
358
|
+
|
|
359
|
+
Make jq --run-tests show test line numbers
|
|
360
|
+
|
|
361
|
+
Streaming parser torture tests
|
|
362
|
+
|
|
363
|
+
Fuzz JSON parser
|
|
364
|
+
|
|
365
|
+
2014-12-22 Nicolas Williams nico@cryptonector.com
|
|
366
|
+
|
|
367
|
+
Add Streaming parser (--stream)
|
|
368
|
+
|
|
369
|
+
2014-12-26 Nicolas Williams nico@cryptonector.com
|
|
370
|
+
|
|
371
|
+
Allow C-coded functions to `empty`
|
|
372
|
+
|
|
373
|
+
Add BLOCK_8() macro
|
|
374
|
+
|
|
375
|
+
Fix `foreach` non-progation of errors
|
|
376
|
+
|
|
377
|
+
Allow zero-length buffers in jv_parser_set_buf()
|
|
378
|
+
|
|
379
|
+
2014-12-24 Nicolas Williams nico@cryptonector.com
|
|
380
|
+
|
|
381
|
+
Add @tsv; fix #645
|
|
382
|
+
|
|
383
|
+
Module search revamp for pkg managers
|
|
384
|
+
|
|
385
|
+
Fix #348: reject unescaped control chars
|
|
386
|
+
|
|
387
|
+
2014-12-23 Nicolas Williams nico@cryptonector.com
|
|
388
|
+
|
|
389
|
+
Use __attribute__ __printf__ with GCC
|
|
390
|
+
|
|
391
|
+
Make `values` faster (fix #652)
|
|
392
|
+
|
|
393
|
+
2014-12-22 Marc Abramowitz marc@marc-abramowitz.com
|
|
394
|
+
|
|
395
|
+
.travis.yml: Set sudo false; use containers
|
|
396
|
+
|
|
397
|
+
2014-12-22 Santiago Lapresta santiago.lapresta@gmail.com
|
|
398
|
+
|
|
399
|
+
Define `map_values`
|
|
400
|
+
|
|
401
|
+
2014-05-21 Santiago Lapresta santiago.lapresta@gmail.com
|
|
402
|
+
|
|
403
|
+
`in` is now `inside`, added `in` as inverse of `has`
|
|
404
|
+
|
|
405
|
+
2014-05-20 Santiago Lapresta santiago.lapresta@gmail.com
|
|
406
|
+
|
|
407
|
+
Added `in` command
|
|
408
|
+
|
|
409
|
+
2014-12-21 Eiichi Sato sato.eiichi@gmail.com
|
|
410
|
+
|
|
411
|
+
Fix examples in manual
|
|
412
|
+
|
|
413
|
+
Fix indents in manual.yml
|
|
414
|
+
|
|
415
|
+
HTML-escape jq programs in manual
|
|
416
|
+
|
|
417
|
+
Fix examples in manual
|
|
418
|
+
|
|
419
|
+
2014-12-12 Nicolas Williams nico@cryptonector.com
|
|
420
|
+
|
|
421
|
+
Add until(cond; next); fix #639
|
|
422
|
+
|
|
423
|
+
Add --argjson, fix #648
|
|
424
|
+
|
|
425
|
+
2014-11-29 Nicolas Williams nico@cryptonector.com
|
|
426
|
+
|
|
427
|
+
Fix refcount leak, fix #618
|
|
428
|
+
|
|
429
|
+
2014-11-28 Nicolas Williams nico@cryptonector.com
|
|
430
|
+
|
|
431
|
+
STOREV/LOADV* should also print refcnts
|
|
432
|
+
|
|
433
|
+
Enable printing of stack val refcnts
|
|
434
|
+
|
|
435
|
+
Print stack value refcounts when tracing (#636)
|
|
436
|
+
|
|
437
|
+
2014-11-23 Colin von Heuring colin@janrain.com
|
|
438
|
+
|
|
439
|
+
Doc correction
|
|
440
|
+
|
|
441
|
+
2014-11-11 Ian Miell ian.miell@gmail.com
|
|
442
|
+
|
|
443
|
+
Requirements made slightly more complete: cf https://github.com/ianmiell/shutit/blob/master/library/jq/jq.py
|
|
444
|
+
|
|
445
|
+
2014-11-05 Steven Maude StevenMaude@users.noreply.github.com
|
|
446
|
+
|
|
447
|
+
Fix typos in tutorial
|
|
448
|
+
|
|
449
|
+
2014-10-21 Santiago Lapresta santiago.lapresta@gmail.com
|
|
450
|
+
|
|
451
|
+
Define {any,all}/2 independently from {any,all}/0
|
|
452
|
+
|
|
453
|
+
2014-10-20 Santiago Lapresta santiago.lapresta@gmail.com
|
|
454
|
+
|
|
455
|
+
Define {any,all}/{0,1} in terms of {any,all}/2
|
|
456
|
+
|
|
457
|
+
2014-10-10 Nicolas Williams nico@cryptonector.com
|
|
458
|
+
|
|
459
|
+
Add support for JSON sequence MIME type
|
|
460
|
+
|
|
461
|
+
2014-10-06 William Langford wlangfor@gmail.com
|
|
462
|
+
|
|
463
|
+
Properly call onig_error_code_to_str
|
|
464
|
+
|
|
465
|
+
2014-10-06 pkoppstein pkoppstein@gmail.com
|
|
466
|
+
|
|
467
|
+
fix sub (#586); add gsub/3; add transpose/0.
|
|
468
|
+
|
|
469
|
+
2014-10-03 Nicolas Williams nico@cryptonector.com
|
|
470
|
+
|
|
471
|
+
Update docs about sort/group/min/max/unique
|
|
472
|
+
|
|
473
|
+
from-entries should work with EC2 (fix #592)
|
|
474
|
+
|
|
475
|
+
Remove sort/1 and group/1
|
|
476
|
+
|
|
477
|
+
2014-09-30 Nicolas Williams nico@cryptonector.com
|
|
478
|
+
|
|
479
|
+
to_entries should not sort keys (fix #561)
|
|
480
|
+
|
|
481
|
+
2014-09-22 William Langford wlangfor@gmail.com
|
|
482
|
+
|
|
483
|
+
Properly handle when objects cannot be folded
|
|
484
|
+
|
|
485
|
+
2014-08-30 Nicolas Williams nico@cryptonector.com
|
|
486
|
+
|
|
487
|
+
Drop the jq version directory from search path
|
|
488
|
+
|
|
489
|
+
Never close stdin; allow multiple `-` arguments
|
|
490
|
+
|
|
491
|
+
Handle invalid inputs in argument files (fix #562)
|
|
492
|
+
|
|
493
|
+
2014-08-28 William Langford wlangfor@gmail.com
|
|
494
|
+
|
|
495
|
+
Properly handle incomplete json when input is file
|
|
496
|
+
|
|
497
|
+
2014-08-10 Nicolas Williams nico@cryptonector.com
|
|
498
|
+
|
|
499
|
+
Add `module` directive, `modulemeta` builtin
|
|
500
|
+
|
|
501
|
+
2014-08-09 Nicolas Williams nico@cryptonector.com
|
|
502
|
+
|
|
503
|
+
Constant fold objects
|
|
504
|
+
|
|
505
|
+
Fold constant arrays
|
|
506
|
+
|
|
507
|
+
More constant folding: null, true, and false
|
|
508
|
+
|
|
509
|
+
`.foo[-1] = ...` trips assertion (fix #490)
|
|
510
|
+
|
|
511
|
+
Allow any number of jq-coded function arguments
|
|
512
|
+
|
|
513
|
+
2014-08-08 Nicolas Williams nico@cryptonector.com
|
|
514
|
+
|
|
515
|
+
Make regexp builtins and range/3 use #524 too
|
|
516
|
+
|
|
517
|
+
Use `def f($a): ...;` syntax for builtins
|
|
518
|
+
|
|
519
|
+
Add `def f($arg):` syntax (fix #524)
|
|
520
|
+
|
|
521
|
+
2014-07-31 pkoppstein pkoppstein@gmail.com
|
|
522
|
+
|
|
523
|
+
regex filters (#432): scan, splits, split, sub, gsub
|
|
524
|
+
|
|
525
|
+
2014-08-06 Nicolas Williams nico@cryptonector.com
|
|
526
|
+
|
|
527
|
+
Better error msg for bad shell quoting (fix #538)
|
|
528
|
+
|
|
529
|
+
2014-08-04 William Langford wlangfor@gmail.com
|
|
530
|
+
|
|
531
|
+
Actually check version for bison.
|
|
532
|
+
|
|
533
|
+
2014-08-03 pkoppstein pkoppstein@gmail.com
|
|
534
|
+
|
|
535
|
+
Apply TCO to recurse/1, add recurse/2; tweak docs
|
|
536
|
+
|
|
537
|
+
2014-08-01 Adam Lindberg hello@alind.io
|
|
538
|
+
|
|
539
|
+
Add example of selecting object with keys
|
|
540
|
+
|
|
541
|
+
2014-07-19 pkoppstein pkoppstein@gmail.com
|
|
542
|
+
|
|
543
|
+
Add capture; document regular expression filters
|
|
544
|
+
|
|
545
|
+
2014-07-28 Nicolas Williams nico@cryptonector.com
|
|
546
|
+
|
|
547
|
+
Add `first`, `nth`, `last` (fix #510)
|
|
548
|
+
|
|
549
|
+
2014-07-27 Nicolas Williams nico@cryptonector.com
|
|
550
|
+
|
|
551
|
+
Fold constants (fix #504)
|
|
552
|
+
|
|
553
|
+
2014-07-21 William Langford wlangfor@gmail.com
|
|
554
|
+
|
|
555
|
+
Changing color codes to fix #495
|
|
556
|
+
|
|
557
|
+
2014-07-09 William Langford wlangfor@gmail.com
|
|
558
|
+
|
|
559
|
+
Added library system with -l, -L, and JQ_LIBRARY_PATH
|
|
560
|
+
|
|
561
|
+
2014-07-14 Simon Elsbrock simon@iodev.org
|
|
562
|
+
|
|
563
|
+
jq 1.4 is in Debian
|
|
564
|
+
|
|
565
|
+
2014-07-13 Marc Bruggmann marcbr@spotify.com
|
|
566
|
+
|
|
567
|
+
Fix manual example for `endswith`.
|
|
568
|
+
|
|
569
|
+
2014-07-09 Hanfei Shen qqshfox@gmail.com
|
|
570
|
+
|
|
571
|
+
Fix examples for `del` in manual
|
|
572
|
+
|
|
573
|
+
2014-07-08 Zhiming Wang zmwangx@gmail.com
|
|
574
|
+
|
|
575
|
+
Fix invalid YAML in manual.yml
|
|
576
|
+
|
|
577
|
+
Add tests/all.trs to .gitignore
|
|
578
|
+
|
|
579
|
+
2014-07-09 Nicolas Williams nico@cryptonector.com
|
|
580
|
+
|
|
581
|
+
Better document `path()`'s power; also `|=`
|
|
582
|
+
|
|
583
|
+
Add `foreach EXP as $var (INIT; UPDATE)` form
|
|
584
|
+
|
|
585
|
+
Make `while()` handle `break`
|
|
586
|
+
|
|
587
|
+
2014-07-07 Nicolas Williams nico@cryptonector.com
|
|
588
|
+
|
|
589
|
+
Make C-coded built-ins take `jq_state *` argument
|
|
590
|
+
|
|
591
|
+
`error(x)` should not `tostring` its arg; fix #466
|
|
592
|
+
|
|
593
|
+
`limit` should use `break`
|
|
594
|
+
|
|
595
|
+
Make `any/2` and `all/2` efficient using `foreach`
|
|
596
|
+
|
|
597
|
+
2013-12-24 Nicolas Williams nico@cryptonector.com
|
|
598
|
+
|
|
599
|
+
jv_invalid() shouldn't allocate
|
|
600
|
+
|
|
601
|
+
2013-12-31 Nicolas Williams nico@cryptonector.com
|
|
602
|
+
|
|
603
|
+
jv_show() should be able to display invalid values
|
|
604
|
+
|
|
605
|
+
2014-07-07 Nicolas Williams nico@cryptonector.com
|
|
606
|
+
|
|
607
|
+
Add `break` builtin for `foreach`
|
|
608
|
+
|
|
609
|
+
Explain `foreach`'s powers a bit more
|
|
610
|
+
|
|
611
|
+
Document `path(path_expression)` builtin
|
|
612
|
+
|
|
613
|
+
$var["foo"]=1 can't work as expected; doc fix #236
|
|
614
|
+
|
|
615
|
+
Better check for lib has only functions (fix #138)
|
|
616
|
+
|
|
617
|
+
2014-07-06 Nicolas Williams nico@cryptonector.com
|
|
618
|
+
|
|
619
|
+
Add `any/N` and `all/N` x N in (1, 2) (fix #455)
|
|
620
|
+
|
|
621
|
+
Add `foreach` and `limit`
|
|
622
|
+
|
|
623
|
+
2014-07-04 William Langford wlangfor@gmail.com
|
|
624
|
+
|
|
625
|
+
Add support for negative indices for .[]; fix #462
|
|
626
|
+
|
|
627
|
+
2014-07-06 Nicolas Williams nico@cryptonector.com
|
|
628
|
+
|
|
629
|
+
Add general `?` operator
|
|
630
|
+
|
|
631
|
+
2014-07-05 Nicolas Williams nico@cryptonector.com
|
|
632
|
+
|
|
633
|
+
Add `try EXP catch EXP`
|
|
634
|
+
|
|
635
|
+
2014-07-06 Nicolas Williams nico@cryptonector.com
|
|
636
|
+
|
|
637
|
+
Document `error/1`
|
|
638
|
+
|
|
639
|
+
2014-07-02 Nicolas Williams nico@cryptonector.com
|
|
640
|
+
|
|
641
|
+
Add `while(cond; update)` (fix #314)
|
|
642
|
+
|
|
643
|
+
Add `range(init;upto;by)` (fix #317)
|
|
644
|
+
|
|
645
|
+
2014-07-01 Nicolas Williams nico@cryptonector.com
|
|
646
|
+
|
|
647
|
+
Describe generators, range() with by to manual
|
|
648
|
+
|
|
649
|
+
2014-07-01 William Langford wlangfor@gmail.com
|
|
650
|
+
|
|
651
|
+
Fixed base64 issue with UTF-8 strings
|
|
652
|
+
|
|
653
|
+
2014-06-30 Nicolas Williams nico@cryptonector.com
|
|
654
|
+
|
|
655
|
+
TCO to the max!
|
|
656
|
+
|
|
657
|
+
2014-06-25 William Langford wlangfor@gmail.com
|
|
658
|
+
|
|
659
|
+
Added cross-compilation script to build libjq for iOS.
|
|
660
|
+
|
|
661
|
+
2014-06-29 Zhiming Wang zmwangx@gmail.com
|
|
662
|
+
|
|
663
|
+
Let @uri produce uppercase hexadecimal digits...
|
|
664
|
+
|
|
665
|
+
2014-06-24 Nicolas Williams nico@cryptonector.com
|
|
666
|
+
|
|
667
|
+
Get "Try Online" button working (fix #440)
|
|
668
|
+
|
|
669
|
+
2014-06-22 Nicolas Williams nico@cryptonector.com
|
|
670
|
+
|
|
671
|
+
Tail call optimization (close #437)
|
|
672
|
+
|
|
673
|
+
2014-06-20 Nicolas Williams nico@cryptonector.com
|
|
674
|
+
|
|
675
|
+
Allow stacking of short options (fix #346)
|
|
676
|
+
|
|
677
|
+
2014-06-18 William Langford wlangfor@gmail.com
|
|
678
|
+
|
|
679
|
+
Added regex support as per issue #164.
|
|
680
|
+
|
|
681
|
+
2014-06-17 Nicolas Williams nico@cryptonector.com
|
|
682
|
+
|
|
683
|
+
Add `-j` / `--join-output` option, similar to `-r`
|
|
684
|
+
|
|
685
|
+
2014-06-18 Santiago Lapresta santiago.lapresta@gmail.com
|
|
686
|
+
|
|
687
|
+
Simplified standard library
|
|
688
|
+
|
|
689
|
+
2014-06-16 Nicolas Williams nico@cryptonector.com
|
|
690
|
+
|
|
691
|
+
Fix #280: from_entries of [] is null, should be {}
|
|
692
|
+
|
|
693
|
+
2014-06-16 Nicolas Williams nico@cryptonector.com
|
|
694
|
+
|
|
695
|
+
No args default w/ tty stdout, not tty stdin #220
|
|
696
|
+
|
|
697
|
+
2014-06-16 Santiago Lapresta santiago.lapresta@gmail.com
|
|
698
|
+
|
|
699
|
+
Added `flatten` and `flatten(x)` functions
|
|
700
|
+
|
|
701
|
+
2014-06-16 Nicolas Williams nico@cryptonector.com
|
|
702
|
+
|
|
703
|
+
Add ChangeLog and NEWS files
|
|
704
|
+
|
|
705
|
+
2014-06-14 Nicolas Williams nico@cryptonector.com
|
|
706
|
+
|
|
707
|
+
Allow multiple functions with different arities
|
|
708
|
+
|
|
709
|
+
2014-06-13 Nicolas Williams nico@cryptonector.com
|
|
710
|
+
|
|
711
|
+
Add `env` builtin
|
|
712
|
+
|
|
713
|
+
2014-06-13 Nicolas Williams nico@cryptonector.com
|
|
714
|
+
|
|
715
|
+
Document the lambda nature of function args #391
|
|
716
|
+
|
|
717
|
+
2014-06-13 Nicolas Williams nico@cryptonector.com
|
|
718
|
+
|
|
719
|
+
Add jqplay link to the site
|
|
720
|
+
|
|
721
|
+
2014-06-12 Jingwen Owen Ou jingweno@gmail.com
|
|
722
|
+
|
|
723
|
+
jqplay has a domain now
|
|
724
|
+
|
|
725
|
+
2014-06-12 Nicolas Williams nico@cryptonector.com
|
|
726
|
+
|
|
727
|
+
Make a better jq.1 when Ruby deps missing
|
|
728
|
+
|
|
729
|
+
2014-06-11 Kim De Mey kim.demey@gmail.com
|
|
730
|
+
|
|
731
|
+
Detect endianness at configuration with Autoconf AC_C_BIGENDIAN feature
|
|
732
|
+
|
|
733
|
+
2014-06-09 Nicolas Williams <nico@cryptonector.com>
|
|
734
|
+
|
|
735
|
+
Add libm.h to dist file list
|
|
736
|
+
|
|
737
|
+
Add note about cmd.exe quoting
|
|
738
|
+
|
|
739
|
+
Building docs fails on powerpc (#349)
|
|
740
|
+
|
|
741
|
+
2014-06-08 Nicolas Williams <nico@cryptonector.com>
|
|
742
|
+
|
|
743
|
+
Update site news
|
|
744
|
+
|
|
745
|
+
Also fix configure.ac to use git describe --tags
|
|
746
|
+
|
|
747
|
+
Fix scripts/version: use git describe --tags ...
|
|
748
|
+
After tagging as 1.4 scripts/version was still producing jq-1.3-....
|
|
749
|
+
|
|
750
|
+
Add `indices(s)`, improve `index(s)`, `rindex(s)`
|
|
751
|
+
Now these deal with arrays as input and `s` being an array or a scalar.
|
|
752
|
+
|
|
753
|
+
Improve `index` and `rindex` examples
|
|
754
|
+
|
|
755
|
+
Remove reference to `getpath` from docs
|
|
756
|
+
|
|
757
|
+
Document `index` and `rindex` (#389)
|
|
758
|
+
|
|
759
|
+
2014-06-07 Santiago Lapresta <santiago.lapresta@gmail.com>
|
|
760
|
+
|
|
761
|
+
Added `join` function
|
|
762
|
+
|
|
763
|
+
2014-06-07 Nicolas Williams <nico@cryptonector.com>
|
|
764
|
+
|
|
765
|
+
String * number should be commutative
|
|
766
|
+
|
|
767
|
+
2014-06-04 Nicolas Williams <nico@cryptonector.com>
|
|
768
|
+
|
|
769
|
+
Add cross-compilation notes to README
|
|
770
|
+
A detailed set of instruction as to how to setup a cross-compilation
|
|
771
|
+
environment for OS X and Win32/64 would be nice.
|
|
772
|
+
|
|
773
|
+
Add -j option to scripts/crosscompile
|
|
774
|
+
|
|
775
|
+
Add flags argument to jv_parser_new()
|
|
776
|
+
For extensibility. We might add streaming parser options, even binary
|
|
777
|
+
JSON encoding options.
|
|
778
|
+
|
|
779
|
+
2014-06-02 Nicolas Williams <nico@cryptonector.com>
|
|
780
|
+
|
|
781
|
+
Fix tests failures on Windows
|
|
782
|
+
And Solaris 8 and 9 too, no doubt. The problem was that non-standard
|
|
783
|
+
vsnprintf()s that return -1 when the buffer is too small were not
|
|
784
|
+
properly supported.
|
|
785
|
+
|
|
786
|
+
2014-05-20 Santiago Lapresta <santiago.lapresta@gmail.com>
|
|
787
|
+
|
|
788
|
+
Documented `del` command
|
|
789
|
+
|
|
790
|
+
2014-05-11 Santiago Lapresta <santiago.lapresta@gmail.com>
|
|
791
|
+
|
|
792
|
+
Added texts/examples to unique_by function
|
|
793
|
+
|
|
794
|
+
Added unique_by function
|
|
795
|
+
|
|
796
|
+
2014-04-17 Nicolas Williams <nico@cryptonector.com>
|
|
797
|
+
|
|
798
|
+
Make pthread tls configurable for Mingw build
|
|
799
|
+
For the Mingw build we don't want to pull in the pthread DLL just
|
|
800
|
+
because we can autodetect pthread support. That would make the jq.exe
|
|
801
|
+
binary not self-contained.
|
|
802
|
+
|
|
803
|
+
2014-04-16 Nicolas Williams <nico@cryptonector.com>
|
|
804
|
+
|
|
805
|
+
Add autoconf checks for pthreads; fix #340
|
|
806
|
+
|
|
807
|
+
2014-03-20 Jingwen Owen Ou <jingweno@gmail.com>
|
|
808
|
+
|
|
809
|
+
Add link to jqplay
|
|
810
|
+
|
|
811
|
+
2014-03-13 Nicolas Williams <nico@cryptonector.com>
|
|
812
|
+
|
|
813
|
+
Fix for #303 in the sources
|
|
814
|
+
|
|
815
|
+
2014-03-13 Santiago Lapresta <santiago.lapresta@gmail.com>
|
|
816
|
+
|
|
817
|
+
Added `arrays` and other filters
|
|
818
|
+
Arrays, objects, numbers, strings, booleans, nulls, values (non-nulls)
|
|
819
|
+
-- these builtins filter out those inputs that don't match the name of
|
|
820
|
+
the builtin.
|
|
821
|
+
|
|
822
|
+
This fixes #322 and #324.
|
|
823
|
+
|
|
824
|
+
2014-03-07 Filippo Valsorda <filippo.valsorda@gmail.com>
|
|
825
|
+
|
|
826
|
+
Add a recursive object merge strategy and bind it to *
|
|
827
|
+
This commit adds a jv_object_merge_recursive function, that performs
|
|
828
|
+
recursive object merging, and binds it to multiply when applied to
|
|
829
|
+
two objects.
|
|
830
|
+
|
|
831
|
+
Closes #320
|
|
832
|
+
|
|
833
|
+
2014-03-06 Nicolas Williams <nico@cryptonector.com>
|
|
834
|
+
|
|
835
|
+
Make libm tests more portable
|
|
836
|
+
|
|
837
|
+
2014-02-26 Andrew Rodland <andrew@cleverdomain.org>
|
|
838
|
+
|
|
839
|
+
Repair jv_show
|
|
840
|
+
|
|
841
|
+
2014-02-26 Andrew Rodland <andrew@cleverdomain.org>
|
|
842
|
+
|
|
843
|
+
Make jq --raw-output --unbuffered work
|
|
844
|
+
--unbuffered was only affecting the normal output case, not the --raw-output case. Make the two of them play together.
|
|
845
|
+
|
|
846
|
+
This also makes sure that the output is flushed *after* printing the newline, so a consumer doesn't lag a line behind.
|
|
847
|
+
|
|
848
|
+
2014-02-21 Nicolas Williams <nico@cryptonector.com>
|
|
849
|
+
|
|
850
|
+
Add cbrt (cube root)
|
|
851
|
+
|
|
852
|
+
Add missing trig functions and barebones test
|
|
853
|
+
|
|
854
|
+
Remove non-standard exp10()
|
|
855
|
+
|
|
856
|
+
2014-02-21 Mike McCabe <mccabe@archive.org>
|
|
857
|
+
|
|
858
|
+
Initial add of math functions.
|
|
859
|
+
|
|
860
|
+
2014-02-20 Nicolas Williams <nico@cryptonector.com>
|
|
861
|
+
|
|
862
|
+
Add `?`, `.[]?`, and `..` operators
|
|
863
|
+
Make XPath-like `//a/b` recursive structure traversal easier in jq,
|
|
864
|
+
which then becomes:
|
|
865
|
+
|
|
866
|
+
..|.a?.b?
|
|
867
|
+
|
|
868
|
+
The `?` operator suppresses errors about . not being an array or object.
|
|
869
|
+
The `..` operator is equivalent to calling the new `recurse_down`
|
|
870
|
+
built-in, which in turn is equivalent to
|
|
871
|
+
|
|
872
|
+
recurse(.[]?)
|
|
873
|
+
|
|
874
|
+
Note that `..a` is not supported; neither is `...a`. That could be add
|
|
875
|
+
added, but it doesn't seem worth the trouble of saving the need to type
|
|
876
|
+
a '|'.
|
|
877
|
+
|
|
878
|
+
2014-02-16 Santiago Lapresta <santiago.lapresta@gmail.com>
|
|
879
|
+
|
|
880
|
+
Added `all` and `any` builtins
|
|
881
|
+
|
|
882
|
+
2014-01-25 polyester <paul@cleanclothes.org>
|
|
883
|
+
|
|
884
|
+
work with newer versions of automake
|
|
885
|
+
when using a newer automake, the autoreconf step fails with warnings:
|
|
886
|
+
"linking libtool libraries using a non-POSIX archiver requires 'AM_PROG_AR' in 'configure.ac' "
|
|
887
|
+
|
|
888
|
+
This happens for instance on ubuntu 13.10.
|
|
889
|
+
Doing just that, adding 'AM_PROG_AR' to configure.ac fixes the problem.
|
|
890
|
+
|
|
891
|
+
2014-01-01 Nicolas Williams <nico@cryptonector.com>
|
|
892
|
+
|
|
893
|
+
Fix #201; check that bison accepts --warnings
|
|
894
|
+
|
|
895
|
+
2013-12-27 Joe Littlejohn <joe.littlejohn@nokia.com>
|
|
896
|
+
|
|
897
|
+
Fix rpm build (`make rpm`)
|
|
898
|
+
* Re-add VERSION as it's required for `./setup superclean`
|
|
899
|
+
and `make rpm`.
|
|
900
|
+
* Add *.rpm to git ignore, we never want them under version control.
|
|
901
|
+
|
|
902
|
+
2013-12-27 Filippo Giunchedi <fgiunchedi@gmail.com>
|
|
903
|
+
|
|
904
|
+
include additional files in jq.spec
|
|
905
|
+
this will probably need changing upon SONAME bump
|
|
906
|
+
|
|
907
|
+
fix rpm Makefile target and prerequisites
|
|
908
|
+
depend on dist and the specfile, plus use automake's variables
|
|
909
|
+
|
|
910
|
+
2013-12-26 Nicolas Williams <nico@cryptonector.com>
|
|
911
|
+
|
|
912
|
+
Document --version
|
|
913
|
+
|
|
914
|
+
2013-12-26 Nicolas Williams <nico@cryptonector.com>
|
|
915
|
+
|
|
916
|
+
Add jv_dumpf() and jv_show()
|
|
917
|
+
jv_dumpf() takes a FILE *.
|
|
918
|
+
|
|
919
|
+
jv_show() is intended for use in debuggers, so it dumps the jv to stderr
|
|
920
|
+
and it does not jv_free() the jv, so it's safe to
|
|
921
|
+
"call jv_show(some_jv, -1)" in a debugger. If flags == -1 then the jv
|
|
922
|
+
will be shown pretty-printed and in color.
|
|
923
|
+
|
|
924
|
+
2013-12-26 Nicolas Williams <nico@cryptonector.com>
|
|
925
|
+
|
|
926
|
+
Document .foo.bar in manual
|
|
927
|
+
|
|
928
|
+
Document exit numbers
|
|
929
|
+
|
|
930
|
+
Normalize errors for -e
|
|
931
|
+
|
|
932
|
+
2013-12-25 Nicolas Williams <nico@cryptonector.com>
|
|
933
|
+
|
|
934
|
+
Fix doc typos (.[foo] wanted to be .["foo"])
|
|
935
|
+
|
|
936
|
+
Add note to jq.1 about shell quoting
|
|
937
|
+
|
|
938
|
+
2013-12-20 Philipp Hagemeister <phihag@phihag.de>
|
|
939
|
+
|
|
940
|
+
Ignore the config/test-driver file
|
|
941
|
+
This file is automatically generated and does not need to be committed.
|
|
942
|
+
|
|
943
|
+
Fix @uri example
|
|
944
|
+
Previously, the @uri example didn't match the actual behavior of the current jq, as exclamation marks do not need to be encoded in URIs.
|
|
945
|
+
Replace the example with an input that needs encoding, and is encoded by jq.
|
|
946
|
+
|
|
947
|
+
2013-12-17 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
948
|
+
|
|
949
|
+
Allow negated object values without parens. Fixes #247
|
|
950
|
+
|
|
951
|
+
2013-12-17 Nicolas Williams <nico@cryptonector.com>
|
|
952
|
+
|
|
953
|
+
Fix memmem() error
|
|
954
|
+
|
|
955
|
+
2013-12-13 Rémy Léone <remy.leone@gmail.com>
|
|
956
|
+
|
|
957
|
+
Adding a .travis.yml file to use the travis-ci.org
|
|
958
|
+
From wikipedia:
|
|
959
|
+
|
|
960
|
+
Travis CI is a hosted, distributed continuous integration service used
|
|
961
|
+
to build and test projects hosted at GitHub.
|
|
962
|
+
|
|
963
|
+
Travis CI is configured by adding a file named .travis.yml, which is a
|
|
964
|
+
YAML format text file, to the root directory of the GitHub repository.
|
|
965
|
+
|
|
966
|
+
Travis CI automatically detects when a commit has been made and pushed
|
|
967
|
+
to a GitHub repository that is using Travis CI, and each time this
|
|
968
|
+
happens, it will try to build the project and run tests. This includes
|
|
969
|
+
commits to all branches, not just to the master branch. When that
|
|
970
|
+
process has completed, it will notify a developer in the way it has been
|
|
971
|
+
configured to do so — for example, by sending an email containing the
|
|
972
|
+
test results (showing success or failure), or by posting a message on an
|
|
973
|
+
IRC channel. It can be configured to run the tests on a range of
|
|
974
|
+
different machines, with different software installed (such as older
|
|
975
|
+
versions of a programming language, to test for compatibility).
|
|
976
|
+
|
|
977
|
+
2013-12-13 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
978
|
+
|
|
979
|
+
Make the testsuite run on machines without valgrind
|
|
980
|
+
|
|
981
|
+
Format more integers as integers, not scientific notation.
|
|
982
|
+
jq is now willing to put up to 15 zeros after an integer before
|
|
983
|
+
moving to scientific notation.
|
|
984
|
+
|
|
985
|
+
2013-12-11 Nicolas Williams <nico@cryptonector.com>
|
|
986
|
+
|
|
987
|
+
Complete more-arity feature not complete
|
|
988
|
+
And test
|
|
989
|
+
|
|
990
|
+
2013-12-10 David R. MacIver <david@drmaciver.com>
|
|
991
|
+
|
|
992
|
+
convert range bounds to integers in a way that avoids undefined behaviour
|
|
993
|
+
|
|
994
|
+
add checking of numeric indices to an array to see if they can reasonably be considered integers. Avoid undefined behaviour if out of bounds
|
|
995
|
+
|
|
996
|
+
2013-12-09 David R. MacIver <david@drmaciver.com>
|
|
997
|
+
|
|
998
|
+
some functions were missing prototypes. Add them
|
|
999
|
+
|
|
1000
|
+
2013-12-08 David R. MacIver <david@drmaciver.com>
|
|
1001
|
+
|
|
1002
|
+
These vfprintfs are being used as if they were printfs. Fix that
|
|
1003
|
+
|
|
1004
|
+
consistent use of goto out in main
|
|
1005
|
+
|
|
1006
|
+
2013-12-08 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1007
|
+
|
|
1008
|
+
Refactor jv structure.
|
|
1009
|
+
New structure layout is simpler and also faster. In particular, it's
|
|
1010
|
+
now small enough to be passed in registers on amd64.
|
|
1011
|
+
|
|
1012
|
+
Make testsuite not leak when compiled with -DNDEBUG.
|
|
1013
|
+
|
|
1014
|
+
2013-12-08 David R. MacIver <david@drmaciver.com>
|
|
1015
|
+
|
|
1016
|
+
test for losing memory on compile errors
|
|
1017
|
+
|
|
1018
|
+
args to jq_compile_args were not getting freed when there were errors in the compile
|
|
1019
|
+
|
|
1020
|
+
2013-12-06 Nicolas Williams <nico@cryptonector.com>
|
|
1021
|
+
|
|
1022
|
+
Fix double-free typo in print_error()
|
|
1023
|
+
|
|
1024
|
+
Fix manual.yml
|
|
1025
|
+
|
|
1026
|
+
2013-12-04 Nicolas Williams <nico@cryptonector.com>
|
|
1027
|
+
|
|
1028
|
+
Conditionally #define _GNU_SOURCE in compile.c
|
|
1029
|
+
|
|
1030
|
+
Add tests for string index by string and builtins
|
|
1031
|
+
|
|
1032
|
+
Add index and rindex builtins
|
|
1033
|
+
|
|
1034
|
+
Add index strings by string; return string indexes
|
|
1035
|
+
% jq '.[","]'
|
|
1036
|
+
"a,bc,def,ghij,klmno"
|
|
1037
|
+
[1,4,8,13]
|
|
1038
|
+
%
|
|
1039
|
+
|
|
1040
|
+
Make length return abs value of numeric inputs
|
|
1041
|
+
|
|
1042
|
+
Add callback interface for errors
|
|
1043
|
+
Printing to stderr is not the right answer for a library.
|
|
1044
|
+
|
|
1045
|
+
Add jv_string_vfmt()
|
|
1046
|
+
|
|
1047
|
+
Document ltrimstr and rtrimstr
|
|
1048
|
+
|
|
1049
|
+
Test ltrimstr and rtrimstr functions
|
|
1050
|
+
|
|
1051
|
+
Add ltrimstr and rtrimstr functions
|
|
1052
|
+
|
|
1053
|
+
Document -e / --exit-status argument
|
|
1054
|
+
|
|
1055
|
+
Add -e | --exit-status CLI option
|
|
1056
|
+
|
|
1057
|
+
Document tojson and fromjson builtins
|
|
1058
|
+
|
|
1059
|
+
Test tojson and fromjson
|
|
1060
|
+
|
|
1061
|
+
Add tojson and fromjson builtins
|
|
1062
|
+
|
|
1063
|
+
Document split function
|
|
1064
|
+
|
|
1065
|
+
Document string multiplication and division
|
|
1066
|
+
|
|
1067
|
+
Document string functions and slicing
|
|
1068
|
+
|
|
1069
|
+
Test string slicing
|
|
1070
|
+
|
|
1071
|
+
Add string slicing
|
|
1072
|
+
|
|
1073
|
+
Add tests for string division/splitting
|
|
1074
|
+
|
|
1075
|
+
Add string division by string (split on separator)
|
|
1076
|
+
|
|
1077
|
+
Test starts/endswith and string multiplication
|
|
1078
|
+
|
|
1079
|
+
Add string multiplication by number
|
|
1080
|
+
|
|
1081
|
+
Add startswith/endswith
|
|
1082
|
+
|
|
1083
|
+
Add explode/implode jq functions to match jv API
|
|
1084
|
+
|
|
1085
|
+
Use uint32_t for codepoint in jv_string_append_codepoint()
|
|
1086
|
+
|
|
1087
|
+
Add jv string utility functions
|
|
1088
|
+
jv_string_empty()
|
|
1089
|
+
-> return an empty string with given allocated length (for fast
|
|
1090
|
+
appends)
|
|
1091
|
+
jv_string_append_codepoint
|
|
1092
|
+
-> append a single codepoint (int) to the given string
|
|
1093
|
+
jv_string_explode
|
|
1094
|
+
-> return an array of codepoints making up a string
|
|
1095
|
+
jv_string_implode
|
|
1096
|
+
-> return the UTF-8 encoding of an array of codepoint numbers
|
|
1097
|
+
|
|
1098
|
+
Support more arguments for defs
|
|
1099
|
+
|
|
1100
|
+
2013-12-04 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1101
|
+
|
|
1102
|
+
Preserve insertion order in objects. Closes #169.
|
|
1103
|
+
|
|
1104
|
+
2013-11-30 Nicolas Pouillard <nicolas.pouillard@gmail.com>
|
|
1105
|
+
|
|
1106
|
+
Add a few more test cases (from the man page)
|
|
1107
|
+
|
|
1108
|
+
2013-11-08 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1109
|
+
|
|
1110
|
+
Add a --unbuffered option. Closes #206
|
|
1111
|
+
|
|
1112
|
+
2013-11-07 Peter van Dijk <peter@7bits.nl>
|
|
1113
|
+
|
|
1114
|
+
count should be length
|
|
1115
|
+
Example refers to a count function, which does not exist. Replacing it with length works.
|
|
1116
|
+
|
|
1117
|
+
2013-11-07 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1118
|
+
|
|
1119
|
+
Fix a crash on group_by of empty list. Fixes #208.
|
|
1120
|
+
|
|
1121
|
+
2013-10-16 Ryoichi KATO <ryo1kato@gmail.com>
|
|
1122
|
+
|
|
1123
|
+
Docs: add description of --from-file option
|
|
1124
|
+
|
|
1125
|
+
2013-10-06 Juan Guerrero <juan.guerrero.lozano@gmail.com>
|
|
1126
|
+
|
|
1127
|
+
Fix typo on error message
|
|
1128
|
+
|
|
1129
|
+
2013-09-19 Kenny Shen <kenny.shen@zalora.com>
|
|
1130
|
+
|
|
1131
|
+
Add missing -i flag in build instructions
|
|
1132
|
+
|
|
1133
|
+
2013-09-14 Michael Daines <michael@mdaines.com>
|
|
1134
|
+
|
|
1135
|
+
Add test showing calculation of standard deviation
|
|
1136
|
+
|
|
1137
|
+
2013-09-13 Mike Daines <michael@mdaines.com>
|
|
1138
|
+
|
|
1139
|
+
Fix typo
|
|
1140
|
+
|
|
1141
|
+
2013-09-11 Michael Daines <michael@mdaines.com>
|
|
1142
|
+
|
|
1143
|
+
Add sqrt operator
|
|
1144
|
+
|
|
1145
|
+
2013-09-04 Jack Pearkes <jackpearkes@gmail.com>
|
|
1146
|
+
|
|
1147
|
+
docs: update the tutorial to use GitHub's API
|
|
1148
|
+
|
|
1149
|
+
2013-09-01 Ankur <ankz.kothari@gmail.com>
|
|
1150
|
+
|
|
1151
|
+
Call AM_INIT_AUTOMAKE once only
|
|
1152
|
+
Fixes build with automake-1.14
|
|
1153
|
+
|
|
1154
|
+
2013-08-19 Joe Littlejohn <joe.littlejohn@nokia.com>
|
|
1155
|
+
|
|
1156
|
+
Fix Makefile after refactoring of stacks in 05d90517b02
|
|
1157
|
+
|
|
1158
|
+
2013-06-23 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1159
|
+
|
|
1160
|
+
Remove #includes from jv.h
|
|
1161
|
+
|
|
1162
|
+
Fix the jv_parser interface.
|
|
1163
|
+
|
|
1164
|
+
Use libtool's built-in symbol exporting rather than a mapfile.
|
|
1165
|
+
|
|
1166
|
+
Move gen_utf8_tables to scripts
|
|
1167
|
+
|
|
1168
|
+
Move libtool m4 junk to config/ and delete some autogenerated files.
|
|
1169
|
+
|
|
1170
|
+
Remove Autoconf-generated config.h.
|
|
1171
|
+
|
|
1172
|
+
2013-06-22 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1173
|
+
|
|
1174
|
+
Build libjq only once, and link it statically to ./jq
|
|
1175
|
+
This means ./jq is a real binary rather than a libtool turd.
|
|
1176
|
+
|
|
1177
|
+
Fix distcheck.
|
|
1178
|
+
Update list of files to be distributed.
|
|
1179
|
+
|
|
1180
|
+
Utf8 fixes. Closes #161
|
|
1181
|
+
|
|
1182
|
+
Reject all overlong UTF8 sequences.
|
|
1183
|
+
|
|
1184
|
+
Fix various UTF8 parsing bugs.
|
|
1185
|
+
In particular, parse bad UTF8 by replacing the broken bits with U+FFFD
|
|
1186
|
+
and resychronise correctly after broken sequences.
|
|
1187
|
+
|
|
1188
|
+
Fix example in manual for `floor`. See #155.
|
|
1189
|
+
|
|
1190
|
+
2013-06-21 Nicolas Williams <nico@cryptonector.com>
|
|
1191
|
+
|
|
1192
|
+
Document floor
|
|
1193
|
+
|
|
1194
|
+
Add floor operator
|
|
1195
|
+
|
|
1196
|
+
Document mod
|
|
1197
|
+
|
|
1198
|
+
Add mod (and setmod) operators
|
|
1199
|
+
|
|
1200
|
+
Update .gitignore
|
|
1201
|
+
|
|
1202
|
+
Add libjq autoconf goo
|
|
1203
|
+
|
|
1204
|
+
Quiet setup.sh re: tmp dir
|
|
1205
|
+
|
|
1206
|
+
2013-06-21 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1207
|
+
|
|
1208
|
+
Move cfunction invocation code to the interpreter loop.
|
|
1209
|
+
|
|
1210
|
+
2013-06-18 Nicolas Williams <nico@cryptonector.com>
|
|
1211
|
+
|
|
1212
|
+
Fix serious bug in handling of --argfile
|
|
1213
|
+
|
|
1214
|
+
Fix leaks in jv_load_file()
|
|
1215
|
+
|
|
1216
|
+
2013-06-17 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1217
|
+
|
|
1218
|
+
Fold opcode.{c,h} into bytecode.{c,h}
|
|
1219
|
+
|
|
1220
|
+
Simplify block functions for variables
|
|
1221
|
+
|
|
1222
|
+
Saner build instructions in README.md
|
|
1223
|
+
Closes #144
|
|
1224
|
+
|
|
1225
|
+
Remove some initialise-to-zero code.
|
|
1226
|
+
This lets valgrind find more bugs - if a field isn't given a
|
|
1227
|
+
well-defined value valgrind will now find it instead of seeing it
|
|
1228
|
+
set to zero with memset.
|
|
1229
|
+
|
|
1230
|
+
2013-06-17 Nicolas Williams <nico@cryptonector.com>
|
|
1231
|
+
|
|
1232
|
+
Remove accidentally introduced use of fopen "e"
|
|
1233
|
+
|
|
1234
|
+
2013-06-16 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1235
|
+
|
|
1236
|
+
Merge pull request #114 from nicowilliams/nomem_handler
|
|
1237
|
+
Add jv_nomem_handler()
|
|
1238
|
+
|
|
1239
|
+
2013-06-16 Nicolas Williams <nico@cryptonector.com>
|
|
1240
|
+
|
|
1241
|
+
Remove last remnant of main.h
|
|
1242
|
+
|
|
1243
|
+
2013-06-15 Nicolas Williams <nico@cryptonector.com>
|
|
1244
|
+
|
|
1245
|
+
Allow --run-tests to take a file argument
|
|
1246
|
+
|
|
1247
|
+
Fixup API to get closer to a libjq
|
|
1248
|
+
|
|
1249
|
+
2013-06-15 Nicolas Williams <nico@cryptonector.com>
|
|
1250
|
+
|
|
1251
|
+
Move slurp_file() into library as jv_load_file()
|
|
1252
|
+
Needed as part of creating a libjq.
|
|
1253
|
+
|
|
1254
|
+
2013-06-14 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1255
|
+
|
|
1256
|
+
Clean up lots of stack and frame logic.
|
|
1257
|
+
Move frame defs to execute.c
|
|
1258
|
+
|
|
1259
|
+
2013-06-13 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1260
|
+
|
|
1261
|
+
Simplify frame logic.
|
|
1262
|
+
|
|
1263
|
+
Unify all stacks. Passes tests, but needs cleanup.
|
|
1264
|
+
|
|
1265
|
+
2013-06-11 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1266
|
+
|
|
1267
|
+
Support ."foo" syntax for accessing fields. See #141.
|
|
1268
|
+
|
|
1269
|
+
2013-06-09 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1270
|
+
|
|
1271
|
+
Unify frame and data stacks
|
|
1272
|
+
|
|
1273
|
+
2013-06-05 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1274
|
+
|
|
1275
|
+
Speed up cached configure (./configure -C)
|
|
1276
|
+
|
|
1277
|
+
Clean up flex lines in build
|
|
1278
|
+
|
|
1279
|
+
Lex and parse .foo better.
|
|
1280
|
+
'.as' is now valid, '. foo' is now invalid. See #141.
|
|
1281
|
+
|
|
1282
|
+
2013-06-04 Markus Lanthaler <mark_lanthaler@gmx.net>
|
|
1283
|
+
|
|
1284
|
+
Update README.md
|
|
1285
|
+
Update the link to the documentation. All GitHub pages are now using the github.io domain.
|
|
1286
|
+
|
|
1287
|
+
2013-06-03 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1288
|
+
|
|
1289
|
+
Make jq --version print to stdout, not stderr
|
|
1290
|
+
|
|
1291
|
+
Better error handling for .foo case in parser. See #141.
|
|
1292
|
+
|
|
1293
|
+
Let the parser rather than the lexer handle invalid characters.
|
|
1294
|
+
|
|
1295
|
+
Add command-line option to sort object keys.
|
|
1296
|
+
Closes #79.
|
|
1297
|
+
|
|
1298
|
+
Clean up Makefile.am (distcheck, rebuild version.h less often)
|
|
1299
|
+
|
|
1300
|
+
2013-05-31 Brendan Macmillan <melbourne.research@gmail.com>
|
|
1301
|
+
|
|
1302
|
+
Stop warning on fgets, simple version
|
|
1303
|
+
|
|
1304
|
+
Stop warning on fgets, complex version
|
|
1305
|
+
|
|
1306
|
+
2013-05-31 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1307
|
+
|
|
1308
|
+
Squash a warning on some GCC versions
|
|
1309
|
+
|
|
1310
|
+
2013-05-29 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1311
|
+
|
|
1312
|
+
Support for printing object keys in sorted order.
|
|
1313
|
+
No command-line option to enable this yet. See #79.
|
|
1314
|
+
|
|
1315
|
+
2013-05-29 Brendan Macmillan <melbourne.research@gmail.com>
|
|
1316
|
+
|
|
1317
|
+
Bugfix multiline off-by-one (locfile.c)
|
|
1318
|
+
|
|
1319
|
+
locfile.h -> locfile.h + locfile.c
|
|
1320
|
+
clean up includes of a few files
|
|
1321
|
+
|
|
1322
|
+
Hack bugfix for multiline off-by-one (locfile.c)
|
|
1323
|
+
|
|
1324
|
+
Load library from ~/.jq
|
|
1325
|
+
|
|
1326
|
+
2013-05-24 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1327
|
+
|
|
1328
|
+
Make jq --version report an actual git revision.
|
|
1329
|
+
Closes #129.
|
|
1330
|
+
|
|
1331
|
+
2013-05-23 Nicolas Williams <nico@cryptonector.com>
|
|
1332
|
+
|
|
1333
|
+
Add --argfile variant of --arg (issue #117)
|
|
1334
|
+
This is useful when one has a database (in JSON form) to query using jq
|
|
1335
|
+
input data.
|
|
1336
|
+
|
|
1337
|
+
% echo '{"a":1, "c":5}' > db.json
|
|
1338
|
+
% echo '"c"'|./jq --argfile f /tmp/a '$f[.]'
|
|
1339
|
+
5
|
|
1340
|
+
% echo '"a"'|./jq --argfile f /tmp/a '$f[.]'
|
|
1341
|
+
1
|
|
1342
|
+
% echo '"b"'|./jq --argfile f /tmp/a '$f[.]'
|
|
1343
|
+
null
|
|
1344
|
+
%
|
|
1345
|
+
|
|
1346
|
+
2013-05-23 Stephen Dolan <mu@netsoc.tcd.ie>
|
|
1347
|
+
|
|
1348
|
+
'make clean' won't delete jq.1 if it can't be rebuilt.
|
|
1349
|
+
See #131
|