Skip to content

Commit b6dcc2f

Browse files
authored
Merge pull request #116 from britive/develop
v1.6.0rc5
2 parents 14cbcb4 + 74c00dc commit b6dcc2f

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
* As of v1.4.0 release candidates will be published in an effort to get new features out faster while still allowing time for full QA testing before moving the release candidate to a full release.
44

5+
## v1.6.0rc4 [2023-11-06]
6+
#### What's New
7+
* None
8+
9+
#### Enhancements
10+
* None
11+
12+
#### Bug Fixes
13+
* Fix bug in `pybritive-kube-exec` and `pybritive-aws-cred-process` for handling the `--extend` flag of a `checkout` command
14+
15+
#### Dependencies
16+
* None
17+
18+
#### Other
19+
* None
20+
21+
522
## v1.6.0rc4 [2023-11-03]
623
#### What's New
724
* None

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 = 1.6.0rc4
3+
version = 1.6.0rc5
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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ def main():
109109
force_renew=args['force_renew'],
110110
aws_credentials_file=None,
111111
gcloud_key_file=None,
112-
verbose=None
112+
verbose=None,
113+
extend=False
113114
)
114115
raise SystemExit()
115116

src/pybritive/helpers/k8s_exec.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ def main():
9292
force_renew=None,
9393
aws_credentials_file=None,
9494
gcloud_key_file=None,
95-
verbose=None
95+
verbose=None,
96+
extend=False
9697
)
9798
exit()
9899

0 commit comments

Comments
 (0)