Releases: arago/hiro-client-python
Releases · arago/hiro-client-python
v5.3.1
reveal secrets
v0.0.1 Reveal secrets
Version 5.3.0
- Decode any token via static
decode_token_ext()
.
Changes for /api/auth/6.6:
- Ability to revoke a token.
- Recognize
access_token
and_TOKEN
in token results. - Remove obsolete method
fresh()
from class TokenInfo because each token refresh issues a new refresh_token by default
now.
Version 5.2.5
- [bugfix] Calculation within clientlib.TokenInfo.expired() now returns False as expected when no expires_at
is available for a token. Previous versions would raise an exception.
Version 5.2.4
- Merge headers in AbstractAPI instead of replacing them.
Version 5.2.3
- Remove
accept_all_certs
for good. Directly use the flag in SSLConfig.
Version 5.2.2
- Debugged python code documentation.
- Fixed copyright notices.
Version 5.2.1
- Updated Documentation
Also redeployment because https://pypi.org/project/hiro-graph-client/
received the wrong README.md
Version 5.2.0
- Separate connection sessions from token handlers. Introducing class
GraphConnectonHandler
which can be shared
betweenTokenApiHandler
s and API-Classes. - Updated documentation.
Version 5.1.0
- Use connection pooling via requests.Session.
- Set
pool_connections=1
,pool_maxsize=10
by default (the latter can be changed). - Option
pool_block
to block any connections that would exceed thepool_maxsize
.
- Set
- Removed obsolete
accept_all_certs()
. - Fixed pytest in Makefile target.
- Added information about
requests.Session
and thepool_maxsize
to documentation.