| 1 |
ChangeLog for PCRE |
ChangeLog for PCRE |
| 2 |
------------------ |
------------------ |
| 3 |
|
|
| 4 |
Version 7.4 10-Sep-07 |
Version 7.5 12-Nov-07 |
| 5 |
|
--------------------- |
| 6 |
|
|
| 7 |
|
1. Applied a patch from Craig: "This patch makes it possible to 'ignore' |
| 8 |
|
values in parens when parsing an RE using the C++ wrapper." |
| 9 |
|
|
| 10 |
|
2. Negative specials like \S did not work in character classes in UTF-8 mode. |
| 11 |
|
Characters greater than 255 were excluded from the class instead of being |
| 12 |
|
included. |
| 13 |
|
|
| 14 |
|
3. The same bug as (2) above applied to negated POSIX classes such as |
| 15 |
|
[:^space:]. |
| 16 |
|
|
| 17 |
|
4. PCRECPP_STATIC was referenced in pcrecpp_internal.h, but nowhere was it |
| 18 |
|
defined or documented. It seems to have been a typo for PCRE_STATIC, so |
| 19 |
|
I have changed it. |
| 20 |
|
|
| 21 |
|
5. The construct (?&) was not diagnosed as a syntax error (it referenced the |
| 22 |
|
first named subpattern) and a construct such as (?&a) would reference the |
| 23 |
|
first named subpattern whose name started with "a" (in other words, the |
| 24 |
|
length check was missing). Both these problems are fixed. "Subpattern name |
| 25 |
|
expected" is now given for (?&) (a zero-length name), and this patch also |
| 26 |
|
makes it give the same error for \k'' (previously it complained that that |
| 27 |
|
was a reference to a non-existent subpattern). |
| 28 |
|
|
| 29 |
|
6. The erroneous patterns (?+-a) and (?-+a) give different error messages; |
| 30 |
|
this is right because (?- can be followed by option settings as well as by |
| 31 |
|
digits. I have, however, made the messages clearer. |
| 32 |
|
|
| 33 |
|
7. Patterns such as (?(1)a|b) (a pattern that contains fewer subpatterns |
| 34 |
|
than the number used in the conditional) now cause a compile-time error. |
| 35 |
|
This is actually not compatible with Perl, which accepts such patterns, but |
| 36 |
|
treats the conditional as always being FALSE (as PCRE used to), but it |
| 37 |
|
seems to me that giving a diagnostic is better. |
| 38 |
|
|
| 39 |
|
8. Change "alphameric" to the more common word "alphanumeric" in comments |
| 40 |
|
and messages. |
| 41 |
|
|
| 42 |
|
9. Fix two occurrences of "backslash" in comments that should have been |
| 43 |
|
"backspace". |
| 44 |
|
|
| 45 |
|
|
| 46 |
|
Version 7.4 21-Sep-07 |
| 47 |
--------------------- |
--------------------- |
| 48 |
|
|
| 49 |
1. Change 7.3/28 was implemented for classes by looking at the bitmap. This |
1. Change 7.3/28 was implemented for classes by looking at the bitmap. This |
| 75 |
|
|
| 76 |
7. Added macro for snprintf to pcrecpp_unittest.cc and also for strtoll and |
7. Added macro for snprintf to pcrecpp_unittest.cc and also for strtoll and |
| 77 |
strtoull to pcrecpp.cc to select the available functions in WIN32 when the |
strtoull to pcrecpp.cc to select the available functions in WIN32 when the |
| 78 |
windows.h file is present (where different names are used). |
windows.h file is present (where different names are used). [This was |
| 79 |
|
reversed later after testing - see 16 below.] |
| 80 |
|
|
| 81 |
8. Changed all #include <config.h> to #include "config.h". There were also |
8. Changed all #include <config.h> to #include "config.h". There were also |
| 82 |
some further <pcre.h> cases that I changed to "pcre.h". |
some further <pcre.h> cases that I changed to "pcre.h". |
| 106 |
13. Added checks for ANY and ANYCRLF to pcrecpp.cc where it previously |
13. Added checks for ANY and ANYCRLF to pcrecpp.cc where it previously |
| 107 |
checked only for CRLF. |
checked only for CRLF. |
| 108 |
|
|
| 109 |
|
14. Added casts to pcretest.c to avoid compiler warnings. |
| 110 |
|
|
| 111 |
|
15. Added Craig's patch to various pcrecpp modules to avoid compiler warnings. |
| 112 |
|
|
| 113 |
|
16. Added Craig's patch to remove the WINDOWS_H tests, that were not working, |
| 114 |
|
and instead check for _strtoi64 explicitly, and avoid the use of snprintf() |
| 115 |
|
entirely. This removes changes made in 7 above. |
| 116 |
|
|
| 117 |
|
17. The CMake files have been updated, and there is now more information about |
| 118 |
|
building with CMake in the NON-UNIX-USE document. |
| 119 |
|
|
| 120 |
|
|
| 121 |
Version 7.3 28-Aug-07 |
Version 7.3 28-Aug-07 |
| 122 |
--------------------- |
--------------------- |