Skip to content

Commit

Permalink
Release 0.2.0-dev.20230711
Browse files Browse the repository at this point in the history
  • Loading branch information
rnijveld authored and squell committed Jul 11, 2023
1 parent e492729 commit 37bae18
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 85 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
# Changelog

## [Unreleased]
## [0.2.0-dev.20230711] - 2023-07-11

### Added
- Add initial `visudo` implementation
- Add support for `~` in `--chdir`
- Log commands that will be executed in the auth syslog
- Add a manpage for the `sudo` command

### Changed
- The SUDO_RS_IS_UNSTABLE environment variable is no longer required
- Sudo-rs will now read `/etc/sudoers-rs` or `/etc/sudoers` if the former is
not available. We no longer read `/etc/sudoers.test`
- Removed signal-hook and signal-hook-registry dependencies
- Improved error handling when `--chdir` is passed but not allowed
- Properly handle `SIGWINCH` when running commands with a PTY

### Fixed
- Only call ttyname and isatty on character devices
- Fixed a bug in syslog FFI

## [0.2.0-dev.20230703] - 2023-07-03

Expand Down Expand Up @@ -42,6 +52,6 @@
- Use canonicalized paths for the executed binaries
- Simplified CLI help to only display supported actions

[Unreleased]: https://github.com/memorysafety/sudo-rs/compare/v0.2.0-dev.20230703...HEAD
[0.2.0-dev.20230711]: https://github.com/memorysafety/sudo-rs/compare/v0.2.0-dev.20230703...v0.2.0-dev.20230711
[0.2.0-dev.20230703]: https://github.com/memorysafety/sudo-rs/compare/v0.2.0-dev.20230627...v0.2.0-dev.20230703
[0.2.0-dev.20230627]: https://github.com/memorysafety/sudo-rs/compare/v0.1.0-dev.20230620...v0.2.0-dev.20230627
84 changes: 3 additions & 81 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "sudo-rs"
description = "A memory safe implementation of sudo and su."
version = "0.2.0-dev.20230703"
version = "0.2.0-dev.20230711"
license = "Apache-2.0 OR MIT"
edition = "2021"
repository = "https://github.com/memorysafety/sudo-rs"
Expand Down
2 changes: 1 addition & 1 deletion docs/man/sudo.8.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% SUDO(8) sudo-rs 0.2.0
% SUDO(8) sudo-rs 0.2.0-dev.20230711
%
% July 10, 2023

Expand Down

0 comments on commit 37bae18

Please sign in to comment.