Skip to content

Releases: codenotary/immudb-node

v2.0.0-alpha.1

10 Dec 15:30
125cdcf
Compare
Choose a tag to compare

Alpha 1 release of 2.0.0 immudb-node client.

Fixes

  • Missing "@codenotary" organization in imports
  • Test against immudb 1.4.1

v2.0.0-alpha.0

04 Oct 07:32
a393703
Compare
Choose a tag to compare

Alpha release of 2.0.0 immudb-node client.

We are pleased to announce completely refreshed version of immudb-node client supporting the latest version of immudb.

Features

  • New API with full coverage of immudb functions, including SQL, streaming, sessions and others.
  • Support of verification with latest immudb.
  • New project structure.
  • Showcase with examples.
  • Inline and generated documentation for easier development.

v1.1.1

08 Nov 12:59
6c637cd
Compare
Choose a tag to compare

Improved messages from methods:

SQLQuery
Before:
[[['col1','col2'], ['val1.1',,,'val1.2']], [['col1','col2'], ['val2.1',,,'val2.2']], ...]
After:
[{col1: 'val1.1', col2: 'val1.2'}, {col1: 'val2.1', col2: 'val2.2'}, ...]

SQLListTables
Before:
[['tableName1'], ['tableName2'], ...]
After:
[{name: 'tableName1'}, {name: 'tableName2'}, ...]

SQLDescribe
Before:
[[string, string, boolean, string, boolean, boolean], ...]

After:

{
  name: string,
  type: string,
  nullable: boolean,
  index: string,
  autoincrement: booelan,
  unique: boolean,
},
...

v1.1.0

05 Oct 15:14
931d3cf
Compare
Choose a tag to compare
  • Update schema to version 1.1.0 of immudb
  • Add basic SQL support:
    • SQLExec
    • SQLQuery
    • SQLListTables

v1.1.0-rc.1

03 Oct 17:51
a049611
Compare
Choose a tag to compare
v1.1.0-rc.1 Pre-release
Pre-release
  • Update schema to version 1.1.0 of immudb
  • Add basic SQL support:
    • SQLExec
    • SQLQuery
    • SQLListTables

v1.0.10

22 Sep 12:19
dc3569d
Compare
Choose a tag to compare

This release contains all the changes from its RC releases:

  • Update some method parameter types
  • Fix TypeScript error in testing
  • Fixed bug with verification methods trapping in an infinite loop
  • Configure the SDK to be used in other TS projects
  • Updated schemas
  • Stabilized tests
  • Added tests for state management

v1.0.10-rc.7

09 Sep 18:24
0829bfe
Compare
Choose a tag to compare
v1.0.10-rc.7 Pre-release
Pre-release
  • Updated schemas
  • Stabilized tests
  • Added tests for state management

v1.0.10-rc.6

30 Mar 16:58
Compare
Choose a tag to compare
v1.0.10-rc.6 Pre-release
Pre-release
  • Revert directories structure
  • Remove duplicate client export

v1.0.10-rc.5

30 Mar 16:15
60f3028
Compare
Choose a tag to compare
v1.0.10-rc.5 Pre-release
Pre-release
  • Change directories structure
  • Update exported types

v1.0.10-rc.4

30 Mar 15:22
9be81b0
Compare
Choose a tag to compare
v1.0.10-rc.4 Pre-release
Pre-release
  • Update some method parameter types
  • Fix TypeScript error in testing