Skip to content

Commit 03f6f56

Browse files
authored
Merge pull request #54 from britive/develop
v0.10.1
2 parents fbc3703 + adc740a commit 03f6f56

3 files changed

Lines changed: 18 additions & 2 deletions

File tree

CHANGELOG.md

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

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

5+
## v0.10.1 [2023-01-19]
6+
#### What's New
7+
* None
8+
9+
#### Enhancements
10+
* None
11+
12+
#### Bug Fixes
13+
* Fix interactive login issue for local development when using `BRITIVE_NO_VERIFY_SSL`
14+
15+
#### Dependencies
16+
* None
17+
18+
#### Other
19+
* None
20+
521
## v0.10.0 [2023-01-18]
622
#### What's New
723
* Support Bitbucket as a federation provider

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.10.0
3+
version = 0.10.1
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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def retrieve_tokens(self):
179179
headers = {
180180
'Content-Type': 'application/json'
181181
}
182-
return requests.post(url, headers=headers, json=auth_params)
182+
return self.session.post(url, headers=headers, json=auth_params)
183183

184184
def load(self, full=False):
185185
# we should NEVER get herte but adding here just in case

0 commit comments

Comments
 (0)