Releases: thingsdb/python-thingsdb
Releases · thingsdb/python-thingsdb
v1.1.5
- Honor timeout with
ensure_write
.
- Clear requests for when websocket connections are lost.
v1.1.4
- Incleased
max_size
for websocket connections
v1.1.3
- Added support for room joining by name
v1.1.2
- Changed
asyncio.get_event_loop()
with asyncio.get_running_loop()
as the former is deprecated.
v1.1.1
- Added
skip_strip_code
as query argument for when you want to leave the original code as-is (do not strip white-space and comments from code).
v1.1.0
- Added optional WebSocket support (requires ThingsDB v1.6.0).
- Added
close_and_wait()
method for combining close()
+ wait_closed()
.
v1.0.7
- Implemented and fixed build-in function for the /thingsdb scope. (Thanks @Koos85 )
v1.0.6
- Replaced
logging.warn(..)
with logging.warning(..)
.
- Fixed build-in functions:
del_module(..)
and set_log_level(..)
.
- Removed unused function.
v1.0.5
- Added
no_join(..)
function to Room
type (for emit only rooms).
- Marked function
id(..)
as deprecated.
- Raise correct exception when using an empty node pool.
v1.0.4
- Fixed bug entering an endless wait for connection loop, issue #38.