From 497ef93ec4dea3d7046d9bc16cd0dbee3bc3c64c Mon Sep 17 00:00:00 2001 From: sbailey <1661003+spbsoluble@users.noreply.github.com> Date: Thu, 5 Oct 2023 11:35:09 -0700 Subject: [PATCH] chore(docs): Updated CHANGELOG.md --- CHANGELOG.md | 14 +++++++++++++- cmd/root.go | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 181c22ec..19db4f6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ +# v1.2.0 +## Features +feat(auth): Added support for sourcing credentials from [Azure Key Vault using Azure ID](docs/auth_providers#azure-key-vault) +feat(cli): Added enhanced logging when `KFUTIL_DEBUG` is set. +feat(store-types): `store-types create` now supports the `--all` flag. +feat(stores): `stores` sub CLI is now non-experimental. [See docs](docs/kfutil_stores.md) +feat(stores): Bulk import of stores via `stores import csv` sub CLI is now non-experimental. [See docs](docs/kfutil_stores_import_csv.md) +feat(stores): Added `delete` command to stores as well as a `--all` option. + +## Bug Fixes +fix(login): the default `APIPath` no longer overwrites preexisting values. + # v1.1.0 -Additional Supported CLIs: +## Features - `pam`: [kfutil pam](docs/kfutil_pam.md) # v1.0.0 diff --git a/cmd/root.go b/cmd/root.go index 268a678e..dce81d68 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -295,7 +295,7 @@ func init() { RootCmd.PersistentFlags().BoolVar(&debugFlag, "debug", false, "Enable debugFlag logging.") RootCmd.PersistentFlags().BoolVar(&logInsecure, "log-insecure", false, "Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.)") RootCmd.PersistentFlags().StringVarP(&profile, "profile", "", "", "Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists.") - RootCmd.PersistentFlags().StringVar(&outputFormat, "format", "text", "Output format. (text/json)") + RootCmd.PersistentFlags().StringVar(&outputFormat, "format", "text", "How to format the CLI output. Currently only `text` is supported.") RootCmd.PersistentFlags().StringVar(&providerType, "auth-provider-type", "", "Provider type choices: (azid)") // Validating the provider-type flag against the predefined choices