Skip to content

Commit

Permalink
3.0.0-alpha.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Mar 6, 2016
1 parent 98f9d55 commit 6f949fb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 43 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
##### 3.0.0-alpha.9 - 06 March 2016

###### Other
- Upgraded js-data-adapter

##### 3.0.0-alpha.8 - 06 March 2016

###### Other
Expand Down
22 changes: 2 additions & 20 deletions dist/js-data-rethinkdb.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js-data-rethinkdb.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "js-data-rethinkdb",
"description": "RethinkDB adapter for js-data.",
"version": "3.0.0-alpha.8",
"version": "3.0.0-alpha.9",
"homepage": "https://github.com/js-data/js-data-rethinkdb",
"repository": {
"type": "git",
Expand Down Expand Up @@ -46,7 +46,7 @@
"ci": "npm run test && cat coverage/lcov.info | coveralls || true && cat ./coverage/lcov.info | codacy-coverage || true"
},
"dependencies": {
"js-data-adapter": "0.1.0",
"js-data-adapter": "0.1.2",
"mout": "0.12.0"
},
"peerDependencies": {
Expand Down
22 changes: 2 additions & 20 deletions src/index.js
Expand Up @@ -56,15 +56,6 @@ const DEFAULTS = {
*/
db: 'test',

/**
* Whether to log debugging information.
*
* @name RethinkDBAdapter#debug
* @type {boolean}
* @default false
*/
debug: false,

/**
* RethinkDB host.
*
Expand Down Expand Up @@ -99,16 +90,7 @@ const DEFAULTS = {
* @type {number}
* @default 10
*/
port: 28015,

/**
* Whether to return a more detailed response object.
*
* @name RethinkDBAdapter#raw
* @type {boolean}
* @default false
*/
raw: false
port: 28015
}

const INSERT_OPTS_DEFAULTS = {}
Expand Down Expand Up @@ -224,7 +206,7 @@ export default function RethinkDBAdapter (opts) {
classCallCheck(self, RethinkDBAdapter)
opts || (opts = {})
fillIn(opts, DEFAULTS)
Adapter.call(this, opts)
Adapter.call(self, opts)

/**
* Default options to pass to r#insert.
Expand Down

0 comments on commit 6f949fb

Please sign in to comment.