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

Releases: PhilWaldmann/openrecord

More bugfixes

17 Jun 09:14
Compare
Choose a tag to compare
v1.9.4

Activedirectory bugfixes + store model loading enhancements

Bugfixes + dependency updates

11 Jun 14:34
Compare
Choose a tag to compare
v1.9.2

version 1.9.3

sync()

04 May 18:25
Compare
Choose a tag to compare

You could optionally install node fibers and use the sync() function to do everything synchronous (no callbacks!).

store.sync(function(){
  var user = User.find(1).exec();
  user.active = false;
  user.save();
})

A lot of LDAP Bugfixes

26 Feb 15:05
Compare
Choose a tag to compare
v1.8.6

more ldap bugfixes

Automatic change tracking of object attributes

06 Feb 11:02
Compare
Choose a tag to compare
Merge branch 'master' of https://github.com/PhilWaldmann/openrecord

Conflicts:
	.gitignore

Nested Set bugfixes

29 Jan 17:14
Compare
Choose a tag to compare
v1.7.4

nested set bugfixes

Dependent destroy bugfix

28 Jan 10:27
Compare
Choose a tag to compare
v1.7.2

dependent destroy bugfix

ActiveDirectory support

19 Jan 09:36
Compare
Choose a tag to compare

With version 1.7 OpenRecord adds support for Microsoft`s ActiveDirectory.

receiving a user with all it's groups is easy:

var OpenRecord = require('openrecord');

var store = new OpenRecord({
  type: 'activedirectory',
  url: 'ldaps://domain.lan',
  user: 'Domain\\Administrator',
  password: 'password',
  base: 'dc=domain,dc=lan'
});


store.ready(function(){
  var User = store.Model('User');

  User.find('cn=Administrator,cn=Users,dc=domain,dc=lan').include('groups').exec(function(admin){
    console.log(admin);
    process.exit(0);
  });

});

sorted_list and nested_set bugfixes

20 Nov 14:28
Compare
Choose a tag to compare

fixes some tests and postgres count()

13 Nov 19:34
Compare
Choose a tag to compare