diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-09-01 18:53:26 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-09-01 18:53:26 +0200 |
commit | d077404170160a6936e448a40cbb74a95d19ff3c (patch) | |
tree | 1ab0d5a03a46659e39de2e611e89642d9de5867b /README.md | |
parent | 6b31069db6198cd50cc17f2c63917dd2df5775fb (diff) | |
parent | b62fc1758f4ae8459e6d7e8386ca547274b4daa2 (diff) |
Updated version 6.6.1 from 'upstream/6.6.1'
with Debian dir 43da96f2ad45c214a26fc8b155a175b1c828e493
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 29 |
1 files changed, 22 insertions, 7 deletions
@@ -5,8 +5,8 @@ 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 + **CVE-2017-9224, CVE-2017-9225, CVE-2017-9226** + **CVE-2017-9227, CVE-2017-9228, CVE-2017-9229** Oniguruma is a regular expressions library. @@ -26,6 +26,21 @@ Supported character encodings: * CP1251: contributed by Byte +New feature of version 6.6.1 +-------------------------- + +* Fix definition of \X + + +New feature of version 6.6.0 +-------------------------- + +* NEW: ASCII only mode options for character type/property (?WDSP) +* NEW: Extended Grapheme Cluster boundary \y, \Y (*original) +* NEW: Extended Grapheme Cluster \X +* Range-clear (Absent-clear) operator restores previous range in backtrack. + + New feature of version 6.5.0 -------------------------- @@ -33,24 +48,24 @@ New feature of version 6.5.0 * NEW: \R (general newline) \N (no newline) * NEW: \O (true anychar) * NEW: if-then-else syntax (?(...)...\|...) -* NEW: Backreference validity checker (*original) +* NEW: Backreference validity checker (?(xxx)) (*original) * NEW: Absent repeater (?~absent) * NEW: Absent expression (?~|absent|expr) (*original) -* NEW: Absent range cutter (?~|absent) (*original) +* NEW: Absent stopper (?~|absent) (*original) New feature of version 6.4.0 -------------------------- * Fix fatal problem of endless repeat on Windows -* NEW: call zero (call the total regexp) -* NEW: relative backref and relative call by positive number +* NEW: call zero (call the total regexp) \g<0> +* NEW: relative backref/call by positive number \k<+n>, \g<+n> New feature of version 6.3.0 -------------------------- -* NEW SYNTAX: escape-o-brace for octal codepoint. +* NEW: octal codepoint \o{.....} New feature of version 6.1.2 |