Skip to content

Commit

Permalink
chore(docs): Updated CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
spbsoluble committed Oct 5, 2023
1 parent a26e903 commit 497ef93
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 497ef93

Please sign in to comment.