2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-08 17:22:34 +03:00

Release v0.23.0

This commit is contained in:
Jay
2021-10-12 17:34:26 +02:00
parent 6d1e30fd80
commit 1025d1231a
7 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "axios",
"main": "./dist/axios.js",
"version": "0.22.0",
"version": "0.23.0",
"homepage": "https://axios-http.com",
"authors": [
"Matt Zabriskie"
+3 -3
View File
@@ -7,7 +7,7 @@
exports["axios"] = factory();
else
root["axios"] = factory();
})(window, function() {
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@@ -239,7 +239,7 @@ module.exports = function xhrAdapter(config) {
// Handle timeout
request.ontimeout = function handleTimeout() {
var timeoutErrorMessage = 'timeout of ' + config.timeout + 'ms exceeded';
var timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';
var transitional = config.transitional || defaults.transitional;
if (config.timeoutErrorMessage) {
timeoutErrorMessage = config.timeoutErrorMessage;
@@ -1357,7 +1357,7 @@ module.exports = defaults;
/***/ (function(module, exports) {
module.exports = {
"version": "0.22.0"
"version": "0.23.0"
};
/***/ }),
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,3 +1,3 @@
module.exports = {
"version": "0.22.0"
"version": "0.23.0"
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "axios",
"version": "0.22.0",
"version": "0.23.0",
"description": "Promise based HTTP client for the browser and node.js",
"main": "index.js",
"types": "index.d.ts",