| 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 |
|
|
| 18 |
|
Version 7.4 21-Sep-07 |
| 19 |
--------------------- |
--------------------- |
| 20 |
|
|
| 21 |
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 |
| 47 |
|
|
| 48 |
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 |
| 49 |
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 |
| 50 |
windows.h file is present (where different names are used). |
windows.h file is present (where different names are used). [This was |
| 51 |
|
reversed later after testing - see 16 below.] |
| 52 |
|
|
| 53 |
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 |
| 54 |
some further <pcre.h> cases that I changed to "pcre.h". |
some further <pcre.h> cases that I changed to "pcre.h". |
| 77 |
|
|
| 78 |
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 |
| 79 |
checked only for CRLF. |
checked only for CRLF. |
| 80 |
|
|
| 81 |
14. Added casts to pcretest.c to avoid compiler warnings. |
14. Added casts to pcretest.c to avoid compiler warnings. |
| 82 |
|
|
| 83 |
15. Added Craig's patch to various pcrecpp modules to avoid compiler warnings. |
15. Added Craig's patch to various pcrecpp modules to avoid compiler warnings. |
| 84 |
|
|
| 85 |
|
16. Added Craig's patch to remove the WINDOWS_H tests, that were not working, |
| 86 |
|
and instead check for _strtoi64 explicitly, and avoid the use of snprintf() |
| 87 |
|
entirely. This removes changes made in 7 above. |
| 88 |
|
|
| 89 |
|
17. The CMake files have been updated, and there is now more information about |
| 90 |
|
building with CMake in the NON-UNIX-USE document. |
| 91 |
|
|
| 92 |
|
|
| 93 |
Version 7.3 28-Aug-07 |
Version 7.3 28-Aug-07 |
| 94 |
--------------------- |
--------------------- |