summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authormataha <mataha@users.noreply.github.com>2023-05-30 02:08:06 +0200
committerAndrew Gallant <jamslam@gmail.com>2023-07-08 18:52:42 -0400
commitda8ecddce926bcf616f62c947058fe5487fd2a3b (patch)
tree2ebc2886658614aa66c855bab0b2553d5394b010 /CHANGELOG.md
parent545a7dc7598a20e8ef82076177164b7e3ccb15e4 (diff)
cli: make resolve_binary take COM executables into account
When `resolve_binary()` attempts to resolve a path to a program on Windows while searching for a program in `PATH` without an extension, `ripgrep` will assume the extension of the file to be `.exe` as it's the *de facto* standard, which will work most (99.99%) of the time... ...unless the binary is a COM executable (we're on Windows, duh). Closes #2523
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1e11a8ea..055ce132 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@ TBD
===
Unreleased changes. Release notes have not yet been written.
+Feature enhancements:
+
+* Added or improved file type filtering for Fuchsia
+
Bug fixes:
* [BUG #1891](https://github.com/BurntSushi/ripgrep/issues/1891):
@@ -10,6 +14,8 @@ Bug fixes:
Disable mmap searching in all non-64-bit environments.
* [BUG #2236](https://github.com/BurntSushi/ripgrep/issues/2236):
Fix gitignore parsing bug where a trailing `\/` resulted in an error.
+* [BUG #2523](https://github.com/BurntSushi/ripgrep/issues/2523):
+ Make executable searching take `.com` into account on Windows.
13.0.0 (2021-06-12)