|
| 1 | +##### 3.0.0-beta.2 - 29 April 2016 |
| 2 | + |
| 3 | +###### Breaking changes |
| 4 | +- How you must now import in ES2015: |
| 5 | + |
| 6 | + ```js |
| 7 | + import RethinkDBAdapter from 'js-data-rethinkdb' |
| 8 | + const adapter = new RethinkDBAdapter() |
| 9 | + ``` |
| 10 | + or |
| 11 | + ```js |
| 12 | + import {RethinkDBAdapter, version} from 'js-data-rethinkdb' |
| 13 | + console.log(version) |
| 14 | + const adapter = new RethinkDBAdapter() |
| 15 | + ``` |
| 16 | + |
| 17 | +- How you must now import in ES5: |
| 18 | + |
| 19 | + ```js |
| 20 | + var JSDataRethinkDB = require('js-data-rethinkdb') |
| 21 | + var RethinkDBAdapter = JSDataRethinkDB.RethinkDBAdapter |
| 22 | + var adapter = new RethinkDBAdapter() |
| 23 | + ``` |
| 24 | + |
| 25 | +- `OPERATORS` is now an export, not a static property of the `RethinkDBAdapter` class. |
| 26 | + |
| 27 | +###### Other |
| 28 | +- Upgraded dependencies |
| 29 | +- Improved JSDoc comments |
| 30 | +- Now using js-data JSDoc template |
| 31 | + |
| 32 | +##### 3.0.0-beta.1 - 17 April 2016 |
| 33 | + |
| 34 | +Official v3 beta release |
| 35 | + |
| 36 | +###### Other |
| 37 | +- Upgraded dependencies |
| 38 | + |
| 39 | +##### 3.0.0-alpha.13 - 17 March 2016 |
| 40 | + |
| 41 | +###### Backwards incompatible API changes |
| 42 | +- Added sum and count methods |
| 43 | + |
| 44 | +##### 3.0.0-alpha.12 - 10 March 2016 |
| 45 | + |
| 46 | +###### Other |
| 47 | +- Moved more common adapter functionality into js-data-adapter |
| 48 | + |
| 49 | +##### 3.0.0-alpha.11 - 06 March 2016 |
| 50 | + |
| 51 | +###### Backwards compatible bug fixes |
| 52 | +- create() now makes use of withoutRelations() |
| 53 | +- More use of Adapter#respond() more consistent |
| 54 | + |
| 55 | +##### 3.0.0-alpha.10 - 06 March 2016 |
| 56 | + |
| 57 | +###### Backwards compatible API changes |
| 58 | +- Now making use of makeHasManyForeignKeys |
| 59 | + |
| 60 | +##### 3.0.0-alpha.9 - 06 March 2016 |
| 61 | + |
| 62 | +###### Other |
| 63 | +- Upgraded js-data-adapter |
| 64 | + |
| 65 | +##### 3.0.0-alpha.8 - 06 March 2016 |
| 66 | + |
| 67 | +###### Other |
| 68 | +- Extracted common adapter functionality into js-data-adapter |
| 69 | +- Extracted common js-data repo utility scripts into js-data-repo-tools |
| 70 | + |
| 71 | +##### 3.0.0-alpha.7 - 03 March 2016 |
| 72 | + |
| 73 | +###### Backwards compatible API changes |
| 74 | +- Added RethinkDBAdapter.extend |
| 75 | + |
| 76 | +##### 3.0.0-alpha.6 - 01 March 2016 |
| 77 | + |
| 78 | +###### Backwards compatible bug fixes |
| 79 | +- Couple of fixes based on the latest js-data-adapter-tests |
| 80 | + |
| 81 | +##### 3.0.0-alpha.5 - 27 February 2016 |
| 82 | + |
| 83 | +###### Backwards compatible API changes |
| 84 | +- Added ability to override query operators used by RethinkDBAdapter#filterSequence. |
| 85 | + |
| 86 | +###### Other |
| 87 | +- Improved JSDoc comments. |
| 88 | + |
| 89 | +##### 3.0.0-alpha.4 - 26 February 2016 |
| 90 | + |
| 91 | +###### Other |
| 92 | +- Finished JSDoc comments |
| 93 | + |
| 94 | +##### 3.0.0-alpha.3 - 26 February 2016 |
| 95 | + |
| 96 | +###### Backwards compatible API changes |
| 97 | +- Removed returnDeletedIds option |
| 98 | +- Added insertOpts, updateOpts, deleteOpts, and runOpts options |
| 99 | + |
| 100 | +##### 3.0.0-alpha.2 - 26 February 2016 |
| 101 | + |
| 102 | +###### Backwards compatible bug fixes |
| 103 | +- Fixed edge case with returnDeletedIds |
| 104 | + |
| 105 | +##### 3.0.0-alpha.1 - 26 February 2016 |
| 106 | + |
| 107 | +###### Breaking API changes |
| 108 | +- Now depends on js-data 3.x |
| 109 | +- Now longer uses internal `defaults` property, settings are on the adapter instance itself |
| 110 | + |
| 111 | +###### Backwards compatible API changes |
| 112 | +- Added createMany and updateMany methods |
| 113 | +- Added lifecycle hooks for all methods |
| 114 | +- Added contains, notContains, |contains, and |notContains operators |
| 115 | + |
1 | 116 | ##### 2.2.0 - 25 February 2016 |
2 | 117 |
|
3 | 118 | ###### Other |
|
0 commit comments