Skip to content

Commit ff47282

Browse files
committed
Stable Version 3.0.0-alpha.3
1 parent 162f214 commit ff47282

20 files changed

+3934
-251
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
build_examples/
22
coverage/
3+
doc/
34
fetch/
45
node/
56
scripts/

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.3 - 10 January 2016
2+
3+
###### Backwards compatible API changes
4+
- Added updateMany, createMany, and responseError methods.
5+
16
##### 3.0.0-alpha.2 - 09 January 2016
27

38
###### Breaking API changes

conf.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"source": {
3+
"includePattern": ".*js$"
4+
},
5+
"plugins": ["plugins/markdown"],
6+
"opts": {
7+
"template": "./node_modules/ink-docstrap/template",
8+
"destination": "./doc/",
9+
"recurse": true,
10+
"verbose": true,
11+
"readme": "./README.md",
12+
"package": "./package.json"
13+
},
14+
"templates": {
15+
"theme": "lumen",
16+
"systemName": "js-data-http",
17+
"copyright": "js-data-http Copyright © 2014-2016 Jason Dobry"
18+
}
19+
}

dist/js-data-http.js

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

dist/js-data-http.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.

dist/js-data-http.min.js

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

dist/js-data-http.min.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.

fetch/dist/js-data-fetch.js

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

fetch/dist/js-data-fetch.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.

fetch/dist/js-data-fetch.min.js

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

fetch/dist/js-data-fetch.min.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.

fetch/package.json

Lines changed: 1 addition & 1 deletion
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 fetch.",
4-
"version": "3.0.0-alpha.2",
4+
"version": "3.0.0-alpha.3",
55
"homepage": "http://www.js-data.io/docs/dshttpadapter",
66
"repository": {
77
"type": "git",

node/dist/js-data-http-node.js

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

node/dist/js-data-http-node.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.

node/package.json

Lines changed: 1 addition & 1 deletion
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-alpha.2",
4+
"version": "3.0.0-alpha.3",
55
"homepage": "http://www.js-data.io/docs/dshttpadapter",
66
"repository": {
77
"type": "git",

package.json

Lines changed: 5 additions & 2 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-alpha.2",
4+
"version": "3.0.0-alpha.3",
55
"homepage": "http://www.js-data.io/docs/dshttpadapter",
66
"repository": {
77
"type": "git",
@@ -37,6 +37,7 @@
3737
},
3838
"scripts": {
3939
"lint": "standard karma.start.js karma.conf.js src/**/*.js test/*.test.js fetch/karma.*.js node/mocha.start.js",
40+
"doc": "jsdoc -c conf.json src",
4041
"webpack": "webpack --config webpack.config.js && webpack --config node/webpack.config.js && webpack --config fetch/webpack.config.js",
4142
"min": "uglifyjs dist/js-data-http.js -o dist/js-data-http.min.js --source-map dist/js-data-http.min.map -v -m -c --screw-ie8",
4243
"min_fetch": "uglifyjs fetch/dist/js-data-fetch.js -o fetch/dist/js-data-fetch.min.js --source-map fetch/dist/js-data-fetch.min.map -v -m -c --screw-ie8",
@@ -53,7 +54,7 @@
5354
"ci": "npm test && cat ./coverage/lcov.info | coveralls || true && cat ./coverage/lcov.info | codacy-coverage || true"
5455
},
5556
"peerDependencies": {
56-
"js-data": "^3.0.0-alpha.8"
57+
"js-data": "^3.0.0-alpha.10"
5758
},
5859
"devDependencies": {
5960
"axios": "0.8.1",
@@ -69,7 +70,9 @@
6970
"codacy-coverage": "1.1.3",
7071
"coveralls": "2.11.6",
7172
"es6-promise": "3.0.2",
73+
"ink-docstrap": "1.1.0",
7274
"istanbul": "0.4.1",
75+
"jsdoc": "3.4.0",
7376
"karma": "0.13.19",
7477
"karma-browserstack-launcher": "0.1.8",
7578
"karma-chai": "0.1.0",

0 commit comments

Comments
 (0)