Releases: kotolex/surrealist
Releases · kotolex/surrealist
Version 0.5.2
Version 0.5.2 (compatible with SurrealDB version 1.5.1):
- now user should use standard logging for debug
- remove log_level arguments for classes
- add LOG_FORMAT for default uses
- fix README
Version 0.5.1
Version 0.5.1 (compatible with SurrealDB version 1.5.0):
- add more precise names for INDEX methods (M, TYPE)
- limit allowed options for some methods (TYPE)
- add documentation for index methods
- change BM25 (add docs and parameters)
- fix validate method bug for changefeed
- fix README, examples and tests
Version 0.5.0
Version 0.5.0 (compatible with SurrealDB version 1.5.0):
- although INCLUDE ORIGINAL statement exists, it has no effect (SurrealDB team decision for 1.5.0)
- add REBUILD INDEX statement, usable for database and table objects
- improve DEFINE INDEX statement, now it can use MTREE and HNSW indexes
- fix #44 , so now set() and other methods which has optional string and
keyword-arguments for QL will combine string and kwargs - add INFO ... STRUCTURE feature as optional, by default it is not used as it is for internal use of SDB
- add more examples and tests
Version 0.4.1
compatible with SurrealDB version 1.4.2
- add to_surreal_datetime_str and to_datetime functions, cause SurealDB has a specific datetime format
- minor improvements for documentation, examples and tests
Version 0.4.0
- code attribute of a result is now containing http status code or error code for websocket
- SHOW CHANGES uses current date-time if not specified, because SHOW does not work without SINCE
- fix live queries url links
- live query for QL is now can use VALUE and custom query
- DEFINE TABLE now can use TYPE and INCLUDE ORIGINAL
- minor improvements for documentation, examples and tests
Version 0.3.1
- increment default timeout to 15 seconds
- minor improvements for documentation
Version 0.3.0
Support for SurrealDb version 1.3.0
- add IF NOT EXISTS for all DEFINE statements
- add IF EXISTS for all REMOVE statements
- improvements for documentation, examples and tests
Version 0.2.10
minor improvements for documentation and tests
Version 0.2.9
create DatabaseConnectionsPool for use at a high load
Refer to: https://github.com/kotolex/surrealist?tab=readme-ov-file#connections-pool
Version 0.2.8
- database now can use DEFINE FIELD, DEFINE TABLE
- Select now can use multiple aliases (AS)
- improve documentation and examples