1 |
ChangeLog for PCRE |
ChangeLog for PCRE |
2 |
------------------ |
------------------ |
3 |
|
|
4 |
Version 7.5 12-Nov-07 |
Version 7.6 19-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. |
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 created a dll |
27 |
|
under mingw. I added stuff to Makefile.am that cause it to include this |
28 |
|
special target, without affecting anything else. |
29 |
|
|
30 |
|
|
31 |
|
Version 7.5 10-Jan-08 |
32 |
--------------------- |
--------------------- |
33 |
|
|
34 |
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' |
103 |
does the same. The return code can be used to tell if there were any |
does the same. The return code can be used to tell if there were any |
104 |
non-matching lines. |
non-matching lines. |
105 |
|
|
106 |
14. The pattern (?=something)(?R) was not being diagnosed as a potentially |
14. Added --file-offsets and --line-offsets to pcregrep. |
107 |
|
|
108 |
|
15. The pattern (?=something)(?R) was not being diagnosed as a potentially |
109 |
infinitely looping recursion. The bug was that positive lookaheads were not |
infinitely looping recursion. The bug was that positive lookaheads were not |
110 |
being skipped when checking for a possible empty match (negative lookaheads |
being skipped when checking for a possible empty match (negative lookaheads |
111 |
and both kinds of lookbehind were skipped). |
and both kinds of lookbehind were skipped). |
112 |
|
|
113 |
15. Fixed two typos in the Windows-only code in pcregrep.c, and moved the |
16. Fixed two typos in the Windows-only code in pcregrep.c, and moved the |
114 |
inclusion of <windows.h> to before rather than after the definition of |
inclusion of <windows.h> to before rather than after the definition of |
115 |
INVALID_FILE_ATTRIBUTES (patch from David Byron). |
INVALID_FILE_ATTRIBUTES (patch from David Byron). |
116 |
|
|
117 |
16. Specifying a possessive quantifier with a specific limit for a Unicode |
17. Specifying a possessive quantifier with a specific limit for a Unicode |
118 |
character property caused pcre_compile() to compile bad code, which led at |
character property caused pcre_compile() to compile bad code, which led at |
119 |
runtime to PCRE_ERROR_INTERNAL (-14). Examples of patterns that caused this |
runtime to PCRE_ERROR_INTERNAL (-14). Examples of patterns that caused this |
120 |
are: /\p{Zl}{2,3}+/8 and /\p{Cc}{2}+/8. It was the possessive "+" that |
are: /\p{Zl}{2,3}+/8 and /\p{Cc}{2}+/8. It was the possessive "+" that |
121 |
caused the error; without that there was no problem. |
caused the error; without that there was no problem. |
122 |
|
|
123 |
17. Added --enable-pcregrep-libz and --enable-pcregrep-libbz2. |
18. Added --enable-pcregrep-libz and --enable-pcregrep-libbz2. |
124 |
|
|
125 |
18. Added --enable-pcretest-libreadline. |
19. Added --enable-pcretest-libreadline. |
126 |
|
|
127 |
19. In pcrecpp.cc, the variable 'count' was incremented twice in |
20. In pcrecpp.cc, the variable 'count' was incremented twice in |
128 |
RE::GlobalReplace(). As a result, the number of replacements returned was |
RE::GlobalReplace(). As a result, the number of replacements returned was |
129 |
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 |
130 |
|
later patch that removed the other one (the right fix) and added unit tests |
131 |
|
that check the return values (which was not done before). |
132 |
|
|
133 |
|
21. Several CMake things: |
134 |
|
|
135 |
|
(1) Arranged that, when cmake is used on Unix, the libraries end up with |
136 |
|
the names libpcre and libpcreposix, not just pcre and pcreposix. |
137 |
|
|
138 |
|
(2) The above change means that pcretest and pcregrep are now correctly |
139 |
|
linked with the newly-built libraries, not previously installed ones. |
140 |
|
|
141 |
|
(3) Added PCRE_SUPPORT_LIBREADLINE, PCRE_SUPPORT_LIBZ, PCRE_SUPPORT_LIBBZ2. |
142 |
|
|
143 |
|
22. In UTF-8 mode, with newline set to "any", a pattern such as .*a.*=.b.* |
144 |
|
crashed when matching a string such as a\x{2029}b (note that \x{2029} is a |
145 |
|
UTF-8 newline character). The key issue is that the pattern starts .*; |
146 |
|
this means that the match must be either at the beginning, or after a |
147 |
|
newline. The bug was in the code for advancing after a failed match and |
148 |
|
checking that the new position followed a newline. It was not taking |
149 |
|
account of UTF-8 characters correctly. |
150 |
|
|
151 |
|
23. PCRE was behaving differently from Perl in the way it recognized POSIX |
152 |
|
character classes. PCRE was not treating the sequence [:...:] as a |
153 |
|
character class unless the ... were all letters. Perl, however, seems to |
154 |
|
allow any characters between [: and :], though of course it rejects as |
155 |
|
unknown any "names" that contain non-letters, because all the known class |
156 |
|
names consist only of letters. Thus, Perl gives an error for [[:1234:]], |
157 |
|
for example, whereas PCRE did not - it did not recognize a POSIX character |
158 |
|
class. This seemed a bit dangerous, so the code has been changed to be |
159 |
|
closer to Perl. The behaviour is not identical to Perl, because PCRE will |
160 |
|
diagnose an unknown class for, for example, [[:l\ower:]] where Perl will |
161 |
|
treat it as [[:lower:]]. However, PCRE does now give "unknown" errors where |
162 |
|
Perl does, and where it didn't before. |
163 |
|
|
164 |
|
24. Rewrite so as to remove the single use of %n from pcregrep because in some |
165 |
|
Windows environments %n is disabled by default. |
166 |
|
|
167 |
|
|
168 |
Version 7.4 21-Sep-07 |
Version 7.4 21-Sep-07 |