summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorAlex Saveau <saveau.alexandre@gmail.com>2022-02-02 19:40:50 -0800
committerAlex Saveau <saveau.alexandre@gmail.com>2022-02-27 13:22:07 -0800
commit378a66dd1837a634ef714166f657cb7111c291ec (patch)
tree0c2b2031444621bd8d42738baba4cbf5da6238e5 /CHANGELOG.md
parent15af9b6d8116924c64fe07a730c71d61683c04a4 (diff)
downloadnix-378a66dd1837a634ef714166f657cb7111c291ec.zip
Remove `PATH_MAX` restriction from `with_nix_path`
Signed-off-by: Alex Saveau <saveau.alexandre@gmail.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 65681677..c474b2fb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -64,6 +64,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
Because of this change, you now need `use std::iter::Extend` to call `extend`
on a `SigSet`.
(#[1553](https://github.com/nix-rust/nix/pull/1553))
+- Removed the the `PATH_MAX` restriction from APIs accepting paths. Paths
+ will now be allocated on the heap if they are too long. In addition, large
+ instruction count improvements (~30x) were made to path handling.
### Fixed