diff --git a/CHANGELOG.md b/CHANGELOG.md index c5fe824..984d5df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +0.6.0 +===== +Features: +* Migrate to k8s-openapi + * This enabled a migration to reqwest and dropping of the old un-maintained http clients + previously in use +* Update to Rust 2021 edition +* Add a `cp` command to copy files to/from a pod +* Add a `daemonsets` command +* ADd a `persistentvolumes` command +* Forward environment variables to exec'd commands (Thanks @wchau) +* All objects have a basic describe for (at least) their metadata +* Support azure and oidc auth providers (beta) +* `pods` command can show last restart time of a pod +* Migrate to comfy-table since prettytable is no longer maintained + * As a result wide tables should render much more pleasantly +* `describe` also shows events +* Add support to show CRDs (see `help crd`) + +Bug Fixes: +* Tab completion works for most arguments +* `exec` handles multi-argument commands properly +* Events sort properly in time order + 0.5.4 ====== * Contexts complete in alphabetical order (thanks @markj-db) diff --git a/Cargo.lock b/Cargo.lock index 9271841..789637b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -136,9 +136,9 @@ dependencies = [ [[package]] name = "clap" -version = "3.1.10" +version = "3.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3124f3f75ce09e22d1410043e1e24f2ecc44fad3afe4f08408f1f7663d68da2b" +checksum = "7c167e37342afc5f33fd87bbc870cedd020d2a6dffa05d45ccd9241fbdd146db" dependencies = [ "atty", "bitflags", @@ -161,7 +161,7 @@ dependencies = [ [[package]] name = "click" -version = "0.5.4" +version = "0.6.0" dependencies = [ "ansi_term", "atomicwrites", diff --git a/Cargo.toml b/Cargo.toml index c8eeb71..29f7903 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "click" -version = "0.5.4" +version = "0.6.0" description = "A command-line REPL for Kubernetes that integrates into existing cli workflows" authors = ["Nick Lanham "] homepage = "https://github.com/databricks/click/wiki"