Skip to content

Commit 35d1137

Browse files
committed
Merge branch 'master' into release
2 parents 8ae9828 + f7a3ef7 commit 35d1137

File tree

7 files changed

+30
-47
lines changed

7 files changed

+30
-47
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
##### 3.0.0-rc.1 - 10 August 2016
2+
3+
###### Breaking changes
4+
- Now depending on js-data 3.0.0-rc.4 or greater
5+
6+
###### Backwards compatible changes
7+
- Upgraded dependencies
8+
19
##### 3.0.0-beta.8 - 08 July 2016
210

311
###### Backwards compatible changes

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
pre:
1010
- npm i -g npm
1111
- npm i -g codecov
12-
- npm i js-data@beta
12+
- npm i js-data@rc
1313
test:
1414
post:
1515
- cat ./coverage/lcov.info | codecov

conf.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
"package": "./package.json"
1313
},
1414
"templates": {
15-
"theme": "lumen",
15+
"theme": "jsdata",
1616
"systemName": "js-data-http",
1717
"copyright": "js-data-http Copyright © 2014-2016 js-data-http project authors",
1818
"outputSourceFiles": true,
19-
"syntaxTheme": "dark",
2019
"linenums": true,
21-
"footer": "<div style=\"text-align:center\">Back to <a href=\"http://js-data.io\">js-data.io</a></div>",
20+
"logoFile": "https://raw.githubusercontent.com/js-data/js-data/master/js-data-64.png",
21+
"footer": "<div style=\"text-align:center\"><a href=\"/\">api.js-data.io</a>&nbsp;&#8226;&nbsp;<a href=\"http://js-data.io\">js-data.io</a></div>",
2222
"analytics": {
2323
"ua": "UA-55528236-2",
2424
"domain": "api.js-data.io"

fetch/package.json

Lines changed: 3 additions & 3 deletions
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.8",
4+
"version": "3.0.0-rc.1",
55
"homepage": "https://github.com/js-data/js-data-http",
66
"repository": {
77
"type": "git",
@@ -22,9 +22,9 @@
2222
"fetch"
2323
],
2424
"dependencies": {
25-
"js-data-adapter": "~0.7.4"
25+
"js-data-adapter": "~0.8.0"
2626
},
2727
"peerDependencies": {
28-
"js-data": "^3.0.0-beta.10"
28+
"js-data": "^3.0.0-rc.4"
2929
}
3030
}

node/package.json

Lines changed: 4 additions & 4 deletions
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.8",
4+
"version": "3.0.0-rc.1",
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.4"
25+
"js-data-adapter": "~0.8.0"
2626
},
2727
"peerDependencies": {
28-
"axios": "^0.12.0",
29-
"js-data": "^3.0.0-beta.10"
28+
"axios": "^0.13.1",
29+
"js-data": "^3.0.0-rc.4"
3030
}
3131
}

package.json

Lines changed: 11 additions & 11 deletions
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.8",
4+
"version": "3.0.0-rc.1",
55
"homepage": "https://github.com/js-data/js-data-http",
66
"repository": {
77
"type": "git",
@@ -54,7 +54,7 @@
5454
},
5555
"scripts": {
5656
"lint": "repo-tools lint \"**/*.js\"",
57-
"doc": "jsdoc -c conf.json src node_modules/js-data-adapter/src && node scripts/cleanup.js",
57+
"doc": "jsdoc -c conf.json src node_modules/js-data-adapter/src node_modules/js-data/src/Component.js",
5858
"version": "repo-tools write-version dist/js-data-http.js fetch/dist/js-data-fetch.js node/dist/js-data-http-node.js",
5959
"bundle_http": "rollup -c rollup.config.js -f umd -o dist/js-data-http.js -m dist/js-data-http.js.map src/index.js",
6060
"bundle_fetch": "rollup -c fetch/rollup.config.js -f umd -o fetch/dist/js-data-fetch.js -m fetch/dist/js-data-fetch.js.map src/index.js",
@@ -74,26 +74,26 @@
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.4"
77+
"js-data-adapter": "~0.8.0"
7878
},
7979
"peerDependencies": {
80-
"js-data": "^3.0.0-beta.10"
80+
"js-data": "^3.0.0-rc.4"
8181
},
8282
"devDependencies": {
83-
"axios": "0.12.0",
84-
"babel-plugin-syntax-async-functions": "6.8.0",
85-
"babel-plugin-transform-regenerator": "6.9.0",
83+
"axios": "0.13.1",
84+
"babel-plugin-syntax-async-functions": "6.13.0",
85+
"babel-plugin-transform-regenerator": "6.11.4",
8686
"babel-preset-stage-0": "6.5.0",
8787
"istanbul": "0.4.4",
88-
"js-data-repo-tools": "0.5.5",
89-
"karma": "1.1.1",
88+
"js-data-repo-tools": "0.5.6",
89+
"karma": "1.1.2",
9090
"karma-browserstack-launcher": "1.0.1",
9191
"karma-chai": "0.1.0",
9292
"karma-mocha": "1.1.1",
9393
"karma-phantomjs-launcher": "1.0.1",
9494
"karma-sinon": "1.0.5",
95-
"phantomjs-prebuilt": "2.1.7",
96-
"rollup-plugin-commonjs": "3.1.0",
95+
"phantomjs-prebuilt": "2.1.11",
96+
"rollup-plugin-commonjs": "3.3.1",
9797
"rollup-plugin-replace": "1.1.1",
9898
"uglify-js": "2.7.0"
9999
}

scripts/cleanup.js

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)