Skip to content

Commit ca54293

Browse files
committed
3.0.0-alpha.8
1 parent 79d1420 commit ca54293

15 files changed

+69
-22
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# # commits Name or Organization <email address>
77
# The email address is not required for organizations.
88
InternalFX <[email protected]>
9+
Ivan Voznyakovsky <[email protected]>
910
Jason Dobry <[email protected]>
1011
Josh Drake <[email protected]>
1112
RobertHerhold <[email protected]>

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
##### 3.0.0-alpha.8 - 17 March 2016
2+
3+
- Rebased master
4+
15
##### 3.0.0-alpha.7 - 10 March 2016
26

37
###### Other

dist/js-data-http.js

+18-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js-data-http.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js-data-http.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js-data-http.min.map

+1-1
Large diffs are not rendered by default.

fetch/dist/js-data-fetch.js

+15-1
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

+1-1
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

+1-1
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

+1-1
Large diffs are not rendered by default.

fetch/package.json

+2-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-alpha.7",
4+
"version": "3.0.0-alpha.8",
55
"homepage": "https://github.com/js-data/js-data-http",
66
"repository": {
77
"type": "git",
@@ -19,6 +19,6 @@
1919
"fetch"
2020
],
2121
"peerDependencies": {
22-
"js-data": "^3.0.0-alpha.16"
22+
"js-data": "^3.0.0-alpha.19"
2323
}
2424
}

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

+15-1
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

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node/package.json

+1-1
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.7",
4+
"version": "3.0.0-alpha.8",
55
"homepage": "https://github.com/js-data/js-data-http",
66
"repository": {
77
"type": "git",

package.json

+5-5
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.7",
4+
"version": "3.0.0-alpha.8",
55
"homepage": "https://github.com/js-data/js-data-http",
66
"repository": {
77
"type": "git",
@@ -39,8 +39,8 @@
3939
"lint": "repo-tools lint karma.start.js karma.conf.js src/**/*.js test/*.test.js fetch/karma.*.js node/mocha.start.js scripts/*.js",
4040
"doc": "jsdoc -c conf.json src node_modules/js-data-adapter/src && node scripts/cleanup.js",
4141
"webpack": "webpack --config webpack.config.js && webpack --config node/webpack.config.js && webpack --config fetch/webpack.config.js",
42-
"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",
43-
"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",
42+
"min": "uglifyjs dist/js-data-http.js -o dist/js-data-http.min.js --source-map dist/js-data-http.min.map --source-map-url js-data-http.min.map -v -m -c --screw-ie8",
43+
"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 --source-map-url js-data-fetch.min.map -v -m -c --screw-ie8",
4444
"version": "node scripts/version.js",
4545
"banner": "node scripts/banner.js",
4646
"gzip": "echo js-data-http gzipped size: $(cat dist/js-data-http.min.js | gzip -f9 | wc -c)kb",
@@ -56,7 +56,7 @@
5656
"ci": "npm test && cat ./coverage/lcov.info | coveralls || true"
5757
},
5858
"peerDependencies": {
59-
"js-data": "^3.0.0-alpha.16"
59+
"js-data": "^3.0.0-alpha.19"
6060
},
6161
"devDependencies": {
6262
"axios": "0.9.1",
@@ -71,7 +71,7 @@
7171
"coveralls": "2.11.8",
7272
"ink-docstrap": "1.1.4",
7373
"istanbul": "0.4.2",
74-
"js-data-adapter": "0.2.1",
74+
"js-data-adapter": "0.2.2",
7575
"js-data-repo-tools": "0.2.0",
7676
"jsdoc": "3.4.0",
7777
"karma": "0.13.22",

0 commit comments

Comments
 (0)