aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.dev>2026-02-14 16:16:15 +0200
committerBozhidar Batsov <bozhidar@batsov.dev>2026-02-14 16:16:15 +0200
commit81fd74f17e7e2a6082c905947a603f76f04ff730 (patch)
treeed9c8c282af692feea84ab71113fe0f2b99d1089 /CHANGELOG.md
parent83ee3f34b630b06f3bcd58f519dea203f8925012 (diff)
Fix mode-line in non-file buffers and nil project root crash
- Update the mode-line via window-configuration-change-hook so non-file buffers like Magit display correct project info (#1823) - Use projectile-acquire-root instead of projectile-project-root in projectile--run-project-cmd to prevent wrong-type-argument error when running commands in newly created projects (#1886)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 930f5a1..7cf4b69 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,8 @@
### Bugs fixed
+* [#1823](https://github.com/bbatsov/projectile/issues/1823): Update the mode-line via `window-configuration-change-hook` so non-file buffers (e.g. Magit) display the correct project info.
+* [#1886](https://github.com/bbatsov/projectile/issues/1886): Fix `(wrong-type-argument stringp nil)` error when running project commands in a newly created project by using `projectile-acquire-root` instead of `projectile-project-root` in `projectile--run-project-cmd`.
* [#1748](https://github.com/bbatsov/projectile/issues/1748): Fix `projectile-replace` falling back to the legacy Emacs 25/26 code path on Emacs 27+ because `fileloop` was not loaded.
* [#1741](https://github.com/bbatsov/projectile/issues/1741): Fix `projectile-replace` treating the search string as a regexp instead of a literal string on Emacs 27+.
* [#1729](https://github.com/bbatsov/projectile/issues/1729): Fix `projectile-root-top-down` to actually return the topmost matching project root instead of the bottommost.