summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2015-10-20 08:20:38 -0700
committerJim Meyering <meyering@fb.com>2015-10-24 16:42:28 -0700
commit7905d176c4247bd722eb8e44f8cf05cbbb248fba (patch)
tree8b4b47f8f8f90fab9b6dc2c34f987446858e4f3b
parent5f84d762fae5eafd57295982e7034c7fe12f689a (diff)
downloadgrep-7905d176c4247bd722eb8e44f8cf05cbbb248fba.tar.gz
maint: NEWS: correct/amend
* NEWS: Move the long-regexp-performance-improvement from "Bug fixes" to "Improvements." Say more and include an example. The -Fw degradation was introduced in commit v2.18-125-g94555dd
-rw-r--r--NEWS12
1 files changed, 10 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 91db25dd..1b2f4e44 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,13 @@ GNU grep NEWS -*- outline -*-
** Improvements
+ Performance has improved for patterns containing very long strings,
+ reducing preprocessing time for an N-byte regexp from O(N^2) to
+ only slightly superlinear for most patterns. Before, a command like
+ the following would take over a minute, but now, it takes less than
+ a second:
+ : | grep -f <(seq -s '' 99999)
+
When building grep, 'configure' now uses PCRE's pkg-config module for
configuration information, rather than attempting to guess it by hand.
@@ -17,6 +24,7 @@ GNU grep NEWS -*- outline -*-
grep no longer reads from uninitialized memory or from beyond the end
of the heap-allocated input buffer. This fix addressed CVE-2015-1345.
+ [bug introduced in grep-2.19 ]
With -z, '.' and '[^x]' in a pattern now consistently match newline.
Previously, they sometimes matched newline, and sometimes did not.
@@ -32,8 +40,8 @@ GNU grep NEWS -*- outline -*-
command-line arguments, not against command-line components.
[bug introduced in grep-2.6]
- Performance has improved for patterns containing very long strings,
- and for grep -Fw in unibyte locales.
+ Fix performance degradation of grep -Fw in unibyte locales.
+ [bug introduced in grep-2.19 ]
* Noteworthy changes in release 2.21 (2014-11-23) [stable]