Skip to content

Commit 6f949fb

Browse files
committed
3.0.0-alpha.9
1 parent 98f9d55 commit 6f949fb

File tree

5 files changed

+12
-43
lines changed

5 files changed

+12
-43
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
##### 3.0.0-alpha.9 - 06 March 2016
2+
3+
###### Other
4+
- Upgraded js-data-adapter
5+
16
##### 3.0.0-alpha.8 - 06 March 2016
27

38
###### Other

dist/js-data-rethinkdb.js

Lines changed: 2 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js-data-rethinkdb.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-data-rethinkdb",
33
"description": "RethinkDB adapter for js-data.",
4-
"version": "3.0.0-alpha.8",
4+
"version": "3.0.0-alpha.9",
55
"homepage": "https://github.com/js-data/js-data-rethinkdb",
66
"repository": {
77
"type": "git",
@@ -46,7 +46,7 @@
4646
"ci": "npm run test && cat coverage/lcov.info | coveralls || true && cat ./coverage/lcov.info | codacy-coverage || true"
4747
},
4848
"dependencies": {
49-
"js-data-adapter": "0.1.0",
49+
"js-data-adapter": "0.1.2",
5050
"mout": "0.12.0"
5151
},
5252
"peerDependencies": {

src/index.js

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,6 @@ const DEFAULTS = {
5656
*/
5757
db: 'test',
5858

59-
/**
60-
* Whether to log debugging information.
61-
*
62-
* @name RethinkDBAdapter#debug
63-
* @type {boolean}
64-
* @default false
65-
*/
66-
debug: false,
67-
6859
/**
6960
* RethinkDB host.
7061
*
@@ -99,16 +90,7 @@ const DEFAULTS = {
9990
* @type {number}
10091
* @default 10
10192
*/
102-
port: 28015,
103-
104-
/**
105-
* Whether to return a more detailed response object.
106-
*
107-
* @name RethinkDBAdapter#raw
108-
* @type {boolean}
109-
* @default false
110-
*/
111-
raw: false
93+
port: 28015
11294
}
11395

11496
const INSERT_OPTS_DEFAULTS = {}
@@ -224,7 +206,7 @@ export default function RethinkDBAdapter (opts) {
224206
classCallCheck(self, RethinkDBAdapter)
225207
opts || (opts = {})
226208
fillIn(opts, DEFAULTS)
227-
Adapter.call(this, opts)
209+
Adapter.call(self, opts)
228210

229211
/**
230212
* Default options to pass to r#insert.

0 commit comments

Comments
 (0)