summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-12-24 20:38:53 +0000
committerGitHub <noreply@github.com>2021-12-24 20:38:53 +0000
commit7be98a4379c57d91c6916c0a9817267ebf18c516 (patch)
treeec260d9b794a3f8914b851e2f811a33bffb492a2 /CHANGELOG.md
parent6c6c576dc043aeee5a814490ec8c4665283580ae (diff)
parent867ac514b03801b14839ea3815918f7c32be282c (diff)
downloadnix-7be98a4379c57d91c6916c0a9817267ebf18c516.zip
Merge #1614
1614: Improve the sockaddr interface: r=asomers a=asomers * All sockaddr newtypes should be repr(transparent) * All sockaddr newtypes should be opaque, so the user can't do something like change the sa_family field in a way that violates invariants. This is a prerequisite for #1544. Co-authored-by: Alan Somers <asomers@gmail.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 63bb7440..d4311668 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -24,6 +24,10 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Fixed
### Removed
+- Removed public access to the inner fields of `NetlinkAddr`, `AlgAddr`,
+ `SysControlAddr`, `LinkAddr`, and `VsockAddr`.
+ (#[1614](https://github.com/nix-rust/nix/pull/1614))
+
## [0.23.1] - 2021-12-16
### Added