| 1 |
ChangeLog for PCRE |
ChangeLog for PCRE |
| 2 |
------------------ |
------------------ |
| 3 |
|
|
| 4 |
Version 8.21 05-Dec-2011 |
Version 8.31 |
| 5 |
|
----------------------------- |
| 6 |
|
|
| 7 |
|
1. Fixing a wrong JIT test case and some compiler warnings. |
| 8 |
|
|
| 9 |
|
2. Removed a bashism from the RunTest script. |
| 10 |
|
|
| 11 |
|
3. Add a cast to pcre_exec.c to fix the warning "unary minus operator applied |
| 12 |
|
to unsigned type, result still unsigned" that was given by an MS compiler |
| 13 |
|
on encountering the code "-sizeof(xxx)". |
| 14 |
|
|
| 15 |
|
4. Partial matching support is added to the JIT compiler. |
| 16 |
|
|
| 17 |
|
5. Fixed several bugs concerned with partial matching of items that consist |
| 18 |
|
of more than one character: |
| 19 |
|
|
| 20 |
|
(a) /^(..)\1/ did not partially match "aba" because checking references was |
| 21 |
|
done on an "all or nothing" basis. This also applied to repeated |
| 22 |
|
references. |
| 23 |
|
|
| 24 |
|
(b) \R did not give a hard partial match if \r was found at the end of the |
| 25 |
|
subject. |
| 26 |
|
|
| 27 |
|
(c) \X did not give a hard partial match after matching one or more |
| 28 |
|
characters at the end of the subject. |
| 29 |
|
|
| 30 |
|
(d) When newline was set to CRLF, a pattern such as /a$/ did not recognize |
| 31 |
|
a partial match for the string "\r". |
| 32 |
|
|
| 33 |
|
(e) When newline was set to CRLF, the metacharacter "." did not recognize |
| 34 |
|
a partial match for a CR character at the end of the subject string. |
| 35 |
|
|
| 36 |
|
6. When matching is performed using JIT-compiled code, the flag bit |
| 37 |
|
PCRE_EXTRA_USED_JIT is set in the pcre_extra block and can be tested by the |
| 38 |
|
caller. This bit is checked by pcretest if JIT is requested by /S++ or -s++ |
| 39 |
|
(instead of just /S+ or -s+) and the text "(JIT)" added to the output if |
| 40 |
|
the bit is set. |
| 41 |
|
|
| 42 |
|
7. Individual JIT compile options can be set in pcretest by following -s+[+] |
| 43 |
|
or /S+[+] with a digit between 1 and 7. |
| 44 |
|
|
| 45 |
|
8. OP_NOT now supports any UTF character not just single character ones. |
| 46 |
|
|
| 47 |
|
|
| 48 |
|
Version 8.30 04-February-2012 |
| 49 |
|
----------------------------- |
| 50 |
|
|
| 51 |
|
1. Renamed "isnumber" as "is_a_number" because in some Mac environments this |
| 52 |
|
name is defined in ctype.h. |
| 53 |
|
|
| 54 |
|
2. Fixed a bug in fixed-length calculation for lookbehinds that would show up |
| 55 |
|
only in quite long subpatterns. |
| 56 |
|
|
| 57 |
|
3. Removed the function pcre_info(), which has been obsolete and deprecated |
| 58 |
|
since it was replaced by pcre_fullinfo() in February 2000. |
| 59 |
|
|
| 60 |
|
4. For a non-anchored pattern, if (*SKIP) was given with a name that did not |
| 61 |
|
match a (*MARK), and the match failed at the start of the subject, a |
| 62 |
|
reference to memory before the start of the subject could occur. This bug |
| 63 |
|
was introduced by fix 17 of release 8.21. |
| 64 |
|
|
| 65 |
|
5. A reference to an unset group with zero minimum repetition was giving |
| 66 |
|
totally wrong answers (in non-JavaScript-compatibility mode). For example, |
| 67 |
|
/(another)?(\1?)test/ matched against "hello world test". This bug was |
| 68 |
|
introduced in release 8.13. |
| 69 |
|
|
| 70 |
|
6. Add support for 16-bit character strings (a large amount of work involving |
| 71 |
|
many changes and refactorings). |
| 72 |
|
|
| 73 |
|
7. RunGrepTest failed on msys because \r\n was replaced by whitespace when the |
| 74 |
|
command "pattern=`printf 'xxx\r\njkl'`" was run. The pattern is now taken |
| 75 |
|
from a file. |
| 76 |
|
|
| 77 |
|
8. Ovector size of 2 is also supported by JIT based pcre_exec (the ovector size |
| 78 |
|
rounding is not applied in this particular case). |
| 79 |
|
|
| 80 |
|
9. The invalid Unicode surrogate codepoints U+D800 to U+DFFF are now rejected |
| 81 |
|
if they appear, or are escaped, in patterns. |
| 82 |
|
|
| 83 |
|
10. Get rid of a number of -Wunused-but-set-variable warnings. |
| 84 |
|
|
| 85 |
|
11. The pattern /(?=(*:x))(q|)/ matches an empty string, and returns the mark |
| 86 |
|
"x". The similar pattern /(?=(*:x))((*:y)q|)/ did not return a mark at all. |
| 87 |
|
Oddly, Perl behaves the same way. PCRE has been fixed so that this pattern |
| 88 |
|
also returns the mark "x". This bug applied to capturing parentheses, |
| 89 |
|
non-capturing parentheses, and atomic parentheses. It also applied to some |
| 90 |
|
assertions. |
| 91 |
|
|
| 92 |
|
12. Stephen Kelly's patch to CMakeLists.txt allows it to parse the version |
| 93 |
|
information out of configure.ac instead of relying on pcre.h.generic, which |
| 94 |
|
is not stored in the repository. |
| 95 |
|
|
| 96 |
|
13. Applied Dmitry V. Levin's patch for a more portable method for linking with |
| 97 |
|
-lreadline. |
| 98 |
|
|
| 99 |
|
14. ZH added PCRE_CONFIG_JITTARGET; added its output to pcretest -C. |
| 100 |
|
|
| 101 |
|
15. Applied Graycode's patch to put the top-level frame on the stack rather |
| 102 |
|
than the heap when not using the stack for recursion. This gives a |
| 103 |
|
performance improvement in many cases when recursion is not deep. |
| 104 |
|
|
| 105 |
|
16. Experimental code added to "pcretest -C" to output the stack frame size. |
| 106 |
|
|
| 107 |
|
|
| 108 |
|
Version 8.21 12-Dec-2011 |
| 109 |
------------------------ |
------------------------ |
| 110 |
|
|
| 111 |
1. Updating the JIT compiler. |
1. Updating the JIT compiler. |
| 207 |
25. The CheckMan script was not being included in the distribution. Also, added |
25. The CheckMan script was not being included in the distribution. Also, added |
| 208 |
an explicit "perl" to run Perl scripts from the PrepareRelease script |
an explicit "perl" to run Perl scripts from the PrepareRelease script |
| 209 |
because this is reportedly needed in Windows. |
because this is reportedly needed in Windows. |
| 210 |
|
|
| 211 |
26. If study data was being save in a file and studying had not found a set of |
26. If study data was being save in a file and studying had not found a set of |
| 212 |
"starts with" bytes for the pattern, the data written to the file (though |
"starts with" bytes for the pattern, the data written to the file (though |
| 213 |
never used) was taken from uninitialized memory and so caused valgrind to |
never used) was taken from uninitialized memory and so caused valgrind to |
| 214 |
complain. |
complain. |
| 215 |
|
|
| 216 |
27. Updated RunTest.bat as provided by Sheri Pierce. |
27. Updated RunTest.bat as provided by Sheri Pierce. |
| 217 |
|
|
| 218 |
28. Fixed a possible uninitialized memory bug in pcre_jit_compile.c. |
28. Fixed a possible uninitialized memory bug in pcre_jit_compile.c. |
| 219 |
|
|