Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Jul 8, 2016
2 parents 96cda70 + 06b2c28 commit 8cb352a
Show file tree
Hide file tree
Showing 6 changed files with 268 additions and 302 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
##### 3.0.0-beta.8 - 08 July 2016

###### Backwards compatible changes
- Upgraded dependencies
- Adapter now extends `Component`

##### 3.0.0-beta.7 - 25 May 2016

###### Backwards compatible changes
Expand Down
7 changes: 5 additions & 2 deletions fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-data-fetch",
"description": "HTTP adapter for js-data that uses the fetch API.",
"version": "3.0.0-beta.7",
"version": "3.0.0-beta.8",
"homepage": "https://github.com/js-data/js-data-http",
"repository": {
"type": "git",
Expand All @@ -21,7 +21,10 @@
"http",
"fetch"
],
"dependencies": {
"js-data-adapter": "~0.7.4"
},
"peerDependencies": {
"js-data": "^3.0.0-beta.6"
"js-data": "^3.0.0-beta.10"
}
}
1 change: 1 addition & 0 deletions node/mocha.start.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict'

var querystring = require('querystring')
require('source-map-support').install()

before(function () {
var Test = this
Expand Down
8 changes: 4 additions & 4 deletions node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-data-http-node",
"description": "Node.js HTTP adapter for js-data.",
"version": "3.0.0-beta.7",
"version": "3.0.0-beta.8",
"homepage": "https://github.com/js-data/js-data-http",
"repository": {
"type": "git",
Expand All @@ -22,10 +22,10 @@
"node.js"
],
"dependencies": {
"js-data-adapter": "~0.7.3"
"js-data-adapter": "~0.7.4"
},
"peerDependencies": {
"axios": "^0.11.1",
"js-data": "^3.0.0-beta.6"
"axios": "^0.12.0",
"js-data": "^3.0.0-beta.10"
}
}
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-data-http",
"description": "HTTP (XHR) adapter for js-data in the browser.",
"version": "3.0.0-beta.7",
"version": "3.0.0-beta.8",
"homepage": "https://github.com/js-data/js-data-http",
"repository": {
"type": "git",
Expand Down Expand Up @@ -68,33 +68,33 @@
"build": "npm run lint && npm run bundle && npm run min && npm run min_fetch && npm run banner",
"karma": "karma start",
"karma_fetch": "karma start fetch/karma.conf.js",
"mocha": "mocha -t 20000 -R dot -r source-map-support/register node/mocha.start.js test/*.test.js",
"cover": "istanbul cover -x node/dist/js-data-http-node-tests.js --hook-run-in-context node_modules/mocha/bin/_mocha -- -t 20000 -R dot -r source-map-support/register node/mocha.start.js test/*.test.js",
"mocha": "mocha -t 20000 -R dot node/mocha.start.js test/*.test.js",
"cover": "istanbul cover -x node/dist/js-data-http-node-tests.js --hook-run-in-context node_modules/mocha/bin/_mocha -- -t 20000 -R dot node/mocha.start.js test/*.test.js",
"test": "npm run build && npm run karma && npm run karma_fetch && npm run cover",
"release": "npm test && npm run doc && repo-tools updates && repo-tools changelog && repo-tools authors"
},
"dependencies": {
"js-data-adapter": "0.7.3"
"js-data-adapter": "0.7.4"
},
"peerDependencies": {
"js-data": "^3.0.0-beta.6"
"js-data": "^3.0.0-beta.10"
},
"devDependencies": {
"axios": "0.11.1",
"axios": "0.12.0",
"babel-plugin-syntax-async-functions": "6.8.0",
"babel-plugin-transform-regenerator": "6.9.0",
"babel-preset-stage-0": "6.5.0",
"istanbul": "0.4.3",
"js-data-repo-tools": "0.5.2",
"karma": "0.13.22",
"karma-browserstack-launcher": "1.0.0",
"istanbul": "0.4.4",
"js-data-repo-tools": "0.5.5",
"karma": "1.1.1",
"karma-browserstack-launcher": "1.0.1",
"karma-chai": "0.1.0",
"karma-mocha": "1.0.1",
"karma-phantomjs-launcher": "1.0.0",
"karma-mocha": "1.1.1",
"karma-phantomjs-launcher": "1.0.1",
"karma-sinon": "1.0.5",
"phantomjs-prebuilt": "2.1.7",
"rollup-plugin-commonjs": "2.2.1",
"rollup-plugin-replace": "1.1.0",
"uglify-js": "2.6.2"
"rollup-plugin-commonjs": "3.1.0",
"rollup-plugin-replace": "1.1.1",
"uglify-js": "2.7.0"
}
}
Loading

0 comments on commit 8cb352a

Please sign in to comment.