summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2021-05-31 20:56:57 -0400
committerAndrew Gallant <jamslam@gmail.com>2021-05-31 21:51:18 -0400
commite48a17e1891e1ea9dd06ba0e48d5fb140ca7c0c4 (patch)
treefe872206b37ca143715bfc8cf1309a7bce15e7fa
parentfbb2cfed28d68b220e51c0fe8db9d89a4516aab6 (diff)
changelog: prep for ripgrep 13 release
-rw-r--r--CHANGELOG.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 360b1c17..c04865d2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,17 @@
TBD
===
-Unreleased changes. Release notes have not yet been written.
+ripgrep 13 is a new major version release of ripgrep that primarily contains
+bug fixes. There is also a fix for a security vulnerability on Windows
+([CVE-2021-3013](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3013)),
+some performance improvements and some minor breaking changes.
+
+A new short flag, `-.`, has been added. It is an alias for the `--hidden` flag,
+which instructs ripgrep to search hidden files and directories.
+
+ripgrep is also used a new
+[vectorized implementation of `memmem`](https://github.com/BurntSushi/memchr/pull/82),
+which is used to accelerate many common searches. If you notice any performance
+regressions (or major improvements), I'd love to hear about them.
**BREAKING CHANGES**:
@@ -47,6 +58,8 @@ Performance improvements:
* [PERF #1657](https://github.com/BurntSushi/ripgrep/discussions/1657):
Check if a file should be ignored first before issuing stat calls.
+* [PERF memchr#82](https://github.com/BurntSushi/memchr/pull/82):
+ ripgrep now uses a new vectorized implementation of `memmem`.
Feature enhancements: