Skip to content

Commit e1654fb

Browse files
authored
Merge pull request #86 from britive/develop
1.4.0rc5
2 parents 7e88122 + 4e75f3e commit e1654fb

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
* All changes to the package starting with v0.3.1 will be logged here.
44
* 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.
55

6+
## v1.4.0rc5 [2023-06-22]
7+
#### What's New
8+
* None
9+
10+
#### Enhancements
11+
* None
12+
13+
#### Bug Fixes
14+
* Fix bug with lowercase vs. uppercase when using tenant config attribute `sso_idp`.
15+
16+
#### Dependencies
17+
* None
18+
19+
#### Other
20+
* None
621

722
## v1.4.0rc4 [2023-06-22]
823
#### What's New

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.4.0rc4
3+
version = 1.4.0rc5
44
author = Britive Inc.
55
author_email = support@britive.com
66
description = A pure Python CLI for Britive

src/pybritive/helpers/credentials.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ def perform_interactive_login(self):
8181
self.cli.print(f'Performing interactive login against tenant {self.tenant}.')
8282
sso_idp = self.cli.config.get_tenant().get('sso_idp')
8383
if sso_idp:
84+
sso_idp = sso_idp.replace('saml', 'SAML') # ui is expecting it in caps
8485
url = f'{self.base_url}/sso?idp={sso_idp}&token={self.auth_token}'
8586
else:
8687
url = f'{self.base_url}/login?token={self.auth_token}'

0 commit comments

Comments
 (0)