diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-05-02 17:29:00 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-05-02 17:29:00 +0200 |
commit | 7f5dccbe5fee224ecfeceec6e206cca67ad58452 (patch) | |
tree | 2891c20f6f89a6a9ca7a967ca2245c0f8370d5b4 /README.md | |
parent | fd4ff4e58174679784d7698880717eefc9399ba7 (diff) | |
parent | 83ea1be016fd5fc27ee721cf62a18716675815dc (diff) |
Update upstream source from tag 'upstream/6.8.2'
Update to upstream version '6.8.2'
with Debian dir 36d9b721af0175dd84faa77cc24739097d03e9bb
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 22 |
1 files changed, 16 insertions, 6 deletions
@@ -3,11 +3,6 @@ Oniguruma https://github.com/kkos/oniguruma -FIXED Security Issues: --------------------------- - **CVE-2017-9224, CVE-2017-9225, CVE-2017-9226** - **CVE-2017-9227, CVE-2017-9228, CVE-2017-9229** - Oniguruma is a modern and flexible regular expressions library. It encompasses features from different regular expression implementations that traditionally exist in different languages. It comes close to @@ -39,6 +34,14 @@ Supported character encodings: * CP1251: contributed by Byte +New feature of version 6.8.2 +-------------------------- + +* Fix: #80 UChar in header causes issue +* NEW API: onig_set_callout_user_data_of_match_param() (* omission in 6.8.0) +* add doc/CALLOUTS.API and doc/CALLOUTS.API.ja + + New feature of version 6.8.1 -------------------------- @@ -51,9 +54,10 @@ New feature of version 6.8.0 * Retry-limit-in-match function enabled by default * NEW: configure option --enable-posix-api=no (* enabled by default) * NEW API: onig_search_with_param(), onig_match_with_param() -* NEW: Callouts of contents (?{...contents...}) (?{...}\[X<>]) (?{{....}}) +* NEW: Callouts of contents (?{...contents...}) (?{...}\[tag]\[X<>]) (?{{...}}) * NEW: Callouts of name (*name) (*name\[tag]{args...}) * NEW: Builtin callouts (*FAIL) (*MISMATCH) (*ERROR{n}) (*COUNT) (*MAX{n}) etc.. +* Examples of Callouts program: [callout.c](sample/callout.c), [count.c](sample/count.c), [echo.c](sample/echo.c) (* Callout function API is experimental level and isn't fixed definitely yet. Undocumented now) @@ -107,6 +111,12 @@ New feature of version 6.3.0 -------------------------- * NEW: octal codepoint \o{.....} +* Fixed CVE-2017-9224 +* Fixed CVE-2017-9225 +* Fixed CVE-2017-9226 +* Fixed CVE-2017-9227 +* Fixed CVE-2017-9228 +* Fixed CVE-2017-9229 New feature of version 6.1.2 |