mirror of
https://github.com/tenrok/axios.git
synced 2026-06-20 20:00:40 +03:00
Releasing 0.3.1
This commit is contained in:
@@ -22,3 +22,7 @@
|
|||||||
- Fixing `success` and `error` to properly receive response data as individual arguments ([#8](https://github.com/mzabriskie/axios/issues/8))
|
- Fixing `success` and `error` to properly receive response data as individual arguments ([#8](https://github.com/mzabriskie/axios/issues/8))
|
||||||
- Updating `then` and `catch` to receive response data as a single object
|
- Updating `then` and `catch` to receive response data as a single object
|
||||||
- Fixing issue with `all` not working ([#7](https://github.com/mzabriskie/axios/issues/7))
|
- Fixing issue with `all` not working ([#7](https://github.com/mzabriskie/axios/issues/7))
|
||||||
|
|
||||||
|
### 0.3.1 (Sep 16, 2014)
|
||||||
|
|
||||||
|
- Fixing missing post body when using node.js ([#3](https://github.com/mzabriskie/axios/issues/3))
|
||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "axios",
|
"name": "axios",
|
||||||
"main": "./dist/axios.js",
|
"main": "./dist/axios.js",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"homepage": "https://github.com/mzabriskie/axios",
|
"homepage": "https://github.com/mzabriskie/axios",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Matt Zabriskie"
|
"Matt Zabriskie"
|
||||||
|
|||||||
Vendored
+1
-1
@@ -163,7 +163,7 @@ define("axios", ["undefined"], function(__WEBPACK_EXTERNAL_MODULE_2__) { return
|
|||||||
return utils.isObject(data) &&
|
return utils.isObject(data) &&
|
||||||
!utils.isFile(data) &&
|
!utils.isFile(data) &&
|
||||||
!utils.isBlob(data) ?
|
!utils.isBlob(data) ?
|
||||||
JSON.stringify(data) : null;
|
JSON.stringify(data) : data;
|
||||||
}],
|
}],
|
||||||
|
|
||||||
transformResponse: [function (data) {
|
transformResponse: [function (data) {
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+2
-2
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -164,7 +164,7 @@ var axios =
|
|||||||
return utils.isObject(data) &&
|
return utils.isObject(data) &&
|
||||||
!utils.isFile(data) &&
|
!utils.isFile(data) &&
|
||||||
!utils.isBlob(data) ?
|
!utils.isBlob(data) ?
|
||||||
JSON.stringify(data) : null;
|
JSON.stringify(data) : data;
|
||||||
}],
|
}],
|
||||||
|
|
||||||
transformResponse: [function (data) {
|
transformResponse: [function (data) {
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+2
-2
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "axios",
|
"name": "axios",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"description": "Promise based HTTP client for the browser and node.js",
|
"description": "Promise based HTTP client for the browser and node.js",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user