| 1 |
ChangeLog for PCRE |
ChangeLog for PCRE |
| 2 |
------------------ |
------------------ |
| 3 |
|
|
| 4 |
Version 7.1 12-Mar-07 |
Version 7.2 19-June-07 |
| 5 |
|
--------------------- |
| 6 |
|
|
| 7 |
|
1. If the fr_FR locale cannot be found for test 3, try the "french" locale, |
| 8 |
|
which is apparently normally available under Windows. |
| 9 |
|
|
| 10 |
|
2. Re-jig the pcregrep tests with different newline settings in an attempt |
| 11 |
|
to make them independent of the local environment's newline setting. |
| 12 |
|
|
| 13 |
|
3. Add code to configure.ac to remove -g from the CFLAGS default settings. |
| 14 |
|
|
| 15 |
|
4. Some of the "internals" tests were previously cut out when the link size |
| 16 |
|
was not 2, because the output contained actual offsets. The recent new |
| 17 |
|
"Z" feature of pcretest means that these can be cut out, making the tests |
| 18 |
|
usable with all link sizes. |
| 19 |
|
|
| 20 |
|
5. Implemented Stan Switzer's goto replacement for longjmp() when not using |
| 21 |
|
stack recursion. This gives a massive performance boost under BSD, but just |
| 22 |
|
a small improvement under Linux. However, it saves one field in the frame |
| 23 |
|
in all cases. |
| 24 |
|
|
| 25 |
|
6. Added more features from the forthcoming Perl 5.10: |
| 26 |
|
|
| 27 |
|
(a) (?-n) (where n is a string of digits) is a relative subroutine or |
| 28 |
|
recursion call. It refers to the nth most recently opened parentheses. |
| 29 |
|
|
| 30 |
|
(b) (?+n) is also a relative subroutine call; it refers to the nth next |
| 31 |
|
to be opened parentheses. |
| 32 |
|
|
| 33 |
|
(c) Conditions that refer to capturing parentheses can be specified |
| 34 |
|
relatively, for example, (?(-2)... or (?(+3)... |
| 35 |
|
|
| 36 |
|
(d) \K resets the start of the current match so that everything before |
| 37 |
|
is not part of it. |
| 38 |
|
|
| 39 |
|
(e) \k{name} is synonymous with \k<name> and \k'name' (.NET compatible). |
| 40 |
|
|
| 41 |
|
(f) \g{name} is another synonym - part of Perl 5.10's unification of |
| 42 |
|
reference syntax. |
| 43 |
|
|
| 44 |
|
(g) (?| introduces a group in which the numbering of parentheses in each |
| 45 |
|
alternative starts with the same number. |
| 46 |
|
|
| 47 |
|
(h) \h, \H, \v, and \V match horizontal and vertical whitespace. |
| 48 |
|
|
| 49 |
|
7. Added two new calls to pcre_fullinfo(): PCRE_INFO_OKPARTIAL and |
| 50 |
|
PCRE_INFO_JCHANGED. |
| 51 |
|
|
| 52 |
|
8. A pattern such as (.*(.)?)* caused pcre_exec() to fail by either not |
| 53 |
|
terminating or by crashing. Diagnosed by Viktor Griph; it was in the code |
| 54 |
|
for detecting groups that can match an empty string. |
| 55 |
|
|
| 56 |
|
9. A pattern with a very large number of alternatives (more than several |
| 57 |
|
hundred) was running out of internal workspace during the pre-compile |
| 58 |
|
phase, where pcre_compile() figures out how much memory will be needed. A |
| 59 |
|
bit of new cunning has reduced the workspace needed for groups with |
| 60 |
|
alternatives. The 1000-alternative test pattern now uses 12 bytes of |
| 61 |
|
workspace instead of running out of the 4096 that are available. |
| 62 |
|
|
| 63 |
|
10. Inserted some missing (unsigned int) casts to get rid of compiler warnings. |
| 64 |
|
|
| 65 |
|
11. Applied patch from Google to remove an optimization that didn't quite work. |
| 66 |
|
The report of the bug said: |
| 67 |
|
|
| 68 |
|
pcrecpp::RE("a*").FullMatch("aaa") matches, while |
| 69 |
|
pcrecpp::RE("a*?").FullMatch("aaa") does not, and |
| 70 |
|
pcrecpp::RE("a*?\\z").FullMatch("aaa") does again. |
| 71 |
|
|
| 72 |
|
12. If \p or \P was used in non-UTF-8 mode on a character greater than 127 |
| 73 |
|
it matched the wrong number of bytes. |
| 74 |
|
|
| 75 |
|
|
| 76 |
|
Version 7.1 24-Apr-07 |
| 77 |
--------------------- |
--------------------- |
| 78 |
|
|
| 79 |
1. Applied Bob Rossi and Daniel G's patches to convert the build system to one |
1. Applied Bob Rossi and Daniel G's patches to convert the build system to one |