Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Releases: PhilWaldmann/openrecord

scope include with empty result bugfix

15 Jul 07:43
Compare
Choose a tag to compare
v1.1.2

scope include with empty result bugfix

asJson() + include() bugfix

10 Jul 14:05
Compare
Choose a tag to compare
v1.1.1

Include with asJson bugfix

added `asRaw()`

07 Jul 14:15
Compare
Choose a tag to compare

... to get the unprocessed output of your sql backend

handle function calls as raw sql in GROUP

07 Jul 13:40
Compare
Choose a tag to compare
v1.0.1

handle function calls as raw sql in GROUP

Version 1.0

02 Jul 21:22
Compare
Choose a tag to compare
  • Full Documentation is available in the wiki
  • OpenRecord now has its own logo
  • 1011 unittests
  • Documentation will be generated automatically with every release

More examples coming soon!

Last version before 1.0

01 Jul 21:41
Compare
Choose a tag to compare

Fixes:

  • Updated jsdoc
  • Fixed aggregate function with joins bug

New:

  • Added the ability to include scoped results.
    eg.
User.limit(20).include(':totalCount').exec(function(users){
  //users.length == 20
  //users.$totalCount > 20
});

this also works for relations

User.where({name_like: 'joe'}).include('posts:totalCount').exec(function(users){
  //users.posts$totalCount == total count of all posts of all joes
});

Nested Set Plugin Bugfix

02 Jun 12:16
Compare
Choose a tag to compare
v0.16.6

Nested Set Plugin Bugfix

returns nothing on e.g. where({id:[]})

22 May 13:38
Compare
Choose a tag to compare
v0.16.5

return nothing on e.g. where({id:[]})

hstore bugfix

22 May 11:37
Compare
Choose a tag to compare
v0.16.4

postgres test fixes

add 'leaf' attribute to nestedSet

19 May 09:58
Compare
Choose a tag to compare
v0.16.3

add 'leaf' attribute to nested set model