diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-02-07 22:50:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-07 22:50:05 +0000 |
commit | 3b8180c430fe838e4fd71b83e5f92db6386e5c57 (patch) | |
tree | afbfdbb338a941bb610c1ea7a0b8b1eda7056afe /CHANGELOG.md | |
parent | e7c702160b3a2d4ed3377ddf1fa2b6986401c396 (diff) | |
parent | 8dc757bb545a7a3f1339ae69abcb649e38700cca (diff) | |
download | nix-3b8180c430fe838e4fd71b83e5f92db6386e5c57.zip |
Merge #1338
1338: Add a passwd field to Group r=asomers a=blinsay
Adds a `passwd` field to unistd::Group. The `gr_passwd` field exists on `libc::group` and wasn't exposed.
I didn't see tests for `from(libc:group)` for either `User` or `Password`. Let me know if there are other tests I should add!
Co-authored-by: Ben Linsay <blinsay@gmail.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 99972478..a109b7f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate ### Added + +- Added a `passwd` field to `Group` (#[1338](https://github.com/nix-rust/nix/pull/1338)) - Added `mremap` (#[1306](https://github.com/nix-rust/nix/pull/1306)) - Added `personality` (#[1331](https://github.com/nix-rust/nix/pull/1331)) - Added limited Fuchsia support (#[1285](https://github.com/nix-rust/nix/pull/1285)) |