Skip to content

Releases: kotolex/surrealist

Version 1.1.1

19 Feb 09:18
Compare
Choose a tag to compare

Version 1.1.1 (compatible with SurrealDB version 2.2.1):

  • add ACCESS statement
  • add some tests and examples

Version 1.1.0

13 Feb 04:57
b79132f
Compare
Choose a tag to compare

Version 1.1.0 (compatible with SurrealDB version 2.2.0):

  • add DEFINE ACCESS BEARER statement
  • add REFERENCE clauses to DEFINE FIELD
  • add ALWAYS statement to DEFINE FIELD
  • fix some tests

Version 1.0.8

12 Dec 06:23
Compare
Choose a tag to compare

Version 1.0.8 (compatible with SurrealDB version 2.1.3):

  • minor fixes

Version 1.0.7

27 Nov 07:13
d2320ac
Compare
Choose a tag to compare

Version 1.0.7 (compatible with SurrealDB version 2.1.2):

  • fix tests and examples

Version 1.0.6

26 Nov 14:57
28240ab
Compare
Choose a tag to compare

Version 1.0.6 (compatible with SurrealDB version 2.1.1):

  • versionstamp is now can be used in SINCE statement for SHOW
  • by default, if no SINCE were specified Show statement generates SINCE 1
  • add DEFINE CONFIG statement, only Database object can use it
  • add examples and tests for Show
  • add examples and tests for DEFINE CONFIG
  • count for non-existent table now returns error (not 0)
  • fix tests

Version 1.0.5

06 Nov 10:21
50ad25c
Compare
Choose a tag to compare

Version 1.0.5 (compatible with SurrealDB version 2.0.4):

  • minor examples fix
  • minor pylint and readme fixes

Version 1.0.4

06 Nov 05:24
4154cc8
Compare
Choose a tag to compare

Version 1.0.4 (compatible with SurrealDB version 2.0.4):

  • fix record ids bug (cause SDB since 2.0 not convert string to record_id)
  • Readme block for RecordId
  • examples for RecordId
  • create RecordId object to work with string or uid/ulid record_id
  • now all methods can use RecordId, but strings can be used too for compatibility
  • now connection, database and table objects store transport type (http or ws)
  • redundant DATA_LENGTH_FOR_LOGS was removed
  • refactoring
  • add tests, examples and docs for record ids

Version 1.0.3

24 Oct 07:09
3bd75ba
Compare
Choose a tag to compare

Version 1.0.3 (compatible with SurrealDB version 2.0.4):

  • fix datetime bug for fields (prefix d')
  • add tests, examples and docs for datetimes
  • add test runs for Python 3.13

Version 1.0.2

08 Oct 16:24
6a4d43e
Compare
Choose a tag to compare

minor fixes

Version 1.0.1

02 Oct 10:23
8b21ec8
Compare
Choose a tag to compare

Version 1.0.1 (compatible with SurrealDB version 2.0.2):

add run method for connections and run_function for Database (https://surrealdb.com/docs/surrealdb/integration/rpc#run)
add insert_relation method for connections (https://surrealdb.com/docs/surrealdb/integration/rpc#insert_relation)
add version method for connections (https://surrealdb.com/docs/surrealdb/integration/rpc#version)
add info method for connections (https://surrealdb.com/docs/surrealdb/integration/rpc#info)
add relate method for connections (https://surrealdb.com/docs/surrealdb/integration/rpc#relate)
add graphql method for connections (https://surrealdb.com/docs/surrealdb/integration/rpc#graphql)
minor fixes for docs and examples