Skip to content

Releases: arago/hiro-client-python

v5.3.1

12 Jun 07:49
348a644
Compare
Choose a tag to compare

Set default proxy type to "http"

reveal secrets

12 Jun 07:57
Compare
Choose a tag to compare
v0.0.1

Reveal secrets

Version 5.3.0

10 Jun 07:12
30ab1a7
Compare
Choose a tag to compare
  • 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

08 Mar 07:53
16cb584
Compare
Choose a tag to compare
  • [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

08 Feb 17:14
c20a6e0
Compare
Choose a tag to compare
  • Merge headers in AbstractAPI instead of replacing them.

Version 5.2.3

07 Feb 13:38
21de77f
Compare
Choose a tag to compare
  • Remove accept_all_certs for good. Directly use the flag in SSLConfig.

Version 5.2.2

04 Feb 14:41
Compare
Choose a tag to compare
  • Debugged python code documentation.
  • Fixed copyright notices.

Version 5.2.1

04 Feb 12:06
Compare
Choose a tag to compare
  • Updated Documentation

Also redeployment because https://pypi.org/project/hiro-graph-client/
received the wrong README.md

Version 5.2.0

04 Feb 11:46
Compare
Choose a tag to compare
  • Separate connection sessions from token handlers. Introducing class GraphConnectonHandler which can be shared
    between TokenApiHandlers and API-Classes.
  • Updated documentation.

Version 5.1.0

28 Jan 14:32
725f7e7
Compare
Choose a tag to compare
  • 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 the pool_maxsize.
  • Removed obsolete accept_all_certs().
  • Fixed pytest in Makefile target.
  • Added information about requests.Session and the pool_maxsize to documentation.