Releases: codenotary/immudb-node
Releases · codenotary/immudb-node
v2.0.0-alpha.1
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
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
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
v1.1.0-rc.1
- Update schema to version 1.1.0 of immudb
- Add basic SQL support:
SQLExec
SQLQuery
SQLListTables
v1.0.10
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
- Updated schemas
- Stabilized tests
- Added tests for state management
v1.0.10-rc.6
- Revert directories structure
- Remove duplicate client export
v1.0.10-rc.5
- Change directories structure
- Update exported types
v1.0.10-rc.4
- Update some method parameter types
- Fix TypeScript error in testing