Skip to content

Releases: deepstreamIO/deepstream.io-storage-rethinkdb

v3.0.0

09 Apr 02:25
Compare
Choose a tag to compare

v2.0.2

09 Apr 01:30
Compare
Choose a tag to compare
2.0.2

v1.0.2

24 Jul 22:05
Compare
Choose a tag to compare

[1.0.2] 2016-07-25

Bug Fix

Storage connector stores high level arrays under __dsList ( records should only contain objects and not arrays on a highlevel )

v1.0.1

13 Jul 12:55
Compare
Choose a tag to compare

Bug Fix

Storage connector no longer mutates original object state

v1.0.0

29 Jun 10:51
Compare
Choose a tag to compare

Improvements

  • RethinkDB package update to 2.3.1
  • Data is a first class citizen

Compatibility issues / Breaking Changes

  • 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"
   }
}