When I created a new API token and updated it in bb, I noticed that the token got stored in plain text in the config file without specifying --no-vault.
Example:
$ bb profile create --name TEST --user foo --password bar
$ yq '.profiles[] | select(.name == "TEST") .password' ~/.config/bitbucket/config-cli.yml
null
$ bb profile update TEST --user foo --password baz
$ yq '.profiles[] | select(.name == "TEST") .password' ~/.config/bitbucket/config-cli.yml
"bar"
When I created a new API token and updated it in
bb, I noticed that the token got stored in plain text in the config file without specifying--no-vault.Example: