| 1 |
ChangeLog for PCRE |
ChangeLog for PCRE |
| 2 |
------------------ |
------------------ |
| 3 |
|
|
| 4 |
Version 7.5 23-Dec-07 |
Version 7.6 28-Jan-08 |
| 5 |
|
--------------------- |
| 6 |
|
|
| 7 |
|
1. A character class containing a very large number of characters with |
| 8 |
|
codepoints greater than 255 (in UTF-8 mode, of course) caused a buffer |
| 9 |
|
overflow. |
| 10 |
|
|
| 11 |
|
2. Patch to cut out the "long long" test in pcrecpp_unittest when |
| 12 |
|
HAVE_LONG_LONG is not defined. |
| 13 |
|
|
| 14 |
|
3. Applied Christian Ehrlicher's patch to update the CMake build files to |
| 15 |
|
bring them up to date and include new features. This patch includes: |
| 16 |
|
|
| 17 |
|
- Fixed PH's badly added libz and libbz2 support. |
| 18 |
|
- Fixed a problem with static linking. |
| 19 |
|
- Added pcredemo. [But later removed - see 7 below.] |
| 20 |
|
- Fixed dftables problem and added an option. |
| 21 |
|
- Added a number of HAVE_XXX tests, including HAVE_WINDOWS_H and |
| 22 |
|
HAVE_LONG_LONG. |
| 23 |
|
- Added readline support for pcretest. |
| 24 |
|
- Added an listing of the option settings after cmake has run. |
| 25 |
|
|
| 26 |
|
4. A user submitted a patch to Makefile that makes it easy to create |
| 27 |
|
"pcre.dll" under mingw when using Configure/Make. I added stuff to |
| 28 |
|
Makefile.am that cause it to include this special target, without |
| 29 |
|
affecting anything else. Note that the same mingw target plus all |
| 30 |
|
the other distribution libraries and programs are now supported |
| 31 |
|
when configuring with CMake (see 6 below) instead of with |
| 32 |
|
Configure/Make. |
| 33 |
|
|
| 34 |
|
5. Applied Craig's patch that moves no_arg into the RE class in the C++ code. |
| 35 |
|
This is an attempt to solve the reported problem "pcrecpp::no_arg is not |
| 36 |
|
exported in the Windows port". It has not yet been confirmed that the patch |
| 37 |
|
solves the problem, but it does no harm. |
| 38 |
|
|
| 39 |
|
6. Applied Sheri's patch to CMakeLists.txt to add NON_STANDARD_LIB_PREFIX and |
| 40 |
|
NON_STANDARD_LIB_SUFFIX for dll names built with mingw when configured |
| 41 |
|
with CMake, and also correct the comment about stack recursion. |
| 42 |
|
|
| 43 |
|
7. Remove the automatic building of pcredemo from the ./configure system and |
| 44 |
|
from CMakeLists.txt. The whole idea of pcredemo.c is that it is an example |
| 45 |
|
of a program that users should build themselves after PCRE is installed, so |
| 46 |
|
building it automatically is not really right. What is more, it gave |
| 47 |
|
trouble in some build environments. |
| 48 |
|
|
| 49 |
|
8. Further tidies to CMakeLists.txt from Sheri and Christian. |
| 50 |
|
|
| 51 |
|
|
| 52 |
|
Version 7.5 10-Jan-08 |
| 53 |
--------------------- |
--------------------- |
| 54 |
|
|
| 55 |
1. Applied a patch from Craig: "This patch makes it possible to 'ignore' |
1. Applied a patch from Craig: "This patch makes it possible to 'ignore' |
| 147 |
|
|
| 148 |
20. In pcrecpp.cc, the variable 'count' was incremented twice in |
20. In pcrecpp.cc, the variable 'count' was incremented twice in |
| 149 |
RE::GlobalReplace(). As a result, the number of replacements returned was |
RE::GlobalReplace(). As a result, the number of replacements returned was |
| 150 |
double what it should be. I have removed one of the increments. |
double what it should be. I removed one of the increments, but Craig sent a |
| 151 |
|
later patch that removed the other one (the right fix) and added unit tests |
| 152 |
|
that check the return values (which was not done before). |
| 153 |
|
|
| 154 |
21. Several CMake things: |
21. Several CMake things: |
| 155 |
|
|
| 156 |
(1) Arranged that, when cmake is used on Unix, the libraries end up with |
(1) Arranged that, when cmake is used on Unix, the libraries end up with |
| 157 |
the names libpcre and libpcreposix. |
the names libpcre and libpcreposix, not just pcre and pcreposix. |
| 158 |
|
|
| 159 |
(2) Arranged for pcretest and pcregrep to link with the newly-built |
(2) The above change means that pcretest and pcregrep are now correctly |
| 160 |
libraries, not previously installed ones. |
linked with the newly-built libraries, not previously installed ones. |
| 161 |
|
|
| 162 |
(3) Added PCRE_SUPPORT_LIBREADLINE, PCRE_SUPPORT_LIBZ, PCRE_SUPPORT_LIBBZ2. |
(3) Added PCRE_SUPPORT_LIBREADLINE, PCRE_SUPPORT_LIBZ, PCRE_SUPPORT_LIBBZ2. |
| 163 |
|
|
| 164 |
|
22. In UTF-8 mode, with newline set to "any", a pattern such as .*a.*=.b.* |
| 165 |
|
crashed when matching a string such as a\x{2029}b (note that \x{2029} is a |
| 166 |
|
UTF-8 newline character). The key issue is that the pattern starts .*; |
| 167 |
|
this means that the match must be either at the beginning, or after a |
| 168 |
|
newline. The bug was in the code for advancing after a failed match and |
| 169 |
|
checking that the new position followed a newline. It was not taking |
| 170 |
|
account of UTF-8 characters correctly. |
| 171 |
|
|
| 172 |
|
23. PCRE was behaving differently from Perl in the way it recognized POSIX |
| 173 |
|
character classes. PCRE was not treating the sequence [:...:] as a |
| 174 |
|
character class unless the ... were all letters. Perl, however, seems to |
| 175 |
|
allow any characters between [: and :], though of course it rejects as |
| 176 |
|
unknown any "names" that contain non-letters, because all the known class |
| 177 |
|
names consist only of letters. Thus, Perl gives an error for [[:1234:]], |
| 178 |
|
for example, whereas PCRE did not - it did not recognize a POSIX character |
| 179 |
|
class. This seemed a bit dangerous, so the code has been changed to be |
| 180 |
|
closer to Perl. The behaviour is not identical to Perl, because PCRE will |
| 181 |
|
diagnose an unknown class for, for example, [[:l\ower:]] where Perl will |
| 182 |
|
treat it as [[:lower:]]. However, PCRE does now give "unknown" errors where |
| 183 |
|
Perl does, and where it didn't before. |
| 184 |
|
|
| 185 |
|
24. Rewrite so as to remove the single use of %n from pcregrep because in some |
| 186 |
|
Windows environments %n is disabled by default. |
| 187 |
|
|
| 188 |
|
|
| 189 |
Version 7.4 21-Sep-07 |
Version 7.4 21-Sep-07 |