Skip to content

Releases: infrasonar/python-libservice

v0.1.17

20 Sep 13:16
Compare
Choose a tag to compare
  • Fixed all Typing issues.

v0.1.16

10 Sep 11:13
Compare
Choose a tag to compare
  • Compatibility with Python 3.12

Warning

This version takes control over the asyncio event loop. If a loop is required, use the one initiated by this library unless you know what you are doing.

from libservice import loop
...

v0.1.15

30 Apr 09:55
Compare
Choose a tag to compare
  • Added hub.get_check_data() function.
from libservice.hub import hub
...
result = await hub.get_check_data(asset_id, check_id, raw=True)

v0.1.14

30 Apr 08:27
Compare
Choose a tag to compare
  • Added the option to get the container Id for and asset Id outside a check (and check if the asset is scheduled).
from libservice.serviceroom import service_room

container_id = service_room.get_container_id(asset_id)
if container_id is None:
    # missing asset ID

v0.1.12

31 Aug 08:18
Compare
Choose a tag to compare
  • Upgrade library dependencies.

v0.1.11

25 Jul 12:23
Compare
Choose a tag to compare
  • Improved logging.
  • Upgrade library dependencies.

v0.1.10

05 Jul 21:15
Compare
Choose a tag to compare
  • Added the option to get an async asset lock.
  • Implement get alerts counter to internal hub protocol.

v0.1.9

21 Apr 10:47
Compare
Choose a tag to compare
  • Implemented check timeout (using check interval for single asset, max timeout for multi asset).

v0.1.8

21 Apr 09:51
Compare
Choose a tag to compare
  • Added NoCountException support (for the CheckBase class only).

v0.1.7

20 Apr 18:13
Compare
Choose a tag to compare
  • Use container_id instead of asset_id to read the encryption key.