| 1 |
ChangeLog for PCRE |
ChangeLog for PCRE |
| 2 |
------------------ |
------------------ |
| 3 |
|
|
| 4 |
Version 8.20 23-Sep-2011 |
Version 8.21 |
| 5 |
|
------------ |
| 6 |
|
|
| 7 |
|
1. Updating the JIT compiler. |
| 8 |
|
|
| 9 |
|
|
| 10 |
|
Version 8.20 21-Oct-2011 |
| 11 |
------------------------ |
------------------------ |
| 12 |
|
|
| 13 |
1. Change 37 of 8.13 broke patterns like [:a]...[b:] because it thought it had |
1. Change 37 of 8.13 broke patterns like [:a]...[b:] because it thought it had |
| 58 |
so that no minimum is registered for a pattern that contains *ACCEPT. |
so that no minimum is registered for a pattern that contains *ACCEPT. |
| 59 |
|
|
| 60 |
8. If (*THEN) was present in the first (true) branch of a conditional group, |
8. If (*THEN) was present in the first (true) branch of a conditional group, |
| 61 |
it was not handled as intended. |
it was not handled as intended. [But see 16 below.] |
| 62 |
|
|
| 63 |
9. Replaced RunTest.bat with the much improved version provided by Sheri |
9. Replaced RunTest.bat and CMakeLists.txt with improved versions provided by |
| 64 |
Pierce. |
Sheri Pierce. |
| 65 |
|
|
| 66 |
10. A pathological pattern such as /(*ACCEPT)a/ was miscompiled, thinking that |
10. A pathological pattern such as /(*ACCEPT)a/ was miscompiled, thinking that |
| 67 |
the first byte in a match must be "a". |
the first byte in a match must be "a". |
| 71 |
pattern contains any instances of (*THEN). If it does not, the old |
pattern contains any instances of (*THEN). If it does not, the old |
| 72 |
optimizations are restored. It would be nice to do this on a per-group |
optimizations are restored. It would be nice to do this on a per-group |
| 73 |
basis, but at the moment that is not feasible. |
basis, but at the moment that is not feasible. |
| 74 |
|
|
| 75 |
12. In some environments, the output of pcretest -C is CRLF terminated. This |
12. In some environments, the output of pcretest -C is CRLF terminated. This |
| 76 |
broke RunTest's code that checks for the link size. A single white space |
broke RunTest's code that checks for the link size. A single white space |
| 77 |
after the value is now allowed for. |
character after the value is now allowed for. |
| 78 |
|
|
| 79 |
13. RunTest now checks for the "fr" locale as well as for "fr_FR" and "french". |
13. RunTest now checks for the "fr" locale as well as for "fr_FR" and "french". |
| 80 |
For "fr", it uses the Windows-specific input and output files. |
For "fr", it uses the Windows-specific input and output files. |
| 81 |
|
|
| 82 |
14. If (*THEN) appeared in a group that was called recursively or as a |
14. If (*THEN) appeared in a group that was called recursively or as a |
| 83 |
subroutine, it did not work as intended. |
subroutine, it did not work as intended. [But see next item.] |
| 84 |
|
|
| 85 |
|
15. Consider the pattern /A (B(*THEN)C) | D/ where A, B, C, and D are complex |
| 86 |
|
pattern fragments (but not containing any | characters). If A and B are |
| 87 |
|
matched, but there is a failure in C so that it backtracks to (*THEN), PCRE |
| 88 |
|
was behaving differently to Perl. PCRE backtracked into A, but Perl goes to |
| 89 |
|
D. In other words, Perl considers parentheses that do not contain any | |
| 90 |
|
characters to be part of a surrounding alternative, whereas PCRE was |
| 91 |
|
treading (B(*THEN)C) the same as (B(*THEN)C|(*FAIL)) -- which Perl handles |
| 92 |
|
differently. PCRE now behaves in the same way as Perl, except in the case |
| 93 |
|
of subroutine/recursion calls such as (?1) which have in any case always |
| 94 |
|
been different (but PCRE had them first :-). |
| 95 |
|
|
| 96 |
|
16. Related to 15 above: Perl does not treat the | in a conditional group as |
| 97 |
|
creating alternatives. Such a group is treated in the same way as an |
| 98 |
|
ordinary group without any | characters when processing (*THEN). PCRE has |
| 99 |
|
been changed to match Perl's behaviour. |
| 100 |
|
|
| 101 |
|
17. If a user had set PCREGREP_COLO(U)R to something other than 1:31, the |
| 102 |
|
RunGrepTest script failed. |
| 103 |
|
|
| 104 |
|
18. Change 22 for version 13 caused atomic groups to use more stack. This is |
| 105 |
|
inevitable for groups that contain captures, but it can lead to a lot of |
| 106 |
|
stack use in large patterns. The old behaviour has been restored for atomic |
| 107 |
|
groups that do not contain any capturing parentheses. |
| 108 |
|
|
| 109 |
|
19. If the PCRE_NO_START_OPTIMIZE option was set for pcre_compile(), it did not |
| 110 |
|
suppress the check for a minimum subject length at run time. (If it was |
| 111 |
|
given to pcre_exec() or pcre_dfa_exec() it did work.) |
| 112 |
|
|
| 113 |
|
20. Fixed an ASCII-dependent infelicity in pcretest that would have made it |
| 114 |
|
fail to work when decoding hex characters in data strings in EBCDIC |
| 115 |
|
environments. |
| 116 |
|
|
| 117 |
|
21. It appears that in at least one Mac OS environment, the isxdigit() function |
| 118 |
|
is implemented as a macro that evaluates to its argument more than once, |
| 119 |
|
contravening the C 90 Standard (I haven't checked a later standard). There |
| 120 |
|
was an instance in pcretest which caused it to go wrong when processing |
| 121 |
|
\x{...} escapes in subject strings. The has been rewritten to avoid using |
| 122 |
|
things like p++ in the argument of isxdigit(). |
| 123 |
|
|
| 124 |
|
|
| 125 |
Version 8.13 16-Aug-2011 |
Version 8.13 16-Aug-2011 |