Skip to content

Releases: equinor/sumo-wrapper-python

1.0.12: Ensure that there is only one Sumo LogHandler

03 Oct 10:32
Compare
Choose a tag to compare

Previously, every call to SumoClient.getLogger would add a LogHandler for output to Sumo, which caused duplicate entries in the Sumo message log. This version ensures that only a single LogHandler is added.

1.0.11: Don't try to use AuthProviderSilent if there is no token cache file.

18 Sep 10:44
Compare
Choose a tag to compare

Fixes a crash when running on radix with a read-only /home

1.0.10: Improvements in efficiency, robustness and authorization.

12 Sep 12:08
d8d181e
Compare
Choose a tag to compare
  • More efficient use of httpx.
  • Add --silent option to sumo_login.
  • Re-use httpx.client instances.
  • Add timeout parameter to SumoClient constructor.
  • Enable with syntax for SumoClient.

1.0.9

19 Apr 08:57
c90b840
Compare
Choose a tag to compare

What's Changed

In short:

  • documentation and ReadTheDocs updates
  • improved login functionality/messages and fallback to device-code login

Full Changelog: 1.0.8...1.0.9

Improved retry functionality

23 Jan 08:12
c6a0dfb
Compare
Choose a tag to compare

What's Changed

  • Implement retries for authorization code by @rwiker in #183

Full Changelog: 1.0.7...1.0.8

1.0.7

21 Dec 13:54
cc02044
Compare
Choose a tag to compare

What's Changed

  • Re-introduce devicecode login as it can be useful in special situations by @roywilly in #179
  • Shared access key by @rwiker in #182

Full Changelog: 1.0.6...1.0.7

Make async methods in SumoClient work again.

23 Nov 16:50
8eb5ca5
Compare
Choose a tag to compare

What's Changed

  • Async methods obviously need AsyncRetrying, dummy. by @rwiker in #176
  • Revert back to msal>=1.20.0 by @rwiker in #177

Full Changelog: 1.0.4...1.0.6

Make async methods in SumoClient work again.

23 Nov 16:49
8eb5ca5
Compare
Choose a tag to compare

What's Changed

  • Async methods obviously need AsyncRetrying, dummy. by @rwiker in #176
  • Revert back to msal>=1.20.0 by @rwiker in #177

Full Changelog: 1.0.4...1.0.5

1.0.4

22 Nov 13:03
acc6418
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.3...1.0.4

Make version info available

26 Oct 11:29
Compare
Choose a tag to compare

Version tag is now available via sumo.wrapper.version (and sumo.wrapper.__version__):

import sumo.wrapper
print(sumo.wrapper.version)
print(sumo.wrapper.__version__)