Skip to content

Commit c123055

Browse files
authored
Merge pull request #47 from britive/aws-creds-cli-fix
Aws creds cli fix
2 parents 354569d + f0cec35 commit c123055

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,25 @@
22

33
All changes to the package starting with v0.3.1 will be logged here.
44

5+
## v0.9.1 [2023-01-09]
6+
#### What's New
7+
* None
8+
#### Enhancements
9+
* None
10+
11+
#### Bug Fixes
12+
* Fix console script `pybritive-aws-cred-process` due to recent changes with the `checkout` method
13+
14+
#### Dependencies
15+
* None
16+
17+
#### Other
18+
* None
19+
520
## v0.9.0 [2023-01-06]
621
#### What's New
722
* `pybritive checkout` will now report progress of the action by default (if `stdout` is a tty). Can show more verbose output with `--verbose/-v`. Can silence the progress with the already available `--silent\-s` flag.
23+
824
#### Enhancements
925
* None
1026

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pybritive
3-
version = 0.9.0
3+
version = 0.9.1
44
author = Britive Inc.
55
author_email = support@britive.com
66
description = A pure Python CLI for Britive

src/pybritive/helpers/aws_credential_process.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ def main():
9090
profile=args['profile'],
9191
passphrase=args['passphrase'],
9292
force_renew=args['force_renew'],
93-
aws_credentials_file=None
93+
aws_credentials_file=None,
94+
gcloud_key_file=None,
95+
verbose=None
9496
)
9597
exit()
9698

0 commit comments

Comments
 (0)