Skip to content

Releases: neumino/thinky

v1.0.4

06 May 17:09
Compare
Choose a tag to compare
  • Fix #62 -- saveAll should not throw if a hasMany relation is missing
  • Fix #63 -- merge should return the document

v1.0.3

03 May 23:02
Compare
Choose a tag to compare
  • Queries can be "forked"
query.count().run().then(...)
query.map(...).run().then(...)

See #50 (comment)

v1.0.2

02 May 22:33
Compare
Choose a tag to compare
  • Fix for #50
    • the reduction can be an array of documents, a document, or a datum
    • update rethinkdbdash to handle max/min/avg/sum with a field/function

v1.0.1

30 Apr 22:38
Compare
Choose a tag to compare
  • Fix the primary key option when creating a model

v1.0.0

30 Apr 22:38
Compare
Choose a tag to compare
Fix events

v0.2.24

20 Feb 02:18
Compare
Choose a tag to compare
  • Add default value for dates -- Pull request by @flienteen

v0.2.23

13 Jan 03:00
Compare
Choose a tag to compare

Fix callback if there is nothing to save // happens in case of a model linked with itself

v0.2.22

10 Jan 18:10
Compare
Choose a tag to compare
  • save uses replace now and not update.
    It was causing some problem when you want to delete a relation and use delete doc.leftKey.
  • Add tests for removing relations

v0.2.21

01 Jan 18:13
Compare
Choose a tag to compare
  • Clean code
  • Add comments
  • Fix a few small bugs for {_type: Date}, get(<Array>)

v0.2.20

31 Dec 13:32
Compare
Choose a tag to compare
  • Fix #33 -- With node 0.11.9, require('events').EventEmitter.prototype has keys that don't map to functions.