- Updating dependencies
- Switching to circleci
Fix npm package
Updating dependencies
- Saving lists (@valentinvichnal)
- Uses typescript
- Support V4 API
- Updating dependencies, support latest mongo server
find
andfindOne
queries implemented by kombuchafox
Storage connector stores high level arrays under __dsList ( records should only contain objects and not arrays on a highlevel )
- RethinkDB package update to 2.3.1
- Data is a first class citizen
- deepstream metadata is now stored within each record under
__ds
to improve querying. Updating to this version will require data to be migrated to new structure.
Now
{
"name": "John'",
"age": "24",
"__ds": {
"_v": "10"
}
}
Before:
{
"_v": "10",
"_d": {
"name": "John",
"age": "24"
}
}