File tree 7 files changed +21
-10
lines changed
7 files changed +21
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 0.2.3] - 2024-07-11
4
+
5
+ ### Changed
6
+ - Portability: sudo-rs now is compatible with s390x-unknown-linux-gnu
7
+ - Removed unneeded code & fix hints given by newer Rust version
8
+
9
+ ### Fixed
10
+ - ` visudo ` would not properly truncate a ` sudoers ` file
11
+ - high CPU load when child process did not terminate after closure of a terminal
12
+
3
13
## [ 0.2.2] - 2024-02-02
4
14
5
15
### Changed
111
121
- Use canonicalized paths for the executed binaries
112
122
- Simplified CLI help to only display supported actions
113
123
124
+ [ 0.2.3 ] : https://github.com/trifectatechfoundation/sudo-rs/compare/v0.2.2...v0.2.3
114
125
[ 0.2.2 ] : https://github.com/trifectatechfoundation/sudo-rs/compare/v0.2.1...v0.2.2
115
126
[ 0.2.1 ] : https://github.com/trifectatechfoundation/sudo-rs/compare/v0.2.0...v0.2.1
116
127
[ 0.2.0 ] : https://github.com/trifectatechfoundation/sudo-rs/compare/v0.2.0-dev.20230711...v0.2.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " sudo-rs"
3
3
description = " A memory safe implementation of sudo and su."
4
- version = " 0.2.2 "
4
+ version = " 0.2.3 "
5
5
license = " Apache-2.0 OR MIT"
6
6
edition = " 2021"
7
7
repository = " https://github.com/trifectatechfoundation/sudo-rs"
Original file line number Diff line number Diff line change 1
1
<!-- ---
2
- title: SU(1) sudo-rs 0.2.2 | sudo-rs
2
+ title: SU(1) sudo-rs 0.2.3 | sudo-rs
3
3
--- -->
4
4
5
5
# NAME
Original file line number Diff line number Diff line change 1
1
<!-- ---
2
- title: SUDO(8) sudo-rs 0.2.2 | sudo-rs
2
+ title: SUDO(8) sudo-rs 0.2.3 | sudo-rs
3
3
--- -->
4
4
5
5
# NAME
Original file line number Diff line number Diff line change 1
1
<!-- ---
2
- title: VISUDO(8) sudo-rs 0.2.2 | sudo-rs
2
+ title: VISUDO(8) sudo-rs 0.2.3 | sudo-rs
3
3
--- -->
4
4
5
5
# NAME
Original file line number Diff line number Diff line change 1
- FROM rust:1-slim-bullseye
1
+ FROM rust:1.79 -slim-bullseye
2
2
RUN apt-get update -y && apt-get install -y clang libclang-dev libpam0g-dev
You can’t perform that action at this time.
0 commit comments