Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace structopt with Clap v3, and add support for env overrides for all flags #1541

Merged
merged 10 commits into from
Mar 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,20 @@ The crates in this repository do not adhere to [Semantic Versioning](https://sem
## Unreleased

### Added
- Support env overrides for ~all command-line flags.
- Flags that take multiple values can be repeated on the command line,
or passed as comma-separated values via environment or command-line args.

### Changed

### Rust Dependencies
* Updated `rust-toolchain` version to newer nightly
* enables use of [Generic Associated Types](https://github.com/rust-lang/rust/issues/44265) and [static async fn in traits](https://github.com/rust-lang/rust/issues/91611)
* Replaced `datatest` with a custom `test_with_data` macro.
* Replace `structopt` with `clap`.
* Updated grpcio from 0.9 to 0.10.

## [1.2.0] 2022-02-22
## [1.2.0]

### Added

Expand Down
Loading