Skip to content

Commit 8e7aa5b

Browse files
committedFeb 28, 2017
v1.2.1
1 parent 0a5fd05 commit 8e7aa5b

8 files changed

+51
-42
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ $ bower install vue-resource
2222
```
2323

2424
### CDN
25-
Available on [jsdelivr](https://cdn.jsdelivr.net/vue.resource/1.2.0/vue-resource.min.js), [cdnjs](https://cdnjs.com/libraries/vue-resource) or [unpkg](https://unpkg.com/vue-resource@1.2.0/dist/vue-resource.min.js).
25+
Available on [jsdelivr](https://cdn.jsdelivr.net/vue.resource/1.2.1/vue-resource.min.js), [cdnjs](https://cdnjs.com/libraries/vue-resource) or [unpkg](https://unpkg.com/vue-resource@1.2.1/dist/vue-resource.min.js).
2626
```html
27-
<script src="https://cdn.jsdelivr.net/vue.resource/1.2.0/vue-resource.min.js"></script>
27+
<script src="https://cdn.jsdelivr.net/vue.resource/1.2.1/vue-resource.min.js"></script>
2828
```
2929

3030
## Example

‎bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-resource",
33
"main": "dist/vue-resource.js",
4-
"version": "1.2.0",
4+
"version": "1.2.1",
55
"description": "The HTTP client for Vue.js",
66
"homepage": "https://github.com/pagekit/vue-resource",
77
"license": "MIT",

‎build/release.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ var version = process.argv[2];
33

44
replace({
55
files: "bower.json",
6-
replace: /("version"\s*:\s*")\d+\.\d+\.\d+("\s*,)/g,
7-
with: "$1" + version + "$2"
6+
from: /("version"\s*:\s*")\d+\.\d+\.\d+("\s*,)/g,
7+
to: "$1" + version + "$2"
88
});
99

1010
replace({
1111
files: "package.json",
12-
replace: /("version"\s*:\s*")\d+\.\d+\.\d+("\s*,)/g,
13-
with: "$1" + version + "$2"
12+
from: /("version"\s*:\s*")\d+\.\d+\.\d+("\s*,)/g,
13+
to: "$1" + version + "$2"
1414
});
1515

1616
replace({
1717
files: "README.md",
18-
replace: /(\/|@)\d+\.\d+\.\d+/g,
19-
with: "$1" + version
18+
from: /(\/|@)\d+\.\d+\.\d+/g,
19+
to: "$1" + version
2020
});

‎dist/vue-resource.common.js

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-resource v1.2.0
2+
* vue-resource v1.2.1
33
* https://github.com/pagekit/vue-resource
44
* Released under the MIT License.
55
*/
@@ -262,19 +262,22 @@ p.finally = function (callback) {
262262
* Utility functions.
263263
*/
264264

265-
var debug = false;
266-
var util = {};
267265
var ref = {};
268266
var hasOwnProperty = ref.hasOwnProperty;
269267

270268
var ref$1 = [];
271269
var slice = ref$1.slice;
270+
var debug = false;
271+
var ntick;
272272

273273
var inBrowser = typeof window !== 'undefined';
274274

275-
var Util = function (Vue) {
276-
util = Vue.util;
277-
debug = Vue.config.debug || !Vue.config.silent;
275+
var Util = function (ref) {
276+
var config = ref.config;
277+
var nextTick = ref.nextTick;
278+
279+
ntick = nextTick;
280+
debug = config.debug || !config.silent;
278281
};
279282

280283
function warn(msg) {
@@ -290,7 +293,7 @@ function error(msg) {
290293
}
291294

292295
function nextTick(cb, ctx) {
293-
return util.nextTick(cb, ctx);
296+
return ntick(cb, ctx);
294297
}
295298

296299
function trim(str) {
@@ -1192,7 +1195,7 @@ Headers.prototype.get = function get (name) {
11921195

11931196
var list = this.map[getName(this.map, name)];
11941197

1195-
return list ? list[0] : null;
1198+
return list ? list.join() : null;
11961199
};
11971200

11981201
Headers.prototype.getAll = function getAll (name) {
@@ -1205,9 +1208,9 @@ Headers.prototype.set = function set (name, value) {
12051208

12061209
Headers.prototype.append = function append (name, value){
12071210

1208-
var list = this.getAll(name);
1211+
var list = this.map[getName(this.map, name)];
12091212

1210-
if (list.length) {
1213+
if (list) {
12111214
list.push(trim(value));
12121215
} else {
12131216
this.set(name, value);

‎dist/vue-resource.es2015.js

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-resource v1.2.0
2+
* vue-resource v1.2.1
33
* https://github.com/pagekit/vue-resource
44
* Released under the MIT License.
55
*/
@@ -260,19 +260,22 @@ p.finally = function (callback) {
260260
* Utility functions.
261261
*/
262262

263-
var debug = false;
264-
var util = {};
265263
var ref = {};
266264
var hasOwnProperty = ref.hasOwnProperty;
267265

268266
var ref$1 = [];
269267
var slice = ref$1.slice;
268+
var debug = false;
269+
var ntick;
270270

271271
var inBrowser = typeof window !== 'undefined';
272272

273-
var Util = function (Vue) {
274-
util = Vue.util;
275-
debug = Vue.config.debug || !Vue.config.silent;
273+
var Util = function (ref) {
274+
var config = ref.config;
275+
var nextTick = ref.nextTick;
276+
277+
ntick = nextTick;
278+
debug = config.debug || !config.silent;
276279
};
277280

278281
function warn(msg) {
@@ -288,7 +291,7 @@ function error(msg) {
288291
}
289292

290293
function nextTick(cb, ctx) {
291-
return util.nextTick(cb, ctx);
294+
return ntick(cb, ctx);
292295
}
293296

294297
function trim(str) {
@@ -1190,7 +1193,7 @@ Headers.prototype.get = function get (name) {
11901193

11911194
var list = this.map[getName(this.map, name)];
11921195

1193-
return list ? list[0] : null;
1196+
return list ? list.join() : null;
11941197
};
11951198

11961199
Headers.prototype.getAll = function getAll (name) {
@@ -1203,9 +1206,9 @@ Headers.prototype.set = function set (name, value) {
12031206

12041207
Headers.prototype.append = function append (name, value){
12051208

1206-
var list = this.getAll(name);
1209+
var list = this.map[getName(this.map, name)];
12071210

1208-
if (list.length) {
1211+
if (list) {
12091212
list.push(trim(value));
12101213
} else {
12111214
this.set(name, value);

‎dist/vue-resource.js

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-resource v1.2.0
2+
* vue-resource v1.2.1
33
* https://github.com/pagekit/vue-resource
44
* Released under the MIT License.
55
*/
@@ -266,19 +266,22 @@ p.finally = function (callback) {
266266
* Utility functions.
267267
*/
268268

269-
var debug = false;
270-
var util = {};
271269
var ref = {};
272270
var hasOwnProperty = ref.hasOwnProperty;
273271

274272
var ref$1 = [];
275273
var slice = ref$1.slice;
274+
var debug = false;
275+
var ntick;
276276

277277
var inBrowser = typeof window !== 'undefined';
278278

279-
var Util = function (Vue) {
280-
util = Vue.util;
281-
debug = Vue.config.debug || !Vue.config.silent;
279+
var Util = function (ref) {
280+
var config = ref.config;
281+
var nextTick = ref.nextTick;
282+
283+
ntick = nextTick;
284+
debug = config.debug || !config.silent;
282285
};
283286

284287
function warn(msg) {
@@ -294,7 +297,7 @@ function error(msg) {
294297
}
295298

296299
function nextTick(cb, ctx) {
297-
return util.nextTick(cb, ctx);
300+
return ntick(cb, ctx);
298301
}
299302

300303
function trim(str) {
@@ -1196,7 +1199,7 @@ Headers.prototype.get = function get (name) {
11961199

11971200
var list = this.map[getName(this.map, name)];
11981201

1199-
return list ? list[0] : null;
1202+
return list ? list.join() : null;
12001203
};
12011204

12021205
Headers.prototype.getAll = function getAll (name) {
@@ -1209,9 +1212,9 @@ Headers.prototype.set = function set (name, value) {
12091212

12101213
Headers.prototype.append = function append (name, value){
12111214

1212-
var list = this.getAll(name);
1215+
var list = this.map[getName(this.map, name)];
12131216

1214-
if (list.length) {
1217+
if (list) {
12151218
list.push(trim(value));
12161219
} else {
12171220
this.set(name, value);

‎dist/vue-resource.min.js

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

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-resource",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"main": "dist/vue-resource.common.js",
55
"jsnext:main": "dist/vue-resource.es2015.js",
66
"description": "The HTTP client for Vue.js",

0 commit comments

Comments
 (0)
Please sign in to comment.