summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2023-06-22Fix manual section titles, minor typos, and improve inline codes (#2626)itchyny
2023-06-21Document `length` for numbers and bools (#2625)Alex Jurkiewicz
This was added in ae7a042876130c471dce28a4396abc215192eaa9 but not explicitly documented.
2023-06-20Improve Download page: drop versions for each package manager (#2619)itchyny
2023-06-19Create SECURITY.mdNico Williams
2023-06-16Fix double-installed doc (#2482)Dan Church
The README symlink was causing the file to be installed twice in <DOCDIR>.
2023-06-16Use autotools standard ${docdir} (#2468)Dan Church
Specified with `--docdir=<path>`, the `$(docdir)` variable is already available, and has the same default as what it was being set to. By specifying it here, it overrides what the `--docdir` option specifies.
2023-06-16Added usage under Powershell to the manual (#2306)Dawid Ferenczy Rogožan
2023-06-16Fedora link returns 404 (#2067)calpeconsulting
2023-06-16Add Windows installation via scoop (#2188)Marcin Kłopotek
2023-06-16manual.yml - Perl NG (#2614)pkoppstein
2023-06-14C99 compatibility enhancements for the configure script (#2519)Florian Weimer
* configure.ac: Enable system extensions Use AC_USE_SYSTEM_EXTENSIONS to build with _GNU_SOURCE (and similar macros on non-GNU systems), to avoid an implicit declaration of the strptime function. This improves compatibility with future compilers which do not support implicit function declarations. * configure.ac: gettimeofday lives in <sys/time.h> The gettimeofday function is declared in <sys/time.h>, not <time.h>, according to POSIX and actual systems. This avoids a configure probe failure with compilers which do not support implicit function declarations.
2023-06-14Add a note about how to provide positional arguments without confusing the ↵Rob Wills
arg parser (#1989)
2023-06-14Fix regular expression section on PCRE (fix #2439), also improve example ↵itchyny
format (#2613)
2023-06-14Fix version scripts for some shallow clone situations (fix #1549) (#2608)itchyny
2023-06-13Fix misspellings (#2609)Josh Soref
2023-06-13scanbuild: use ubuntu-latest (#2610)Josh Soref
2023-06-13Link to the Onigurama docs (#2355)AJ Jordan
2023-06-12Fix macOS build - drop python3 (#2612)Josh Soref
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2023-06-08docs: Fix coding style of Python scripts using YAPF (#2606)itchyny
2023-06-07docs: Fix example outputs added in #2391itchyny
2023-06-07Add fixes for manual (#2391)Benjamin Wuethrich
2023-06-07fix typos in manual.yml (#2102)Timothy John Perisho Eccleston
2023-06-06fix handling of -0 (#2235)Anthony Sottile
2023-06-06docs: Fix a try-catch example (fix #1558, #1777) (#2605)itchyny
2023-06-06docs: fix typo in halt_error example (#2336)Henré Botha
2023-06-06docs: clarify split behavior (#2462)Lucas Trzesniewski
2023-06-06Fixed typo in errors on missing some mathematical filters (#2434)Stefan
2023-06-06[docs] Use yaml.safe_load() in build_*.py scripts (#2432)nmulcahey
Co-authored-by: itchyny <itchyny@cybozu.co.jp>
2023-06-06Key should be "foo" without spaces (#2212)Matti Åstrand
2023-06-06Replace find with select function as the example of jq-coded functions (#1962)itchyny
2023-06-06Show missing backslash in manual (#2492)itchyny
2023-06-06Show missing backslash in manual (#2492)zstadler
2023-06-06Fix website generation workflowitchyny
2023-06-06docs: install via winget (#2600)eitsupi
2023-06-06Add a GitHub Actions workflow to build and update website (#2603)itchyny
2023-06-06Remove TravisCI configuration file and fix GitHub actions badges (#2602)itchyny
* Remove TravisCI configuration file * Update CI badges in README.md to refer to GitHub Actions
2023-06-06Improve docs of optional indexing syntax to make it clear (ref #2588) (#2604)itchyny
* Revert "Typo in basic filters manual (#2588)" This reverts commit 908f5d54a7897bc31c85ddcb9737463c1df30faf. * Improve docs of optional indexing syntax to make it clear
2023-06-04Typo in basic filters manual (#2588)Benoit de Chezelles
Co-authored-by: Owen Ou <169064+owenthereal@users.noreply.github.com>
2023-06-04docs: Update Flex URL (#2582)Tom Wolf
Co-authored-by: Owen Ou <169064+owenthereal@users.noreply.github.com>
2023-06-01Update git submodule commit of oniguruma from 5a24a49 to 078f95e (#2561)Hanson Char
Co-authored-by: Hanson Char <hchar@amazon.com>
2023-06-01Merge old jqlang/jq master to the latest (#2596)Owen Ou
* Try making some GitHub Actions * GHA: Add OS X, Windows, and Linux w/ scan-build builds * Add link to discord server Add link to discord server * Update Ubuntu to 22.04 for GitHub Actions * Remove if condition for Ubuntu build * Fix MacOS OS on GitHub Actions * Fix python3 package on GitHub Actions * Disalbe valgrind Getting failed tests: https://github.com/jqlang/jq/actions/runs/5113866588/jobs/9193542140#step:9:341 * Format file * Fix macos build * Fix syntax errors of windows build https://github.com/jqlang/jq/actions/runs/5114162556/workflow * Install windows package with choco * Pin oniguruma to 5a24a49d710a9e3bb8ff11d12e1eae5a9f9df40c MacOS build [fails](https://github.com/jqlang/jq/actions/runs/5114162555/jobs/9194126677#step:6:3160) due to ``` posix.c:94:3: error: implicit declaration of function 'onig_end' is invalid in C99 [-Werror,-Wimplicit-function-declaration] onig_end(); ``` The current `oniguruma` revision 6fa38f4084b448592888ed9ee43c6e90a46b5f5c (15 Mar 2017) lacks the following explicit declaration in src/onigposix.h: ``` ONIG_EXTERN int onig_end P_((void)); ``` This was added to oniguruma in revision 5a24a49d710a9e3bb8ff11d12e1eae5a9f9df40c (8 Sep 2017). Ref: https://github.com/jqlang/jq/issues/2381 * Revert windows build to use pacman * Don't zip jq.exe * Fixing windows build * Update .gitattriutes for eol on Windows * Skip workflow_dispatch for windows build * Clean up builds * Use LF line endings for all text Ref: https://github.com/actions/checkout/issues/135 * Fix test that has rounding error https://github.com/jqlang/jq/pull/2596#issuecomment-1568498993 * Enable CI for all --------- Co-authored-by: Nicolas Williams <nico@cryptonector.com>
2023-05-28Update URLs from stedolan to jqlangStephen Dolan
2023-05-28Fix website build by adding Loader parameter to yaml.loadStephen Dolan
2022-05-26docs: Document repeat(exp)Mattias Wadman
2022-05-26Mention -n in IO-section and for input/inputsMattias Wadman
2022-05-26Fix iterration problem for non decimal stringTomas Halman
When the string transformation to number failed, all following transformation failed too. This happend because status in decNumberFromString function is updated just in error case. Reusing the DEC_CONTEXT that failed before results into error even if the string is valid number.
2022-05-26docs: point to Libera.Chat instead of FreenodeNaïm Favier
2022-05-26Missing "va_end" call. This was found by running the cppcheck static ↵Lukas Lansky
analysis where it shows as error.
2022-05-26Add --recursive to git cloneSean Wei
2022-05-26docs(manual): fix the typo errors in the manualZhaohui Mei