Skip to content

Commit 8cb352a

Browse files
committed
Merge branch 'master' into release
2 parents 96cda70 + 06b2c28 commit 8cb352a

File tree

6 files changed

+268
-302
lines changed

6 files changed

+268
-302
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
##### 3.0.0-beta.8 - 08 July 2016
2+
3+
###### Backwards compatible changes
4+
- Upgraded dependencies
5+
- Adapter now extends `Component`
6+
17
##### 3.0.0-beta.7 - 25 May 2016
28

39
###### Backwards compatible changes

Diff for: fetch/package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-data-fetch",
33
"description": "HTTP adapter for js-data that uses the fetch API.",
4-
"version": "3.0.0-beta.7",
4+
"version": "3.0.0-beta.8",
55
"homepage": "https://github.com/js-data/js-data-http",
66
"repository": {
77
"type": "git",
@@ -21,7 +21,10 @@
2121
"http",
2222
"fetch"
2323
],
24+
"dependencies": {
25+
"js-data-adapter": "~0.7.4"
26+
},
2427
"peerDependencies": {
25-
"js-data": "^3.0.0-beta.6"
28+
"js-data": "^3.0.0-beta.10"
2629
}
2730
}

Diff for: node/mocha.start.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict'
22

33
var querystring = require('querystring')
4+
require('source-map-support').install()
45

56
before(function () {
67
var Test = this

Diff for: node/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-data-http-node",
33
"description": "Node.js HTTP adapter for js-data.",
4-
"version": "3.0.0-beta.7",
4+
"version": "3.0.0-beta.8",
55
"homepage": "https://github.com/js-data/js-data-http",
66
"repository": {
77
"type": "git",
@@ -22,10 +22,10 @@
2222
"node.js"
2323
],
2424
"dependencies": {
25-
"js-data-adapter": "~0.7.3"
25+
"js-data-adapter": "~0.7.4"
2626
},
2727
"peerDependencies": {
28-
"axios": "^0.11.1",
29-
"js-data": "^3.0.0-beta.6"
28+
"axios": "^0.12.0",
29+
"js-data": "^3.0.0-beta.10"
3030
}
3131
}

Diff for: package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-data-http",
33
"description": "HTTP (XHR) adapter for js-data in the browser.",
4-
"version": "3.0.0-beta.7",
4+
"version": "3.0.0-beta.8",
55
"homepage": "https://github.com/js-data/js-data-http",
66
"repository": {
77
"type": "git",
@@ -68,33 +68,33 @@
6868
"build": "npm run lint && npm run bundle && npm run min && npm run min_fetch && npm run banner",
6969
"karma": "karma start",
7070
"karma_fetch": "karma start fetch/karma.conf.js",
71-
"mocha": "mocha -t 20000 -R dot -r source-map-support/register node/mocha.start.js test/*.test.js",
72-
"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",
71+
"mocha": "mocha -t 20000 -R dot node/mocha.start.js test/*.test.js",
72+
"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",
7373
"test": "npm run build && npm run karma && npm run karma_fetch && npm run cover",
7474
"release": "npm test && npm run doc && repo-tools updates && repo-tools changelog && repo-tools authors"
7575
},
7676
"dependencies": {
77-
"js-data-adapter": "0.7.3"
77+
"js-data-adapter": "0.7.4"
7878
},
7979
"peerDependencies": {
80-
"js-data": "^3.0.0-beta.6"
80+
"js-data": "^3.0.0-beta.10"
8181
},
8282
"devDependencies": {
83-
"axios": "0.11.1",
83+
"axios": "0.12.0",
8484
"babel-plugin-syntax-async-functions": "6.8.0",
8585
"babel-plugin-transform-regenerator": "6.9.0",
8686
"babel-preset-stage-0": "6.5.0",
87-
"istanbul": "0.4.3",
88-
"js-data-repo-tools": "0.5.2",
89-
"karma": "0.13.22",
90-
"karma-browserstack-launcher": "1.0.0",
87+
"istanbul": "0.4.4",
88+
"js-data-repo-tools": "0.5.5",
89+
"karma": "1.1.1",
90+
"karma-browserstack-launcher": "1.0.1",
9191
"karma-chai": "0.1.0",
92-
"karma-mocha": "1.0.1",
93-
"karma-phantomjs-launcher": "1.0.0",
92+
"karma-mocha": "1.1.1",
93+
"karma-phantomjs-launcher": "1.0.1",
9494
"karma-sinon": "1.0.5",
9595
"phantomjs-prebuilt": "2.1.7",
96-
"rollup-plugin-commonjs": "2.2.1",
97-
"rollup-plugin-replace": "1.1.0",
98-
"uglify-js": "2.6.2"
96+
"rollup-plugin-commonjs": "3.1.0",
97+
"rollup-plugin-replace": "1.1.1",
98+
"uglify-js": "2.7.0"
9999
}
100100
}

0 commit comments

Comments
 (0)