Skip to content

v1.0.0

Compare
Choose a tag to compare
@yasserf yasserf released this 29 Jun 10:51
· 53 commits to master since this release

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