Skip to content

Releases: js-data/js-data-redis

3.0.0-beta.2

03 May 16:13
Compare
Choose a tag to compare
3.0.0-beta.2 Pre-release
Pre-release
3.0.0-beta.2 - 03 May 2016
Breaking changes
  • How you must now import in ES2015:

    import RedisAdapter from 'js-data-redis'
    const adapter = new RedisAdapter()

    or

    import {RedisAdapter, version} from 'js-data-redis'
    console.log(version)
    const adapter = new RedisAdapter()
  • How you must now import in ES5:

    var JSDataRedis = require('js-data-redis')
    var RedisAdapter = JSDataRedis.RedisAdapter
    var adapter = new RedisAdapter()
  • Moved some dist files to release to reduce noise

Other
  • Upgraded dependencies
  • Improved JSDoc comments
  • Now using js-data JSDoc template

3.0.0-beta.2 API Reference Docs

3.0.0-beta.1

18 Apr 04:45
Compare
Choose a tag to compare
3.0.0-beta.1 Pre-release
Pre-release
3.0.0-beta.1 - 17 April 2016

Official v3 beta release

Other
  • Upgraded dependencies

3.0.0-beta.1 API Reference docs

3.0.0-alpha.3

18 Mar 15:32
Compare
Choose a tag to compare
3.0.0-alpha.3 Pre-release
Pre-release
3.0.0-alpha.3 - 18 March 2016
Backwards compatible API changes
  • Added count and sum methods

3.0.0-alpha.3 API Reference Docs

3.0.0-alpha.2 - 10 March 2016
Other
  • Moved more common adapter functionality into js-data-adapter

3.0.0-alpha.1

09 Mar 07:06
Compare
Choose a tag to compare
3.0.0-alpha.1 Pre-release
Pre-release
3.0.0-alpha.1 - 09 March 2016
Breaking API changes
  • Now depends on js-data 3.x
  • Now longer uses internal defaults property, settings are on the adapter instance itself
Backwards compatible API changes
  • Added createMany and updateMany methods
  • Added lifecycle hooks for all methods
Other
  • Now using js-data-adapter
  • Now using js-data-repo-tools

3.0.0-alpha.1 API Reference Docs

2.3.0

12 Nov 04:25
Compare
Choose a tag to compare
2.3.0 - 11 November 2015
Other
  • Rebuilt with Babel 6
  • Dropped Grunt
  • Integrated js-data-adapter-tests

2.2.0

10 Sep 05:11
Compare
Choose a tag to compare
2.2.0 - 09 September 2015
Backwards compatible API changes
  • #8 - Added support for changing host and port

2.1.0

11 Jul 02:12
Compare
Choose a tag to compare
2.1.0 - 10 July 2015
Backwards compatible API changes
  • #6 - Support loading relations in find() (better support this time)
  • #7 - Support loading relations in findAll() (better support this time)

2.0.0

03 Jul 12:09
Compare
Choose a tag to compare
2.0.0 - 02 July 2015

Stable Version 2.0.0

1.1.0

27 Mar 16:07
Compare
Choose a tag to compare
1.1.0 - 27 March 2015
Backwards compatible API changes
  • #4 - Support loading relations in find()
  • #5 - Support loading relations in findAll()
Backwards compatible bug fixes
  • #2 - Should not be saving relations (duplicating data)
  • #3 - Should be using removeCircular

1.0.3

10 Mar 18:02
Compare
Choose a tag to compare
1.0.3 - 10 March 2015

Convert to ES6.