| 1 |
ChangeLog for PCRE |
ChangeLog for PCRE |
| 2 |
------------------ |
------------------ |
| 3 |
|
|
| 4 |
Version 8.21 05-Dec-2011 |
Version 8.30 |
| 5 |
|
------------ |
| 6 |
|
|
| 7 |
|
1. Renamed "isnumber" as "is_a_number" because in some Mac environments this |
| 8 |
|
name is defined in ctype.h. |
| 9 |
|
|
| 10 |
|
2. Fixed a bug in fixed-length calculation for lookbehinds that would show up |
| 11 |
|
only in quite long subpatterns. |
| 12 |
|
|
| 13 |
|
3. Removed the function pcre_info(), which has been obsolete and deprecated |
| 14 |
|
since it was replaced by pcre_fullinfo() in February 2000. |
| 15 |
|
|
| 16 |
|
4. For a non-anchored pattern, if (*SKIP) was given with a name that did not |
| 17 |
|
match a (*MARK), and the match failed at the start of the subject, a |
| 18 |
|
reference to memory before the start of the subject could occur. This bug |
| 19 |
|
was introduced by fix 17 of release 8.21. |
| 20 |
|
|
| 21 |
|
5. A reference to an unset group with zero minimum repetition was giving |
| 22 |
|
totally wrong answers (in non-JavaScript-compatibility mode). For example, |
| 23 |
|
/(another)?(\1?)test/ matched against "hello world test". This bug was |
| 24 |
|
introduced in release 8.13. |
| 25 |
|
|
| 26 |
|
6. Add support for 16-bit character strings (a large amount of work involving |
| 27 |
|
many changes and refactorings). |
| 28 |
|
|
| 29 |
|
7. RunGrepTest failed on msys because \r\n was replaced by whitespace when the |
| 30 |
|
command "pattern=`printf 'xxx\r\njkl'`" was run. The pattern is now taken |
| 31 |
|
from a file. |
| 32 |
|
|
| 33 |
|
8. Ovector size of 2 is also supported by JIT based pcre_exec (the ovector size |
| 34 |
|
rounding is not applied in this particular case). |
| 35 |
|
|
| 36 |
|
9. The invalid Unicode surrogate codepoints U+D800 to U+DFFF are now rejected |
| 37 |
|
if they appear, or are escaped, in patterns. |
| 38 |
|
|
| 39 |
|
10. Get rid of a number of -Wunused-but-set-variable warnings. |
| 40 |
|
|
| 41 |
|
11. The pattern /(?=(*:x))(q|)/ matches an empty string, and returns the mark |
| 42 |
|
"x". The similar pattern /(?=(*:x))((*:y)q|)/ did not return a mark at all. |
| 43 |
|
Oddly, Perl behaves the same way. PCRE has been fixed so that this pattern |
| 44 |
|
also returns the mark "x". This bug applied to capturing parentheses, |
| 45 |
|
non-capturing parentheses, and atomic parentheses. It also applied to some |
| 46 |
|
assertions. |
| 47 |
|
|
| 48 |
|
12. Stephen Kelly's patch to CMakeLists.txt allows it to parse the version |
| 49 |
|
information out of configure.ac instead of relying on pcre.h.generic, which |
| 50 |
|
is not stored in the repository. |
| 51 |
|
|
| 52 |
|
13. Applied Dmitry V. Levin's patch for a more portable method for linking with |
| 53 |
|
-lreadline. |
| 54 |
|
|
| 55 |
|
14. ZH added PCRE_CONFIG_JITTARGET; added its output to pcretest -C. |
| 56 |
|
|
| 57 |
|
15. Applied Graycode's patch to put the top-level frame on the stack rather |
| 58 |
|
than the heap when not using the stack for recursion. This gives a |
| 59 |
|
performance improvement in many cases when recursion is not deep. |
| 60 |
|
|
| 61 |
|
|
| 62 |
|
Version 8.21 12-Dec-2011 |
| 63 |
------------------------ |
------------------------ |
| 64 |
|
|
| 65 |
1. Updating the JIT compiler. |
1. Updating the JIT compiler. |
| 161 |
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 |
| 162 |
an explicit "perl" to run Perl scripts from the PrepareRelease script |
an explicit "perl" to run Perl scripts from the PrepareRelease script |
| 163 |
because this is reportedly needed in Windows. |
because this is reportedly needed in Windows. |
| 164 |
|
|
| 165 |
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 |
| 166 |
"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 |
| 167 |
never used) was taken from uninitialized memory and so caused valgrind to |
never used) was taken from uninitialized memory and so caused valgrind to |
| 168 |
complain. |
complain. |
| 169 |
|
|
| 170 |
|
27. Updated RunTest.bat as provided by Sheri Pierce. |
| 171 |
|
|
| 172 |
|
28. Fixed a possible uninitialized memory bug in pcre_jit_compile.c. |
| 173 |
|
|
| 174 |
|
29. Computation of memory usage for the table of capturing group names was |
| 175 |
|
giving an unnecessarily large value. |
| 176 |
|
|
| 177 |
|
|
| 178 |
Version 8.20 21-Oct-2011 |
Version 8.20 21-Oct-2011 |