Skip to content

Commit

Permalink
Fix issue with linefeed when doing a k8s token init with immutable. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jsupun authored May 2, 2022
1 parent a694715 commit 82f6c31
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions integration/keeper_secrets_manager_cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,19 @@
The Keeper Secrets Manager command line interface

For more information see our official documentation page https://docs.keeper.io/secrets-manager/secrets-manager/secrets-manager-command-line-interface

# Change History

## 1.0.11

* Fix missing linefeed when selecting `immutable` for k8s token init.

## 1.0.10

* Prevent keeper.ini from being created when using config from environment variables.
* Fixed problem with params that use '=' from converting the value to lowercase.
* Throw exception is record(s) do not exist for `get`

## 1.0.9

* Fixed environment variables starting with "keeper", that are not notation, from throwing an error.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def get_k8s(self, name, namespace, apply=False, immutable=False):

# Kubernetes v1.21
if immutable is True:
secret += "immutable: True\n"
secret += "\nimmutable: True\n"

print("", file=sys.stderr)
self.cli.output(secret)
Expand Down
2 changes: 1 addition & 1 deletion integration/keeper_secrets_manager_cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# Version set in the keeper_secrets_manager_cli.version file.
setup(
name="keeper-secrets-manager-cli",
version="1.0.10",
version="1.0.11",
description="Command line tool for Keeper Secrets Manager",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 82f6c31

Please sign in to comment.