@port-labs/jq-node-bindings 0.0.13 → 0.0.15-dev1
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/README.md +6 -1
- package/binding.gyp +41 -19
- package/configure +1 -1
- package/deps/jq/.gitattributes +12 -0
- package/deps/jq/AUTHORS +149 -43
- package/deps/jq/COPYING +75 -1
- package/deps/jq/ChangeLog +2 -2
- package/deps/jq/Makefile.am +106 -65
- package/deps/jq/NEWS.md +391 -0
- package/deps/jq/README.md +54 -52
- package/deps/jq/SECURITY.md +7 -0
- package/deps/jq/compile-ios.sh +106 -102
- package/deps/jq/configure.ac +72 -59
- package/deps/jq/docs/Pipfile +14 -0
- package/deps/jq/docs/Pipfile.lock +415 -0
- package/deps/jq/docs/README.md +15 -14
- package/deps/jq/docs/build_manpage.py +251 -0
- package/deps/jq/docs/build_mantests.py +21 -0
- package/deps/jq/docs/build_website.py +95 -0
- package/deps/jq/docs/content/download/default.yml +249 -0
- package/deps/jq/docs/content/index.yml +83 -0
- package/deps/jq/docs/content/{3.manual/v1.6 → manual/dev}/manual.yml +992 -452
- package/deps/jq/docs/content/{3.manual → manual}/v1.3/manual.yml +105 -116
- package/deps/jq/docs/content/{3.manual → manual}/v1.4/manual.yml +122 -129
- package/deps/jq/docs/content/{3.manual → manual}/v1.5/manual.yml +313 -262
- package/deps/jq/docs/content/{3.manual → manual/v1.6}/manual.yml +407 -332
- package/deps/jq/docs/content/manual/v1.7/manual.yml +3697 -0
- package/deps/jq/docs/content/tutorial/default.yml +337 -0
- package/deps/jq/docs/manual_schema.yml +60 -0
- package/deps/jq/docs/public/css/style.css +99 -0
- package/deps/jq/docs/public/icon.png +0 -0
- package/deps/jq/docs/public/icon.svg +1 -0
- package/deps/jq/docs/public/jq.svg +1 -0
- package/deps/jq/docs/public/js/manual-search.js +31 -49
- package/deps/jq/docs/templates/default.html.j2 +31 -0
- package/deps/jq/docs/templates/index.html.j2 +58 -0
- package/deps/jq/docs/templates/manual.html.j2 +120 -0
- package/deps/jq/docs/templates/shared/_footer.html.j2 +14 -0
- package/deps/jq/docs/templates/shared/_head.html.j2 +23 -0
- package/deps/jq/docs/templates/shared/_navbar.html.j2 +40 -0
- package/deps/jq/docs/validate_manual_schema.py +19 -0
- package/deps/jq/jq.1.prebuilt +1102 -294
- package/deps/jq/jq.spec +2 -3
- package/deps/jq/libjq.pc.in +11 -0
- package/deps/jq/m4/ax_pthread.m4 +522 -0
- package/deps/jq/modules/oniguruma/.travis.yml +17 -0
- package/deps/jq/modules/oniguruma/CMakeLists.txt +206 -41
- package/deps/jq/modules/oniguruma/COPYING +23 -25
- package/deps/jq/modules/oniguruma/HISTORY +368 -23
- package/deps/jq/modules/oniguruma/Makefile.am +61 -7
- package/deps/jq/modules/oniguruma/README +34 -20
- package/deps/jq/modules/oniguruma/README.md +106 -33
- package/deps/jq/modules/oniguruma/README_japanese +183 -0
- package/deps/jq/modules/oniguruma/autogen.sh +9 -0
- package/deps/jq/modules/oniguruma/cmake/Config.cmake.in +4 -0
- package/deps/jq/modules/oniguruma/configure.ac +66 -55
- package/deps/jq/modules/oniguruma/doc/API +485 -42
- package/deps/jq/modules/oniguruma/doc/API.ja +732 -293
- package/deps/jq/modules/oniguruma/doc/CALLOUTS.API +397 -0
- package/deps/jq/modules/oniguruma/doc/CALLOUTS.API.ja +393 -0
- package/deps/jq/modules/oniguruma/doc/CALLOUTS.BUILTIN +95 -0
- package/deps/jq/modules/oniguruma/doc/CALLOUTS.BUILTIN.ja +93 -0
- package/deps/jq/modules/oniguruma/doc/FAQ +3 -3
- package/deps/jq/modules/oniguruma/doc/FAQ.ja +8 -8
- package/deps/jq/modules/oniguruma/doc/RE +223 -63
- package/deps/jq/modules/oniguruma/doc/RE.ja +420 -265
- package/deps/jq/modules/oniguruma/doc/SYNTAX.md +1091 -0
- package/deps/jq/modules/oniguruma/doc/UNICODE_PROPERTIES +840 -697
- package/deps/jq/modules/oniguruma/harnesses/ascii_compatible.dict +113 -0
- package/deps/jq/modules/oniguruma/harnesses/base.c +749 -0
- package/deps/jq/modules/oniguruma/harnesses/deluxe.c +206 -0
- package/deps/jq/modules/oniguruma/harnesses/dict_conv.py +72 -0
- package/deps/jq/modules/oniguruma/harnesses/fuzzer.options +2 -0
- package/deps/jq/modules/oniguruma/harnesses/libfuzzer-onig.cpp +45 -0
- package/deps/jq/modules/oniguruma/harnesses/regset.c +392 -0
- package/deps/jq/modules/oniguruma/index.html +16 -5
- package/deps/jq/modules/oniguruma/index_ja.html +16 -5
- package/deps/jq/modules/oniguruma/make_win.bat +5 -0
- package/deps/jq/modules/oniguruma/make_win32.bat +5 -3
- package/deps/jq/modules/oniguruma/make_win64.bat +5 -3
- package/deps/jq/modules/oniguruma/onig-config.cmake.in +80 -0
- package/deps/jq/modules/oniguruma/onig-config.in +1 -1
- package/deps/jq/modules/oniguruma/oniguruma.pc.cmake.in +1 -1
- package/deps/jq/modules/oniguruma/oniguruma.pc.in +0 -1
- package/deps/jq/modules/oniguruma/sample/CMakeLists.txt +9 -2
- package/deps/jq/modules/oniguruma/sample/Makefile.am +24 -5
- package/deps/jq/modules/oniguruma/sample/bug_fix.c +13 -51
- package/deps/jq/modules/oniguruma/sample/callback_each_match.c +168 -0
- package/deps/jq/modules/oniguruma/sample/callout.c +268 -0
- package/deps/jq/modules/oniguruma/sample/count.c +125 -0
- package/deps/jq/modules/oniguruma/sample/crnl.c +6 -4
- package/deps/jq/modules/oniguruma/sample/echo.c +136 -0
- package/deps/jq/modules/oniguruma/sample/encode.c +53 -146
- package/deps/jq/modules/oniguruma/sample/listcap.c +18 -10
- package/deps/jq/modules/oniguruma/sample/names.c +10 -6
- package/deps/jq/modules/oniguruma/sample/posix.c +13 -2
- package/deps/jq/modules/oniguruma/sample/regset.c +95 -0
- package/deps/jq/modules/oniguruma/sample/scan.c +20 -6
- package/deps/jq/modules/oniguruma/sample/simple.c +8 -4
- package/deps/jq/modules/oniguruma/sample/sql.c +13 -8
- package/deps/jq/modules/oniguruma/sample/syntax.c +11 -10
- package/deps/jq/modules/oniguruma/sample/user_property.c +12 -7
- package/deps/jq/modules/oniguruma/src/Makefile.am +41 -15
- package/deps/jq/modules/oniguruma/src/Makefile.windows +196 -183
- package/deps/jq/modules/oniguruma/src/ascii.c +64 -7
- package/deps/jq/modules/oniguruma/src/big5.c +25 -15
- package/deps/jq/modules/oniguruma/src/config.h.cmake.in +7 -22
- package/deps/jq/modules/oniguruma/src/config.h.win32 +56 -84
- package/deps/jq/modules/oniguruma/src/config.h.win64 +56 -84
- package/deps/jq/modules/oniguruma/src/config.h.windows.in +62 -0
- package/deps/jq/modules/oniguruma/src/cp1251.c +14 -8
- package/deps/jq/modules/oniguruma/src/euc_jp.c +28 -30
- package/deps/jq/modules/oniguruma/src/euc_jp_prop.c +25 -32
- package/deps/jq/modules/oniguruma/src/euc_jp_prop.gperf +1 -2
- package/deps/jq/modules/oniguruma/src/euc_kr.c +27 -15
- package/deps/jq/modules/oniguruma/src/euc_tw.c +40 -17
- package/deps/jq/modules/oniguruma/src/gb18030.c +177 -119
- package/deps/jq/modules/oniguruma/src/gperf_fold_key_conv.py +12 -8
- package/deps/jq/modules/oniguruma/src/gperf_unfold_key_conv.py +8 -6
- package/deps/jq/modules/oniguruma/src/iso8859_1.c +92 -91
- package/deps/jq/modules/oniguruma/src/iso8859_10.c +13 -29
- package/deps/jq/modules/oniguruma/src/iso8859_11.c +4 -2
- package/deps/jq/modules/oniguruma/src/iso8859_13.c +13 -33
- package/deps/jq/modules/oniguruma/src/iso8859_14.c +13 -30
- package/deps/jq/modules/oniguruma/src/iso8859_15.c +13 -34
- package/deps/jq/modules/oniguruma/src/iso8859_16.c +13 -29
- package/deps/jq/modules/oniguruma/src/iso8859_2.c +13 -29
- package/deps/jq/modules/oniguruma/src/iso8859_3.c +13 -33
- package/deps/jq/modules/oniguruma/src/iso8859_4.c +13 -32
- package/deps/jq/modules/oniguruma/src/iso8859_5.c +16 -23
- package/deps/jq/modules/oniguruma/src/iso8859_6.c +4 -2
- package/deps/jq/modules/oniguruma/src/iso8859_7.c +14 -29
- package/deps/jq/modules/oniguruma/src/iso8859_8.c +4 -2
- package/deps/jq/modules/oniguruma/src/iso8859_9.c +13 -33
- package/deps/jq/modules/oniguruma/src/koi8.c +14 -27
- package/deps/jq/modules/oniguruma/src/koi8_r.c +12 -19
- package/deps/jq/modules/oniguruma/src/make_property.sh +21 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_egcb.sh +7 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_egcb_data.py +267 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_fold.sh +25 -11
- package/deps/jq/modules/oniguruma/src/make_unicode_fold_data.py +206 -26
- package/deps/jq/modules/oniguruma/src/make_unicode_property.sh +19 -10
- package/deps/jq/modules/oniguruma/src/make_unicode_property_data.py +474 -375
- package/deps/jq/modules/oniguruma/src/make_unicode_wb.sh +7 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_wb_data.py +267 -0
- package/deps/jq/modules/oniguruma/src/mktable.c +28 -24
- package/deps/jq/modules/oniguruma/src/onig_init.c +2 -2
- package/deps/jq/modules/oniguruma/src/oniggnu.h +7 -5
- package/deps/jq/modules/oniguruma/src/onigposix.h +40 -16
- package/deps/jq/modules/oniguruma/src/oniguruma.h +357 -107
- package/deps/jq/modules/oniguruma/src/regcomp.c +6214 -3933
- package/deps/jq/modules/oniguruma/src/regenc.c +197 -120
- package/deps/jq/modules/oniguruma/src/regenc.h +106 -63
- package/deps/jq/modules/oniguruma/src/regerror.c +112 -91
- package/deps/jq/modules/oniguruma/src/regexec.c +4876 -2010
- package/deps/jq/modules/oniguruma/src/regext.c +8 -8
- package/deps/jq/modules/oniguruma/src/reggnu.c +13 -17
- package/deps/jq/modules/oniguruma/src/regint.h +757 -491
- package/deps/jq/modules/oniguruma/src/regparse.c +7204 -3240
- package/deps/jq/modules/oniguruma/src/regparse.h +361 -218
- package/deps/jq/modules/oniguruma/src/regposerr.c +49 -9
- package/deps/jq/modules/oniguruma/src/regposix.c +106 -24
- package/deps/jq/modules/oniguruma/src/regsyntax.c +66 -13
- package/deps/jq/modules/oniguruma/src/regtrav.c +1 -1
- package/deps/jq/modules/oniguruma/src/regversion.c +6 -4
- package/deps/jq/modules/oniguruma/src/sjis.c +23 -52
- package/deps/jq/modules/oniguruma/src/sjis_prop.c +25 -32
- package/deps/jq/modules/oniguruma/src/sjis_prop.gperf +1 -2
- package/deps/jq/modules/oniguruma/src/st.c +248 -249
- package/deps/jq/modules/oniguruma/src/st.h +4 -5
- package/deps/jq/modules/oniguruma/src/unicode.c +869 -294
- package/deps/jq/modules/oniguruma/src/unicode_egcb_data.c +1419 -0
- package/deps/jq/modules/oniguruma/src/unicode_fold1_key.c +1829 -1300
- package/deps/jq/modules/oniguruma/src/unicode_fold2_key.c +32 -9
- package/deps/jq/modules/oniguruma/src/unicode_fold3_key.c +32 -9
- package/deps/jq/modules/oniguruma/src/unicode_fold_data.c +1210 -984
- package/deps/jq/modules/oniguruma/src/unicode_property_data.c +22480 -15198
- package/deps/jq/modules/oniguruma/src/unicode_property_data_posix.c +1463 -591
- package/deps/jq/modules/oniguruma/src/unicode_unfold_key.c +1958 -1418
- package/deps/jq/modules/oniguruma/src/unicode_wb_data.c +1106 -0
- package/deps/jq/modules/oniguruma/src/utf16_be.c +90 -49
- package/deps/jq/modules/oniguruma/src/utf16_le.c +80 -49
- package/deps/jq/modules/oniguruma/src/utf32_be.c +14 -42
- package/deps/jq/modules/oniguruma/src/utf32_le.c +13 -40
- package/deps/jq/modules/oniguruma/src/utf8.c +33 -78
- package/deps/jq/modules/oniguruma/test/CMakeLists.txt +55 -0
- package/deps/jq/modules/oniguruma/test/Makefile.am +65 -10
- package/deps/jq/modules/oniguruma/test/test.sh +17 -0
- package/deps/jq/modules/oniguruma/test/test_back.c +1450 -0
- package/deps/jq/modules/oniguruma/test/test_options.c +228 -0
- package/deps/jq/modules/oniguruma/test/test_regset.c +466 -0
- package/deps/jq/modules/oniguruma/test/test_syntax.c +365 -0
- package/deps/jq/modules/oniguruma/test/test_utf8.c +1761 -0
- package/deps/jq/modules/oniguruma/test/testc.c +128 -88
- package/deps/jq/modules/oniguruma/test/testp.c +613 -0
- package/deps/jq/modules/oniguruma/test/testu.c +75 -28
- package/deps/jq/modules/oniguruma/tis-ci/stub.c +3 -0
- package/deps/jq/modules/oniguruma/tis-ci/test_back.config +26 -0
- package/deps/jq/modules/oniguruma/tis-ci/test_regset.config +20 -0
- package/deps/jq/modules/oniguruma/tis-ci/test_syntax.config +26 -0
- package/deps/jq/modules/oniguruma/tis-ci/test_utf8.config +25 -0
- package/deps/jq/modules/oniguruma/tis-ci/testc.config +26 -0
- package/deps/jq/modules/oniguruma/tis-ci/testu.config +24 -0
- package/deps/jq/modules/oniguruma/tis.config +1336 -0
- package/deps/jq/modules/oniguruma/windows/CMakeLists.txt +8 -0
- package/deps/jq/modules/oniguruma/windows/testc.c +865 -869
- package/deps/jq/scripts/update-website +6 -5
- package/deps/jq/scripts/version +10 -7
- package/deps/jq/sig/jq-release-new.key +29 -0
- package/deps/jq/sig/v1.4/sha256sum.txt +1 -0
- package/deps/jq/sig/v1.5/sha256sum.txt +2 -0
- package/deps/jq/sig/v1.5rc1/sha256sum.txt +1 -0
- package/deps/jq/sig/v1.5rc2/sha256sum.txt +2 -0
- package/deps/jq/sig/v1.6/sha256sum.txt +2 -0
- package/deps/jq/sig/v1.7/jq-1.7.tar.gz.asc +16 -0
- package/deps/jq/sig/v1.7/jq-1.7.zip.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-amd64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-arm64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-armel.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-armhf.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-i386.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mips.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mips64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mips64el.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mips64r6.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mips64r6el.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mipsel.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mipsr6.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mipsr6el.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-powerpc.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-ppc64el.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-riscv64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-s390x.asc +16 -0
- package/deps/jq/sig/v1.7/jq-macos-amd64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-macos-arm64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-windows-amd64.exe.asc +16 -0
- package/deps/jq/sig/v1.7/jq-windows-i386.exe.asc +16 -0
- package/deps/jq/sig/v1.7/sha256sum.txt +23 -0
- package/deps/jq/sig/v1.7.1/jq-1.7.1.tar.gz.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-1.7.1.zip.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-amd64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-arm64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-armel.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-armhf.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-i386.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mips.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mips64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mips64el.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mips64r6.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mips64r6el.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mipsel.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mipsr6.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mipsr6el.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-powerpc.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-ppc64el.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-riscv64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-s390x.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-macos-amd64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-macos-arm64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-osx-amd64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-win64.exe.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-windows-amd64.exe.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-windows-i386.exe.asc +16 -0
- package/deps/jq/sig/v1.7.1/sha256sum.txt +26 -0
- package/deps/jq/sig/v1.7rc1/jq-1.7rc1.tar.gz.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-1.7rc1.zip.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-amd64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-arm64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-armel.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-armhf.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-i386.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mips.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mips64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mips64el.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mips64r6.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mips64r6el.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mipsel.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mipsr6.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mipsr6el.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-powerpc.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-ppc64el.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-riscv64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-s390x.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-macos-amd64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-macos-arm64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-windows-amd64.exe.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-windows-i386.exe.asc +16 -0
- package/deps/jq/sig/v1.7rc1/sha256sum.txt +23 -0
- package/deps/jq/sig/v1.7rc2/jq-1.7rc2.tar.gz.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-1.7rc2.zip.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-amd64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-arm64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-armel.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-armhf.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-i386.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mips.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mips64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mips64el.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mips64r6.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mips64r6el.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mipsel.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mipsr6.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mipsr6el.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-powerpc.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-ppc64el.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-riscv64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-s390x.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-macos-amd64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-macos-arm64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-windows-amd64.exe.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-windows-i386.exe.asc +16 -0
- package/deps/jq/sig/v1.7rc2/sha256sum.txt +23 -0
- package/deps/jq/src/builtin.c +537 -343
- package/deps/jq/src/builtin.h +18 -0
- package/deps/jq/src/builtin.jq +116 -143
- package/deps/jq/src/bytecode.h +8 -4
- package/deps/jq/src/compile.c +157 -143
- package/deps/jq/src/compile.h +3 -4
- package/deps/jq/src/decNumber/ICU-license.html +45 -0
- package/deps/jq/src/decNumber/decBasic.c +3908 -0
- package/deps/jq/src/decNumber/decCommon.c +1835 -0
- package/deps/jq/src/decNumber/decContext.c +437 -0
- package/deps/jq/src/decNumber/decContext.h +254 -0
- package/deps/jq/src/decNumber/decDPD.h +1185 -0
- package/deps/jq/src/decNumber/decDouble.c +140 -0
- package/deps/jq/src/decNumber/decDouble.h +155 -0
- package/deps/jq/src/decNumber/decNumber.c +8143 -0
- package/deps/jq/src/decNumber/decNumber.h +182 -0
- package/deps/jq/src/decNumber/decNumberLocal.h +757 -0
- package/deps/jq/src/decNumber/decPacked.c +220 -0
- package/deps/jq/src/decNumber/decPacked.h +52 -0
- package/deps/jq/src/decNumber/decQuad.c +135 -0
- package/deps/jq/src/decNumber/decQuad.h +177 -0
- package/deps/jq/src/decNumber/decSingle.c +71 -0
- package/deps/jq/src/decNumber/decSingle.h +86 -0
- package/deps/jq/src/decNumber/decimal128.c +553 -0
- package/deps/jq/src/decNumber/decimal128.h +81 -0
- package/deps/jq/src/decNumber/decimal32.c +476 -0
- package/deps/jq/src/decNumber/decimal32.h +81 -0
- package/deps/jq/src/decNumber/decimal64.c +839 -0
- package/deps/jq/src/decNumber/decimal64.h +83 -0
- package/deps/jq/src/decNumber/decnumber.pdf +0 -0
- package/deps/jq/src/decNumber/example1.c +38 -0
- package/deps/jq/src/decNumber/example2.c +52 -0
- package/deps/jq/src/decNumber/example3.c +64 -0
- package/deps/jq/src/decNumber/example4.c +61 -0
- package/deps/jq/src/decNumber/example5.c +36 -0
- package/deps/jq/src/decNumber/example6.c +61 -0
- package/deps/jq/src/decNumber/example7.c +35 -0
- package/deps/jq/src/decNumber/example8.c +39 -0
- package/deps/jq/src/decNumber/readme.txt +81 -0
- package/deps/jq/src/exec_stack.h +5 -3
- package/deps/jq/src/execute.c +126 -44
- package/deps/jq/src/inject_errors.c +0 -2
- package/deps/jq/src/jq.h +10 -1
- package/deps/jq/src/jq_test.c +222 -11
- package/deps/jq/src/jv.c +807 -176
- package/deps/jq/src/jv.h +22 -1
- package/deps/jq/src/jv_alloc.c +33 -26
- package/deps/jq/src/jv_alloc.h +0 -11
- package/deps/jq/src/jv_aux.c +153 -67
- package/deps/jq/src/jv_dtoa.c +12 -2
- package/deps/jq/src/jv_dtoa_tsd.c +51 -0
- package/deps/jq/src/jv_dtoa_tsd.h +4 -0
- package/deps/jq/src/jv_parse.c +70 -15
- package/deps/jq/src/jv_print.c +56 -60
- package/deps/jq/src/jv_private.h +7 -0
- package/deps/jq/src/jv_thread.h +76 -0
- package/deps/jq/src/jv_unicode.c +18 -0
- package/deps/jq/src/jv_unicode.h +2 -0
- package/deps/jq/src/lexer.c +782 -543
- package/deps/jq/src/lexer.h +438 -64
- package/deps/jq/src/lexer.l +10 -3
- package/deps/jq/src/libm.h +16 -6
- package/deps/jq/src/linker.c +97 -40
- package/deps/jq/src/locfile.c +2 -1
- package/deps/jq/src/main.c +384 -336
- package/deps/jq/src/opcode_list.h +5 -2
- package/deps/jq/src/parser.c +2260 -1898
- package/deps/jq/src/parser.h +115 -98
- package/deps/jq/src/parser.y +124 -89
- package/deps/jq/src/util.c +854 -55
- package/deps/jq/src/util.h +6 -4
- package/deps/jq/tests/jq.test +762 -26
- package/deps/jq/tests/jq_fuzz_compile.c +27 -0
- package/deps/jq/tests/jq_fuzz_execute.cpp +42 -0
- package/deps/jq/tests/jq_fuzz_fixed.cpp +297 -0
- package/deps/jq/tests/jq_fuzz_load_file.c +28 -0
- package/deps/jq/tests/jq_fuzz_parse.c +21 -0
- package/deps/jq/tests/jq_fuzz_parse_extended.c +36 -0
- package/deps/jq/tests/jq_fuzz_parse_stream.c +21 -0
- package/deps/jq/tests/local.supp +14 -0
- package/deps/jq/tests/man.test +979 -0
- package/deps/jq/tests/manonig.test +76 -0
- package/deps/jq/tests/manonigtest +5 -0
- package/deps/jq/tests/mantest +1 -2
- package/deps/jq/tests/modules/home2/.jq/g.jq +1 -0
- package/deps/jq/tests/modules/shadow1.jq +2 -0
- package/deps/jq/tests/modules/shadow2.jq +1 -0
- package/deps/jq/tests/modules/test_bind_order0.jq +1 -0
- package/deps/jq/tests/modules/test_bind_order1.jq +1 -1
- package/deps/jq/tests/modules/test_bind_order2.jq +0 -1
- package/deps/jq/tests/no-main-program.jq +1 -0
- package/deps/jq/tests/onig.test +77 -2
- package/deps/jq/tests/setup +7 -2
- package/deps/jq/tests/shtest +478 -59
- package/deps/jq/tests/uri.test +38 -0
- package/deps/jq/tests/uritest +5 -0
- package/deps/jq/tests/yes-main-program.jq +2 -0
- package/lib/index.js +3 -0
- package/lib/jq.js +15 -1
- package/lib/templateAsync.js +137 -0
- package/package.json +7 -7
- package/src/binding.cc +623 -146
- package/src/binding.h +3 -4
- package/test/santiy-async.test.js +171 -0
- package/test/santiy.test.js +2 -2
- package/test/template-async.test.js +182 -0
- package/test/template.test.js +3 -3
- package/deps/jq/.travis.yml +0 -202
- package/deps/jq/NEWS +0 -89
- package/deps/jq/appveyor.yml +0 -53
- package/deps/jq/docs/Gemfile +0 -7
- package/deps/jq/docs/Gemfile.lock +0 -63
- package/deps/jq/docs/Rakefile +0 -24
- package/deps/jq/docs/Rakefile.manual +0 -49
- package/deps/jq/docs/Rakefile.website +0 -76
- package/deps/jq/docs/content/1.tutorial/default.yml +0 -327
- package/deps/jq/docs/content/2.download/default.yml +0 -193
- package/deps/jq/docs/content/index/index.yml +0 -73
- package/deps/jq/docs/public/css/base.scss +0 -181
- package/deps/jq/docs/public/jq.png +0 -0
- package/deps/jq/docs/site.yml +0 -9
- package/deps/jq/docs/templates/default.liquid +0 -34
- package/deps/jq/docs/templates/index.liquid +0 -73
- package/deps/jq/docs/templates/manual.liquid +0 -99
- package/deps/jq/docs/templates/shared/_footer.liquid +0 -10
- package/deps/jq/docs/templates/shared/_head.liquid +0 -17
- package/deps/jq/docs/templates/shared/_navbar.liquid +0 -27
- package/deps/jq/modules/oniguruma/README.ja +0 -195
- package/deps/jq/modules/oniguruma/cmake/dist.cmake +0 -321
- package/deps/jq/modules/oniguruma/contributed/libfuzzer-onig.cpp +0 -31
- package/deps/jq/modules/oniguruma/dist.info +0 -10
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold1_key.c +0 -2250
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold2_key.c +0 -203
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold3_key.c +0 -113
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold_data.c +0 -1225
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data.c +0 -24742
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data_posix.c +0 -4846
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_unfold_key.c +0 -2571
- /package/deps/jq/sig/{jq-release.key → jq-release-old.key} +0 -0
- /package/deps/jq/tests/modules/{.jq → home1/.jq} +0 -0
|
@@ -1,5 +1,341 @@
|
|
|
1
1
|
History
|
|
2
2
|
|
|
3
|
+
2022/04/2X: Version 6.9.8
|
|
4
|
+
|
|
5
|
+
2022/04/11: implement whole option: (?C)
|
|
6
|
+
2022/04/07: implement whole option: (?L)
|
|
7
|
+
2022/04/04: implement whole option: (?I)
|
|
8
|
+
2022/03/15: fix: Insufficient backreference matching for the same name groups
|
|
9
|
+
2022/02/22: fix #250: ONIG_ESCAPE_REGEX_T_COLLISION doesn't work
|
|
10
|
+
2021/10/17: Update to Unicode 14.0
|
|
11
|
+
2021/08/29: fix: use CMAKE_INSTALL_LIBDIR as install lib dir, in some
|
|
12
|
+
platforms, lib could be installed in lib64 dir but the .pc file
|
|
13
|
+
is installed in lib dir.
|
|
14
|
+
2021/08/22: fix: Stack overflow for some very long patterns
|
|
15
|
+
2021/08/22: fix: Issue 37442 in oss-fuzz: Undefined-shift
|
|
16
|
+
2021/08/05: fix #239: CMake build fails to detect alloca on some platforms
|
|
17
|
+
such as FreeBSD
|
|
18
|
+
2021/08/04: CMake: Make documentation and examples optional
|
|
19
|
+
2021/05/20: fix #235: 6.9.7 can't compile with Visual Studio 2005
|
|
20
|
+
|
|
21
|
+
2021/04/15: Version 6.9.7 revised 1
|
|
22
|
+
|
|
23
|
+
2021/04/14: fix: replace UChar to OnigUChar in oniguruma.h
|
|
24
|
+
|
|
25
|
+
2021/04/14: Version 6.9.7
|
|
26
|
+
|
|
27
|
+
2021/03/31: Release Candidate 1 for Version 6.9.7
|
|
28
|
+
|
|
29
|
+
2021/03/23: fix Issue 32340, 32345, 32355 in oss-fuzz
|
|
30
|
+
2021/03/12: fix invalid optimization info for if-pattern (?(cond)...)
|
|
31
|
+
2021/02/21: NEW API: ONIG_OPTION_CALLBACK_EACH_MATCH
|
|
32
|
+
2021/02/02: fix Issue 30144 in oss-fuzz: Timeout
|
|
33
|
+
2021/01/18: NEW API: ONIG_SYNTAX_PYTHON
|
|
34
|
+
2020/12/20: fix Issue 28795 in oss-fuzz: Timeout
|
|
35
|
+
2020/12/13: fix Issue 28554 in oss-fuzz: Timeout, check very inefficient patterns at tune_tree(NODE_CALL)
|
|
36
|
+
2020/12/04: fix Issue 28259 in oss-fuzz: Timeout
|
|
37
|
+
2020/12/03: fix invalid reduction of nested quantifiers (?:<expr>+?)* and (?:<expr>+?)+
|
|
38
|
+
2020/12/01: fix Issue 28104 in oss-fuzz: Timeout
|
|
39
|
+
2020/11/28: NEW API: ONIG_OPTION_IGNORECASE_IS_ASCII
|
|
40
|
+
2020/11/07: fix Issue 27015 in oss-fuzz: Timeout
|
|
41
|
+
|
|
42
|
+
2020/11/05: Version 6.9.6
|
|
43
|
+
|
|
44
|
+
2020/11/01: fix Issue 26798 in oss-fuzz: Timeout
|
|
45
|
+
2020/10/27: fix Issue 26675 in oss-fuzz: Timeout
|
|
46
|
+
|
|
47
|
+
2020/10/21: Release Candidate 4 for Version 6.9.6
|
|
48
|
+
|
|
49
|
+
2020/10/20: #221: revert cbe9f8b and 8155473: Out-of-bounds write in #207 (Issues found with Coverity) is fake
|
|
50
|
+
|
|
51
|
+
2020/10/16: Release Candidate 3 for Version 6.9.6
|
|
52
|
+
|
|
53
|
+
2020/10/15: fix #220: autotools not building DLL using msys2 and mingw64 on windows 10
|
|
54
|
+
2020/10/12: fix #219: Binary incompatibilty between 6.9.5_rev1 -> 6.9.2_rc2: reg_number_of_names
|
|
55
|
+
|
|
56
|
+
2020/10/09: Release Candidate 2 for Version 6.9.6
|
|
57
|
+
|
|
58
|
+
2020/10/09: fix #216: build fails on Windows
|
|
59
|
+
|
|
60
|
+
2020/10/07: Release Candidate 1 for Version 6.9.6
|
|
61
|
+
|
|
62
|
+
2020/09/30: add configure option --enable-binary-compatible-posix-api
|
|
63
|
+
2020/09/24: fix: Issue 25893 in oss-fuzz: Stack-buffer-overflow
|
|
64
|
+
2020/09/22: fix Issues found with Coverity (Issue #207)
|
|
65
|
+
2020/08/27: fix Issue #204: define uint32_t and uint64_t for Visual Studio older than 2010
|
|
66
|
+
2020/08/04: fix Issue 24544 in oss-fuzz: Timeout
|
|
67
|
+
2020/07/21: add USE_CHECK_VALIDITY_OF_STRING_IN_TREE (fix Issue 24276 in oss-fuzz: Undefined-shift)
|
|
68
|
+
2020/07/20: fix: Issue 24268 in oss-fuzz: Timeout
|
|
69
|
+
2020/07/17: fix: Issue 24112 in oss-fuzz: Undefined-shift
|
|
70
|
+
2020/07/14: fix: Issue 24066 in oss-fuzz: Timeout
|
|
71
|
+
2020/07/05: fix: Incomplete application of ONIG_OPTION_NOTBOL to \A
|
|
72
|
+
2020/07/05: fix: Incomplete application of ONIG_OPTION_NOT_END_STRING to \Z (Issue #192)
|
|
73
|
+
2020/07/05: fix: Incomplete application of ONIG_OPTION_NOTEOL to \z
|
|
74
|
+
2020/07/05: fix: Incomplete application of ONIG_OPTION_NOTEOL to \Z
|
|
75
|
+
2020/07/01: add ONIG_OPTION_NOT_END_STRING (Issue #198)
|
|
76
|
+
2020/06/28: add ONIG_OPTION_NOT_BEGIN_POSITION (Issue #198)
|
|
77
|
+
2020/06/28: add ONIG_OPTION_NOT_BEGIN_STRING
|
|
78
|
+
2020/06/28: fix: Issue 23754 in oss-fuzz: Timeout
|
|
79
|
+
2020/06/21: fix: Issue 23525 in oss-fuzz: Timeout
|
|
80
|
+
2020/06/15: fix: Issue 23311 in oss-fuzz: Timeout
|
|
81
|
+
2020/06/03: fix: Issue 22925 in oss-fuzz: Index-out-of-bounds
|
|
82
|
+
2020/06/03: fix: Issue 22917 in oss-fuzz: Out-of-memory
|
|
83
|
+
2020/06/02: fix: Issue 22916 in oss-fuzz: Timeout
|
|
84
|
+
2020/05/29: fix: Issue 22744 in oss-fuzz: Integer-overflow
|
|
85
|
+
2020/05/28: fix: Issue 22658 in oss-fuzz: check backref with level
|
|
86
|
+
2020/05/28: fix: Issue 22533 in oss-fuzz: memory leak
|
|
87
|
+
2020/05/23: fix: Issue 22393 in oss-fuzz: Integer-overflow
|
|
88
|
+
2020/05/13: fix: Issue 22154 in oss-fuzz: When the option FIND_LONGEST is specified, match_at() returns ONIG_MISMATCH unless there is no need to search any more.
|
|
89
|
+
2020/05/06: Add SOVERSION info to library when using cmake
|
|
90
|
+
2020/05/04: fix: 22008 in oss-fuzz
|
|
91
|
+
2020/05/04: fix: 21998 in oss-fuzz
|
|
92
|
+
2020/05/03: fix: 21944, 21977 in oss-fuzz
|
|
93
|
+
|
|
94
|
+
2020/04/26: Version 6.9.5 revised 1
|
|
95
|
+
|
|
96
|
+
2020/04/24: fix #192: Unexpected regex match
|
|
97
|
+
|
|
98
|
+
2020/04/20: Version 6.9.5
|
|
99
|
+
|
|
100
|
+
2020/04/12: Release Candidate 2 for Version 6.9.5
|
|
101
|
+
2020/04/09: fix a problem (found by oss-fuzz test on my PC)
|
|
102
|
+
2020/04/05: Release Candidate 1 for Version 6.9.5
|
|
103
|
+
2020/03/30: remove src/*.py and src/*.sh from distribution files
|
|
104
|
+
2020/03/27: NEW: Code point sequence notation \x{HHHH ...}, \o{OOOO ...}
|
|
105
|
+
2020/03/24: NEW API: maximum nesting level of subexp call
|
|
106
|
+
2020/03/22: #165: change enable-posix-api default from YES to NO
|
|
107
|
+
2020/03/15: update Unicode version to 13.0.0
|
|
108
|
+
2020/03/10: add test_back.c
|
|
109
|
+
2020/03/08: tune output of debug in print_optimize_info()
|
|
110
|
+
2020/03/02: fix #186: Allow regset search to succeed at end of string
|
|
111
|
+
2020/02/13: NEW API: retry-limit-in-search functions
|
|
112
|
+
2020/01/20: add ONIG_SYN_VARIABLE_LEN_LOOK_BEHIND flag
|
|
113
|
+
2019/12/27: add USE_REGSET switch
|
|
114
|
+
2019/12/20: remove OPTIMIZE_STR_CASE_FOLD
|
|
115
|
+
2019/12/13: add test/test_syntax.c
|
|
116
|
+
2019/12/13: add ONIG_SYN_ISOLATED_OPTION_CONTINUE_BRANCH flag
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
2019/11/29: Version 6.9.4
|
|
120
|
+
|
|
121
|
+
2019/11/22: Release Candidate 3 for Version 6.9.4
|
|
122
|
+
2019/11/20: fix a problem found by libFuzzer test
|
|
123
|
+
2019/11/14: Release Candidate 2 for Version 6.9.4
|
|
124
|
+
2019/11/12: fix integer overflow by nested quantifier
|
|
125
|
+
2019/11/11: fix CVE-2019-19012: Integer overflow related to reg->dmax in search_in_range()
|
|
126
|
+
2019/11/07: fix CVE-2019-19203: heap-buffer-overflow in gb18030_mbc_enc_len()
|
|
127
|
+
2019/11/06: fix CVE-2019-19204: heap-buffer-overflow in fetch_interval_quantifier()
|
|
128
|
+
2019/11/06: add HAVE_INTTYPES_H into config.h.windows.in and config.h.win{32,64}
|
|
129
|
+
2019/11/06: add HAVE_STDINT_H into config.h.win{32,64}
|
|
130
|
+
2019/11/05: Release Candidate 1 for Version 6.9.4
|
|
131
|
+
2019/10/31: Update Unicode Emoji version to 12.1 (Nothing data changed)
|
|
132
|
+
2019/10/29: implement USE_REPEAT_AND_EMPTY_CHECK_LOCAL_VAR configuration
|
|
133
|
+
2019/10/18: re-implement case fold conversion
|
|
134
|
+
2019/10/04: fix #156: Heap buffer overflow in match_at() with case-insensitive match
|
|
135
|
+
2019/09/30: NEW API: add onig_regset_replace()
|
|
136
|
+
2019/09/30: change Unicode VERSION value format
|
|
137
|
+
2019/09/20: NEW API: add regset functions
|
|
138
|
+
2019/09/20: add data ensure check before peek string value in OP_PUSH_IF_PEEK_NEXT
|
|
139
|
+
2019/09/20: fix loose code in encode-harness.c
|
|
140
|
+
2019/08/13: fix heap-buffer-overflow
|
|
141
|
+
2019/08/13: Add a macro to disable direct threading in the match engine (PR#149)
|
|
142
|
+
|
|
143
|
+
2019/08/06: Version 6.9.3 (secirity fix release)
|
|
144
|
+
|
|
145
|
+
2019/07/30: add ONIG_SYN_ALLOW_INVALID_CODE_END_OF_RANGE_IN_CC
|
|
146
|
+
2019/07/29: add STK_PREC_READ_START/END stack type
|
|
147
|
+
2019/07/29: Fix #147: Stack Exhaustion Problem caused by some parsing functions
|
|
148
|
+
2019/07/11: add a dictionary file for libfuzzer
|
|
149
|
+
2019/07/07: add harnesses directory
|
|
150
|
+
2019/07/05-2019/07/29: fix many problems found by libfuzzer programs
|
|
151
|
+
2019/06/27: deprecate onig_new_deluxe()
|
|
152
|
+
2019/06/27: Fix CVE-2019-13224: don't allow different encodings for onig_new_deluxe()
|
|
153
|
+
2019/06/27: Fix CVE-2019-13225: problem in converting if-then-else pattern
|
|
154
|
+
|
|
155
|
+
2019/05/07: Version 6.9.2 (same as Release Candidate 3)
|
|
156
|
+
|
|
157
|
+
2019/04/23: Release Candidate 3 for 6.9.2
|
|
158
|
+
2019/04/23: add doc/SYNTAX.md into distribution file
|
|
159
|
+
2019/04/09: Release Candidate 2 for 6.9.2
|
|
160
|
+
2019/04/09: fix #139: UAF in match_at()
|
|
161
|
+
2019/04/01: Release Candidate 1 for 6.9.2
|
|
162
|
+
2019/04/01: update Unicode version to 12.1.0 (draft)
|
|
163
|
+
2019/03/29: allow {n,m} (n>m) as possessive interval
|
|
164
|
+
2019/03/25: add ONIG_SYN_OP2_OPTION_ONIGURUMA
|
|
165
|
+
2019/03/22: add new options ONIG_OPTION_TEXT_SEGMENT_EXTENDED_GRAPHEME_CLUSTER and
|
|
166
|
+
ONIG_OPTION_TEXT_SEGMENT_WORD
|
|
167
|
+
2019/03/21: PR #137: fix cross-compilation
|
|
168
|
+
2019/03/20: update Unicode version to 12.0.0
|
|
169
|
+
2019/03/17: add doc/SYNTAX.md
|
|
170
|
+
2019/03/13: {n,m}+ and {n,m}? are possessive and reluctant range operator
|
|
171
|
+
in Perl syntax
|
|
172
|
+
2019/03/04: fix #132: don't execute testp if ENABLE_POSIX_API == no
|
|
173
|
+
2019/02/28: re-implement bytecode by using Operation struct
|
|
174
|
+
2019/02/26: fix #130: Build error on UWP with VS2017
|
|
175
|
+
2019/02/03: PR #128: regerror/toascii: do not attempt to serialize NULL pointer
|
|
176
|
+
2019/01/30: Build breaks without autoreconf #73
|
|
177
|
+
2019/01/02: fix #127: Windows VS 2008 build errors
|
|
178
|
+
2018/12/19: fix #126: Unable to compile when USE_CALLOUT is not defined
|
|
179
|
+
|
|
180
|
+
2018/12/11: Version 6.9.1
|
|
181
|
+
|
|
182
|
+
2018/10/08: use ENC_FLAG_SKIP_OFFSET_XXX values
|
|
183
|
+
2018/10/06: UTF-8 supports code range from 0x0000 to 0x10FFFF
|
|
184
|
+
(https://tools.ietf.org/html/rfc3629)
|
|
185
|
+
2018/10/05: speed improvement
|
|
186
|
+
2018/10/03: use OPTIMIZE_STR_CASE_FOLD_FAST
|
|
187
|
+
2018/10/01: convert CRLF line endings to LF
|
|
188
|
+
2018/09/27: set SIZEOF_SIZE_T for windows platforms
|
|
189
|
+
2018/09/22: use Sunday quick search algorithm instead of Boyer-Moor-Horspool
|
|
190
|
+
2018/09/20: introduce threaded code into match_at()
|
|
191
|
+
2018/09/17: remove HAVE_STRINGS_H
|
|
192
|
+
2018/09/16: remove HAVE_PROTOTYPES and HAVE_STDARG_PROTOTYPES
|
|
193
|
+
2018/09/14: add a command line option '-gc' for make_unicode_property_data.py.
|
|
194
|
+
2018/09/08: remove AC_HEADER_STDC
|
|
195
|
+
2018/09/06: remove AC_OUTPUT macro call
|
|
196
|
+
2018/09/06: remove AC_FUNC_MEMCMP, AC_HEADER_TIME, AC_C_CONST, HAVE__SETJMP and
|
|
197
|
+
HAVE_STRING_H
|
|
198
|
+
2018/09/05: remove HAVE_LIMITS_H, HAVE_FLOAT_H and HAVE_STDLIB_H
|
|
199
|
+
|
|
200
|
+
2018/09/03: Version 6.9.0
|
|
201
|
+
|
|
202
|
+
2018/08/24: add Unicode Emoji properties
|
|
203
|
+
2018/08/24: update Unicode version 11.0.0
|
|
204
|
+
2018/08/21: support gperf 3.1 instead of 3.0.4
|
|
205
|
+
2018/08/07: add ENABLE_POSIX_API switch into src/Makefile.windows
|
|
206
|
+
2018/08/02: add make_win.bat and src/config.h.windows.in
|
|
207
|
+
2018/06/25: add ENABLE_POSIX_API option into CMakeLists.txt
|
|
208
|
+
2018/06/04: add .travis.yml (for TravisCI)
|
|
209
|
+
|
|
210
|
+
2018/04/17: Version 6.8.2
|
|
211
|
+
|
|
212
|
+
2018/04/13: add doc/CALLOUTS.API.ja
|
|
213
|
+
2018/04/10: add doc/CALLOUTS.API
|
|
214
|
+
2018/04/10: fix #87: Read unknown address in onig_error_code_to_str()
|
|
215
|
+
2018/04/06: fix #86: typedef StateCheckNumType is unused
|
|
216
|
+
2018/04/02: update automake 1.16.1
|
|
217
|
+
2018/03/30: fix #84: stack-buffer-overflow in mbc_enc_len
|
|
218
|
+
2018/03/28: PR #83: Improve CMake build
|
|
219
|
+
2018/03/21: switch uses of UChar to OnigUChar in oniguruma.h (#80)
|
|
220
|
+
|
|
221
|
+
2018/03/19: Version 6.8.1
|
|
222
|
+
|
|
223
|
+
2018/03/19: update LTVERSION from 4:0:0 to 5:0:0
|
|
224
|
+
2018/03/19: add flag, sb_range etc.. into OnigEncodingType
|
|
225
|
+
2018/03/19: move regex structure from oniguruma.h to regint.h
|
|
226
|
+
2018/03/19: ONIGENC_CTYPE_XXX to be enum (Issue #33)
|
|
227
|
+
|
|
228
|
+
2018/03/16: Version 6.8.0
|
|
229
|
+
|
|
230
|
+
2018/03/12: add doc/CALLOUTS.BUILTIN for builtin callouts
|
|
231
|
+
2018/03/08: allow abbreviated notation for callouts (?(*name)..|..) (?(?{...})..|..)
|
|
232
|
+
2018/03/02: NEW API: move onigenc_strdup() from regenc.h to oniguruma.h
|
|
233
|
+
2018/02/21: remove all USE_COMBINATION_EXPLOSION_CHECK
|
|
234
|
+
2018/02/15: fix #78: bad definition of PV_()
|
|
235
|
+
2018/02/14: add configure option --enable-posix-api (for #77)
|
|
236
|
+
2018/02/08: implement callouts of name
|
|
237
|
+
2018/02/01: implement callouts of contents
|
|
238
|
+
2018/01/30: define ONIGURUMA_VERSION_INT
|
|
239
|
+
2018/01/29: enable USE_TRY_IN_MATCH_LIMIT by default
|
|
240
|
+
2018/01/29: NEW API: onig_search_with_param() onig_match_with_param()
|
|
241
|
+
2018/01/26: remove include windows.h from oniguruma.h
|
|
242
|
+
|
|
243
|
+
2018/01/26: Version 6.7.1
|
|
244
|
+
|
|
245
|
+
2018/01/25: disable USE_TRY_IN_MATCH_LIMIT by default
|
|
246
|
+
2018/01/24: implement mechanism of try-in-match-limit
|
|
247
|
+
2018/01/24: #76: rename EXPORT to ONIGURUMA_EXPORT
|
|
248
|
+
2018/01/15: #73: update for automake 1.15.1
|
|
249
|
+
2018/01/14: #74: update description of README
|
|
250
|
+
2018/01/10: #72: Correct spelling and grammar in FAQ (English)
|
|
251
|
+
2017/12/25: remove USE_COMBINATION_EXPLOSION_CHECK codes
|
|
252
|
+
|
|
253
|
+
2017/12/11: Version 6.7.0
|
|
254
|
+
|
|
255
|
+
2017/12/08: Disable \N and \O on ONIG_SYNTAX_RUBY
|
|
256
|
+
2017/12/08: add ONIG_SYNTAX_ONIGURUMA (default syntax)
|
|
257
|
+
2017/12/05: restructure StackType
|
|
258
|
+
2017/11/13: implement subexp calls (?R), (?&name), (?-n), (?+n) for Perl syntax
|
|
259
|
+
2017/09/25: use string pool of gperf for Unicode Property lookup function
|
|
260
|
+
2017/09/16: fix #70: an empty greedy regex and a word boundary (.*\b) fails
|
|
261
|
+
2017/09/13: remove a stack type STK_POS
|
|
262
|
+
2017/09/08: fix #69: add a declaration of onig_end()
|
|
263
|
+
2017/09/07: fix #68: Compilation failure in out-of-source build
|
|
264
|
+
2017/09/03: [new] hexadecimal codepoint \uHHHH
|
|
265
|
+
|
|
266
|
+
2017/08/30: Version 6.6.1
|
|
267
|
+
|
|
268
|
+
2017/08/29: fix definition of \X to (?>\O(?:\Y\O)*)
|
|
269
|
+
|
|
270
|
+
2017/08/28: Version 6.6.0
|
|
271
|
+
|
|
272
|
+
2017/08/26: fix #67: can't compile with Visual Studio 2005
|
|
273
|
+
2017/08/24: rename Absent clear to Range clear
|
|
274
|
+
2017/08/21: [new] Extended Grapheme Cluster \X and boundary \y, \Y
|
|
275
|
+
2017/08/17: fix: invalid index(ctype) value assigned to Unicode Block properties
|
|
276
|
+
2017/08/16: --enable-crnl-as-line-terminator to be deprecated
|
|
277
|
+
2017/08/15: [new] ASCII only mode options (?WDSP)
|
|
278
|
+
2017/08/14: [new] ONIG_OPTION_XXXX_IS_ASCII options
|
|
279
|
+
2017/08/11: disable OP_CCLASS_NODE
|
|
280
|
+
2017/08/11: [spec] Absent clear restore previous range value at backtrack
|
|
281
|
+
2017/08/07: optimize for simple one char repetition in Absent expression
|
|
282
|
+
2017/08/07: fix: invalid impl. for reluctant repetition in Absent expression
|
|
283
|
+
2017/08/04: remove compile switch USE_NAMED_GROUP
|
|
284
|
+
|
|
285
|
+
2017/08/03: Version 6.5.0
|
|
286
|
+
|
|
287
|
+
2017/07/30: [new] support Absent clear (Absent functions)
|
|
288
|
+
2017/07/25: abolish configure option: --enable-combination-explosion-check
|
|
289
|
+
2017/07/23: [new] support Absent functions (?~...)
|
|
290
|
+
2017/07/14: fix #65: SIZEOF_SIZE_T doesn't exist on certain architecutres
|
|
291
|
+
2017/07/11: [new] support \O (true anychar)
|
|
292
|
+
2017/07/10: [new] support \K (keep)
|
|
293
|
+
2017/07/10: add new node type: NODE_GIMMICK
|
|
294
|
+
2017/07/07: [new] support \N (no newline)
|
|
295
|
+
2017/07/05: [new] support \R (general newline)
|
|
296
|
+
2017/07/05: [new] support if-then-else syntax
|
|
297
|
+
2017/07/04: [new] support backref validity checker
|
|
298
|
+
|
|
299
|
+
2017/07/03: Version 6.4.0
|
|
300
|
+
|
|
301
|
+
2017/06/30: fix memory leaks
|
|
302
|
+
2017/06/29: fix memory leaks
|
|
303
|
+
2017/06/28: change encoding of doc/XXXX.ja from EUC-JP to UTF-8
|
|
304
|
+
2017/06/28: update doc/RE, and doc/RE.ja
|
|
305
|
+
2017/06/26: fix fatal bug of endless repeat check on Windows
|
|
306
|
+
2017/06/26: PR #62 : add check for return values
|
|
307
|
+
2017/06/23: [new] support call zero (\g{0})
|
|
308
|
+
2017/06/23: [new] support relative call by positive number
|
|
309
|
+
2017/06/23: [new] support relative back-reference by positive number
|
|
310
|
+
2017/06/15: fix #60 : check value type
|
|
311
|
+
2017/06/02: change output format for ONIG_DEBUG_COMPILE and ONIG_DEBUG_MATCH
|
|
312
|
+
|
|
313
|
+
2017/05/29: Version 6.3.0
|
|
314
|
+
|
|
315
|
+
2017/05/24: fix #60 : invalid state(CCS_VALUE) in parse_char_class()
|
|
316
|
+
2017/05/24: fix #59 : access to invalid address by reg->dmax value
|
|
317
|
+
2017/05/23: fix invalid increment of start position in onig_scan()
|
|
318
|
+
2017/05/23: fix #58 : access to invalid address by reg->dmin value
|
|
319
|
+
2017/05/23: fix #57 : DATA_ENSURE() check must be before data access
|
|
320
|
+
2017/05/22: fix #56 : return invalid result for codepoint 0xFFFFFFFF
|
|
321
|
+
2017/05/19: [new] add \o{17777777777} syntax.
|
|
322
|
+
2017/05/19: fix #55 : Byte value expressed in octal must be smaller than 256
|
|
323
|
+
|
|
324
|
+
2017/04/08: Version 6.2.0
|
|
325
|
+
|
|
326
|
+
2017/03/15: fix: size in xmemcpy in stack_double (PR #51)
|
|
327
|
+
2017/02/21: Initialize return value
|
|
328
|
+
2017/01/03: NEW API: add onig_set_capture_num_limit()
|
|
329
|
+
2017/01/03: change MemNumType from short int to int
|
|
330
|
+
2016/12/13: fix: [0-9-a] was not allowed as [0-9\-a]
|
|
331
|
+
2016/12/13: fix: illegal capture after recursive call
|
|
332
|
+
2016/12/13: fix: problem with optimization of \z
|
|
333
|
+
2016/12/13: fix: .* optimization
|
|
334
|
+
2016/12/13: Set a limit of parser recursion
|
|
335
|
+
2016/12/12: fix; that warnings are not shown properly
|
|
336
|
+
2016/12/12: fix: /[a-c#]+\W/ =~ "def#" fails when encoding is UTF-16/32
|
|
337
|
+
2016/12/12: fix: /[\x{0}-X]/i doesn't match properly when UTF-16/32 is used.
|
|
338
|
+
|
|
3
339
|
2016/12/11: Version 6.1.3
|
|
4
340
|
|
|
5
341
|
2016/12/11: fix: Syntax error: redirection unexpected (expecting word) #35
|
|
@@ -255,12 +591,12 @@ History
|
|
|
255
591
|
2006/11/07: [dist] remove test.rb, testconv.rb and testconvu.rb.
|
|
256
592
|
2006/11/07: [bug] get_case_fold_codes_by_str() should handle 'Ss' and 'sS'
|
|
257
593
|
combination for ess-tsett.
|
|
258
|
-
2006/11/07: [impl] apply_all_case_fold() doesn't need to return all
|
|
594
|
+
2006/11/07: [impl] apply_all_case_fold() doesn't need to return all
|
|
259
595
|
case character combination for multi-character folding.
|
|
260
596
|
(ONIGENC_CASE_FOLD_MULTI_CHAR)
|
|
261
597
|
2006/11/07: [bug] (thanks Byte)
|
|
262
598
|
add { 0xa3, 0xb3 } to CaseFoldMap[] for KOI8-R.
|
|
263
|
-
2006/11/06: [spec] change ONIG_OPTION_FIND_LONGEST to search all of
|
|
599
|
+
2006/11/06: [spec] change ONIG_OPTION_FIND_LONGEST to search all of
|
|
264
600
|
the string range.
|
|
265
601
|
add USE_FIND_LONGEST_SEARCH_ALL_OF_RANGE.
|
|
266
602
|
2006/11/02: [impl] re-implement expand_case_fold_string() for
|
|
@@ -528,7 +864,7 @@ History
|
|
|
528
864
|
|
|
529
865
|
2006/05/11: [test] success in ruby 1.9.0 (2006-03-01) [i686-linux].
|
|
530
866
|
2006/05/11: [bug] (thanks Yuji Kaneda)
|
|
531
|
-
dead-lock in onig_end().
|
|
867
|
+
dead-lock in onig_end().
|
|
532
868
|
2006/05/11: [dist] update index.html.
|
|
533
869
|
|
|
534
870
|
2006/05/08: Version 4.0.3
|
|
@@ -580,7 +916,7 @@ History
|
|
|
580
916
|
use GNU libtool/automake.
|
|
581
917
|
change configure.in and add Makefile.am, sample/Makefile.am.
|
|
582
918
|
add AUTHORS file.
|
|
583
|
-
2006/01/24: [dist] test programs return exit code -1 when test fails.
|
|
919
|
+
2006/01/24: [dist] test programs return exit code -1 when test fails.
|
|
584
920
|
2006/01/24: [bug] (thanks KIMURA Koichi)
|
|
585
921
|
invalid syntax definition in ONIG_SYNTAX_GREP.
|
|
586
922
|
ONIG_SYN_OP_BRACE_INTERVAL
|
|
@@ -598,7 +934,7 @@ History
|
|
|
598
934
|
2005/11/24: [test] success in ruby 1.9.0 (2005-08-09) [i686-linux].
|
|
599
935
|
2005/11/21: [test] success in ruby 1.9.0 (2005-11-20) [i386-cygwin].
|
|
600
936
|
2005/11/21: [bug] (thanks Allan Odgaard)
|
|
601
|
-
utf-8 character comments in extended mode leads
|
|
937
|
+
utf-8 character comments in extended mode leads
|
|
602
938
|
invalid result.
|
|
603
939
|
ex. /(?x)(?<= # <any-utf-8 multibyte char>o\n~) /
|
|
604
940
|
fix onigenc_unicode_is_code_ctype() and
|
|
@@ -680,7 +1016,7 @@ History
|
|
|
680
1016
|
add new character encoding ONIG_ENCODING_GB18030.
|
|
681
1017
|
2005/06/30: [bug] invalid ctype check for multibyte encodings.
|
|
682
1018
|
("graph", "print")
|
|
683
|
-
fix onigenc_mb2/4_is_code_ctype(),
|
|
1019
|
+
fix onigenc_mb2/4_is_code_ctype(),
|
|
684
1020
|
eucjp_is_code_ctype() and sjis_is_code_ctype().
|
|
685
1021
|
2005/06/30: [bug] invalid conversion from code point to mbc in
|
|
686
1022
|
onigenc_mb4_code_to_mbc().
|
|
@@ -755,7 +1091,7 @@ History
|
|
|
755
1091
|
remove oniggnu.h from make 19.
|
|
756
1092
|
2005/03/01: [bug] (thanks matz) [ruby-dev:25778]
|
|
757
1093
|
uninitialized member (OptEnv.backrefed_status)
|
|
758
|
-
was used.
|
|
1094
|
+
was used.
|
|
759
1095
|
|
|
760
1096
|
2005/02/19: Version 3.7.0
|
|
761
1097
|
|
|
@@ -806,7 +1142,7 @@ History
|
|
|
806
1142
|
2005/01/19: [bug] (thanks Isao Sonobe)
|
|
807
1143
|
callback function argument name_end of onig_foreach_name()
|
|
808
1144
|
was wrong.
|
|
809
|
-
name key of name table should be null terminated for
|
|
1145
|
+
name key of name table should be null terminated for
|
|
810
1146
|
character encoding length.
|
|
811
1147
|
add strdup_with_null(), rename onig_strdup() to k_strdup().
|
|
812
1148
|
use e->name_len in i_names().
|
|
@@ -1078,7 +1414,7 @@ History
|
|
|
1078
1414
|
RelAddrType, AbsAddrType and LengthType change
|
|
1079
1415
|
from short int to int type for the very long string match.
|
|
1080
1416
|
2004/06/14: [bug] (thanks Greg A. Woods)
|
|
1081
|
-
fix nmatch argument of regexec() is smaller than
|
|
1417
|
+
fix nmatch argument of regexec() is smaller than
|
|
1082
1418
|
reg->num_mem + 1 case. (POSIX API)
|
|
1083
1419
|
2004/06/14: [spec] (thanks Greg A. Woods)
|
|
1084
1420
|
set pmatch to NULL if nmatch is 0 in regexec(). (POSIX API)
|
|
@@ -1258,7 +1594,7 @@ History
|
|
|
1258
1594
|
2004/02/23: [new] support ISO-8859-10. (ONIG_ENCODING_ISO_8859_10)
|
|
1259
1595
|
2004/02/20: [bug] fix iso_8859_4_mbc_is_case_ambig().
|
|
1260
1596
|
2004/02/20: [new] support ISO-8859-9. (ONIG_ENCODING_ISO_8859_9)
|
|
1261
|
-
2004/02/19: [bug] correct ctype tables for ISO-8859-3, ISO-8859-4,
|
|
1597
|
+
2004/02/19: [bug] correct ctype tables for ISO-8859-3, ISO-8859-4,
|
|
1262
1598
|
ISO-8859-6, ISO-8859-7, ISO-8859-8, KOI8_R.
|
|
1263
1599
|
2004/02/18: [bug] wrong replaced name OnigSyntaxGnuOnigex.
|
|
1264
1600
|
2004/02/17: [spec] check capture status for empty infinite loop.
|
|
@@ -1431,7 +1767,7 @@ History
|
|
|
1431
1767
|
2003/11/11: [spec] add syntax op. REG_SYN_OP_VARIABLE_META_CHARS.
|
|
1432
1768
|
2003/11/11: [spec] rename REG_SYN_OP_ESC_CAPITAL_Q_QUOTE to
|
|
1433
1769
|
REG_SYN_OP2_ESC_CAPITAL_Q_QUOTE,
|
|
1434
|
-
REG_SYN_OP_QMARK_GROUP_EFFECT to
|
|
1770
|
+
REG_SYN_OP_QMARK_GROUP_EFFECT to
|
|
1435
1771
|
REG_SYN_OP2_QMARK_GROUP_EFFECT.
|
|
1436
1772
|
2003/11/06: [impl] define THREAD_PASS as rb_thread_schedule() in Ruby mode.
|
|
1437
1773
|
2003/11/05: [spec] add syntax behavior REG_SYN_WARN_REDUNDANT_NESTED_REPEAT.
|
|
@@ -1448,7 +1784,7 @@ History
|
|
|
1448
1784
|
2003/10/03: [bug] (thanks nobu) [ruby-dev:21472]
|
|
1449
1785
|
sub-anchor of optimization map info was wrong
|
|
1450
1786
|
in concat_left_node_opt_info().
|
|
1451
|
-
ex. /^(x?y)/ = "xy" fail.
|
|
1787
|
+
ex. /^(x?y)/ = "xy" fail.
|
|
1452
1788
|
|
|
1453
1789
|
2003/09/17: Version 1.9.4
|
|
1454
1790
|
|
|
@@ -1511,7 +1847,7 @@ History
|
|
|
1511
1847
|
2003/09/01: [dist] update doc/RE and doc/RE.ja.
|
|
1512
1848
|
2003/08/26: [bug] (thanks Guy Decoux)
|
|
1513
1849
|
should not double free node at the case TK_CC_CC_OPEN
|
|
1514
|
-
in parse_char_class().
|
|
1850
|
+
in parse_char_class().
|
|
1515
1851
|
|
|
1516
1852
|
2003/08/19: Version 1.9.3
|
|
1517
1853
|
|
|
@@ -1523,8 +1859,8 @@ History
|
|
|
1523
1859
|
REG_SYN_OP2_ATMARK_CAPTURE_HISTORY.
|
|
1524
1860
|
2003/08/18: [spec] (thanks nobu)
|
|
1525
1861
|
don't use IMPORT in oniguruma.h and onigposix.h.
|
|
1526
|
-
2003/08/18: [impl] (thanks nobu) change error output to stdout in testconv.rb.
|
|
1527
|
-
2003/08/18: [inst] (thanks nobu) lacked $(srcdir) in Makefile.in.
|
|
1862
|
+
2003/08/18: [impl] (thanks nobu) change error output to stdout in testconv.rb.
|
|
1863
|
+
2003/08/18: [inst] (thanks nobu) lacked $(srcdir) in Makefile.in.
|
|
1528
1864
|
2003/08/18: [bug] REG_MBLEN_TABLE[SJIS][0xFD-0xFF] should be 1.
|
|
1529
1865
|
2003/08/18: [bug] (thanks nobu) mbctab_sjis[0x80] should be 0.
|
|
1530
1866
|
2003/08/18: [bug] (thanks nobu)
|
|
@@ -1553,7 +1889,7 @@ History
|
|
|
1553
1889
|
2003/07/29: [new] add regex_get_encoding(), regex_get_options() and
|
|
1554
1890
|
regex_get_syntax().
|
|
1555
1891
|
2003/07/25: [spec] (thanks akr)
|
|
1556
|
-
change group(...) to shy-group(?:...) if named group is
|
|
1892
|
+
change group(...) to shy-group(?:...) if named group is
|
|
1557
1893
|
used in the pattern.
|
|
1558
1894
|
add REG_SYN_CAPTURE_ONLY_NAMED_GROUP.
|
|
1559
1895
|
2003/07/24: [spec] rename REG_OPTION_CAPTURE_ONLY_NAMED_GROUP to
|
|
@@ -1581,7 +1917,7 @@ History
|
|
|
1581
1917
|
set option status to effect memory in optimize_node_left().
|
|
1582
1918
|
2003/07/07: [impl] add opcode OP_ANYCHAR_ML, OP_ANYCHAR_ML_STAR and
|
|
1583
1919
|
OP_ANYCHAR_ML_START_PEEK_NEXT.
|
|
1584
|
-
2003/07/07: [bug] (thanks nobu) REG_MBLEN_TABLE[SJIS][0x80] should be 1.
|
|
1920
|
+
2003/07/07: [bug] (thanks nobu) REG_MBLEN_TABLE[SJIS][0x80] should be 1.
|
|
1585
1921
|
2003/07/07: [spec] rename REG_SYN_OP_QUOTE to REG_SYN_OP_ESC_Q_QUOTE.
|
|
1586
1922
|
|
|
1587
1923
|
2003/07/04: Version 1.9.1
|
|
@@ -1644,7 +1980,7 @@ History
|
|
|
1644
1980
|
2003/06/12: [spec] add syntax behavior REG_SYN_WARN_FOR_CC_OP_NOT_ESCAPEED.
|
|
1645
1981
|
2003/06/12: [spec] invalid POSIX bracket should be error. ex. [[:upper :]]
|
|
1646
1982
|
2003/06/11: [new] char-class in char-class (as Java(TM)).
|
|
1647
|
-
2003/06/11: [spec] change AND operator in char-class from &&[..] to &&.
|
|
1983
|
+
2003/06/11: [spec] change AND operator in char-class from &&[..] to &&.
|
|
1648
1984
|
2003/06/04: [spec] {n,m}+ should not be possessive operator.
|
|
1649
1985
|
ex. a{3}+ should be (?:a{3})+
|
|
1650
1986
|
2003/06/03: [bug] should compare strings with min-length in is_not_included().
|
|
@@ -1808,7 +2144,7 @@ History
|
|
|
1808
2144
|
2003/02/26: [impl] add -win option to testconv.rb.
|
|
1809
2145
|
2003/02/25: [spec] allow to assign same name to different group.
|
|
1810
2146
|
add OP_BACKREF_MULTI.
|
|
1811
|
-
2003/02/24: [impl] reduce redundant repeat of empty target.
|
|
2147
|
+
2003/02/24: [impl] reduce redundant repeat of empty target.
|
|
1812
2148
|
ex. /()*/ ==> /()?/, /()+/ ==> /()/, /(?:)+/ ==> //
|
|
1813
2149
|
2003/02/24: [impl] change condition in regex_is_allow_reverse_match().
|
|
1814
2150
|
2003/02/24: [impl] convert i(/../, ...) functions in testconv.rb.
|
|
@@ -1877,7 +2213,7 @@ History
|
|
|
1877
2213
|
2003/02/04: [bug] typo miss in regex_region_copy().
|
|
1878
2214
|
2003/02/04: [impl] change THREAD_PASS macro. (regint.h)
|
|
1879
2215
|
2003/02/04: [dist] add API document file doc/API.
|
|
1880
|
-
2003/02/04: [tune] if sub_anchor has ANCHOR_BEGIN_LINE then
|
|
2216
|
+
2003/02/04: [tune] if sub_anchor has ANCHOR_BEGIN_LINE then
|
|
1881
2217
|
set REG_OPTIMIZE_EXACT_BM in set_optimize_exact_info().
|
|
1882
2218
|
2003/02/04: [spec] reimplement regex_clone() and it is obsoleted.
|
|
1883
2219
|
2003/02/04: [bug] add REGERR_OVER_THREAD_PASS_LIMIT_COUNT
|
|
@@ -1898,7 +2234,7 @@ History
|
|
|
1898
2234
|
2003/01/31: [impl] rename TTRANS() to TOLOWER().
|
|
1899
2235
|
2003/01/30: [bug] .c.o --> .c.obj in win32\Makefile.
|
|
1900
2236
|
2003/01/30: [impl] add -DNOT_RUBY to Makefile.in.
|
|
1901
|
-
NOT_RUBY is
|
|
2237
|
+
NOT_RUBY is referred in regint.h for escape double
|
|
1902
2238
|
including config.h.
|
|
1903
2239
|
2003/01/30: [impl] when string hasn't case ambiguity, don't compile
|
|
1904
2240
|
to ignore case opcode.
|
|
@@ -1997,7 +2333,7 @@ History
|
|
|
1997
2333
|
2002/04/01: [dist] add COPYING.
|
|
1998
2334
|
2002/03/30: [spec] warn redundant nested repeat operator
|
|
1999
2335
|
in Ruby verbose mode. ex. (?:a*)?
|
|
2000
|
-
2002/03/30: [spec] nested repeat operator error check should be
|
|
2336
|
+
2002/03/30: [spec] nested repeat operator error check should be
|
|
2001
2337
|
same with GNU regex. (thanks Guy Decoux)
|
|
2002
2338
|
2002/03/30: [new] add \x{hexadecimal-wide-char}. (thanks matz)
|
|
2003
2339
|
2002/03/27: [bug] MBCTYPE_XXX symbol values should be same with GNU regex.
|
|
@@ -2060,7 +2396,7 @@ History
|
|
|
2060
2396
|
ex. /(?:abc){10}/
|
|
2061
2397
|
2002/03/06: [new] add a symbol REG_TRANSTABLE_USE_DEFAULT in regex.h.
|
|
2062
2398
|
2002/03/06: [impl] rename RegDefaultCharCode to RegDefaultCharEncoding.
|
|
2063
|
-
2002/03/06: [bug] if pattern has NULL(\000) char, infinite loop happens
|
|
2399
|
+
2002/03/06: [bug] if pattern has NULL(\000) char, infinite loop happens
|
|
2064
2400
|
in ScanMakeNode(). (beware of strchr(). thanks Nobu)
|
|
2065
2401
|
2002/03/06: [bug] range argument of ForwardSearchRange() is wrong.
|
|
2066
2402
|
ex. /\A.a/, /\G.a/ mismatched with "aa". (thanks Nobu)
|
|
@@ -2135,4 +2471,13 @@ cvs rtag "VERSION_X_X_X" oniguruma
|
|
|
2135
2471
|
age: number of supported previous interfaces
|
|
2136
2472
|
(if current only supported then age == 0)
|
|
2137
2473
|
|
|
2474
|
+
|
|
2475
|
+
<add SHA256 checksum>
|
|
2476
|
+
MacOS X
|
|
2477
|
+
$ shasum -a 256 -b onig-X.Y.Z.tar.gz > onig-X.Y.Z.tar.gz.sha256
|
|
2478
|
+
|
|
2479
|
+
<check SHA256 checksum>
|
|
2480
|
+
MacOS X
|
|
2481
|
+
$ shasum -a 256 -c onig-X.Y.Z.tar.gz.sha256
|
|
2482
|
+
|
|
2138
2483
|
//END
|
|
@@ -4,14 +4,18 @@ ACLOCAL_AMFLAGS = -I m4
|
|
|
4
4
|
|
|
5
5
|
SUBDIRS = src test sample
|
|
6
6
|
|
|
7
|
-
EXTRA_DIST = oniguruma.pc.in HISTORY
|
|
8
|
-
index.html index_ja.html \
|
|
9
|
-
CMakeLists.txt
|
|
10
|
-
src/config.h.cmake.in \
|
|
7
|
+
EXTRA_DIST = oniguruma.pc.in HISTORY README_japanese README.md \
|
|
8
|
+
index.html index_ja.html make_win.bat \
|
|
9
|
+
CMakeLists.txt oniguruma.pc.cmake.in cmake/Config.cmake.in \
|
|
10
|
+
onig-config.cmake.in src/config.h.cmake.in \
|
|
11
11
|
doc/API doc/API.ja doc/RE doc/RE.ja doc/FAQ doc/FAQ.ja \
|
|
12
|
-
doc/
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
doc/CALLOUTS.BUILTIN doc/CALLOUTS.BUILTIN.ja \
|
|
13
|
+
doc/CALLOUTS.API doc/CALLOUTS.API.ja \
|
|
14
|
+
doc/SYNTAX.md doc/UNICODE_PROPERTIES \
|
|
15
|
+
src/Makefile.windows src/config.h.windows.in \
|
|
16
|
+
src/config.h.win32 src/config.h.win64 \
|
|
17
|
+
test/test.sh test/CMakeLists.txt \
|
|
18
|
+
windows/testc.c windows/CMakeLists.txt
|
|
15
19
|
|
|
16
20
|
bin_SCRIPTS = onig-config
|
|
17
21
|
|
|
@@ -31,3 +35,53 @@ oniguruma.pc: $(srcdir)/oniguruma.pc.in Makefile
|
|
|
31
35
|
|
|
32
36
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
33
37
|
pkgconfig_DATA = oniguruma.pc
|
|
38
|
+
DISTCLEANFILES = oniguruma.pc
|
|
39
|
+
|
|
40
|
+
all-test:
|
|
41
|
+
cd test; make test
|
|
42
|
+
|
|
43
|
+
archive:
|
|
44
|
+
git archive --format=tar --prefix=oniguruma/ HEAD | gzip > ../oniguruma-archive.tar.gz
|
|
45
|
+
|
|
46
|
+
tar:
|
|
47
|
+
cd ..; tar cvf oniguruma-`date +%Y%m%d`.tar oniguruma; gzip oniguruma-`date +%Y%m%d`.tar
|
|
48
|
+
|
|
49
|
+
debug:
|
|
50
|
+
make clean
|
|
51
|
+
./configure CFLAGS="-O0 -g"
|
|
52
|
+
make
|
|
53
|
+
|
|
54
|
+
debug_out:
|
|
55
|
+
make clean
|
|
56
|
+
./configure CFLAGS="-O0 -g -DONIG_DEBUG_PARSE -DONIG_DEBUG_COMPILE"
|
|
57
|
+
make
|
|
58
|
+
|
|
59
|
+
sanitize:
|
|
60
|
+
make clean
|
|
61
|
+
./configure CFLAGS="-O -g -fsanitize=address" LDFLAGS="-fsanitize=address"
|
|
62
|
+
make
|
|
63
|
+
make all-test
|
|
64
|
+
|
|
65
|
+
debug_out_sanitize:
|
|
66
|
+
make clean
|
|
67
|
+
./configure CFLAGS="-O0 -g -fsanitize=address -DONIG_DEBUG_PARSE -DONIG_DEBUG_COMPILE" LDFLAGS="-fsanitize=address"
|
|
68
|
+
make
|
|
69
|
+
|
|
70
|
+
cov:
|
|
71
|
+
make lcov-clear
|
|
72
|
+
cd test; make CFLAGS="--coverage" test
|
|
73
|
+
make lcov
|
|
74
|
+
|
|
75
|
+
gcov:
|
|
76
|
+
make CFLAGS="--coverage"
|
|
77
|
+
|
|
78
|
+
lcov:
|
|
79
|
+
lcov -c -d src/.libs -o coverage.info
|
|
80
|
+
genhtml -o coverage coverage.info
|
|
81
|
+
|
|
82
|
+
lcov-clear:
|
|
83
|
+
lcov -z -d .
|
|
84
|
+
|
|
85
|
+
cov-clean: clean
|
|
86
|
+
rm -rf coverage coverage.info
|
|
87
|
+
find . -name '*.gcno' | xargs rm -f
|