axios 1.1.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of axios might be problematic. Click here for more details.
- package/CHANGELOG.md +20 -0
- package/dist/axios.js +7 -13
- package/dist/axios.js.map +1 -1
- package/dist/axios.min.js +1 -1
- package/dist/axios.min.js.map +1 -1
- package/dist/esm/axios.js +3 -3
- package/dist/esm/axios.js.map +1 -1
- package/dist/esm/axios.min.js +1 -1
- package/dist/esm/axios.min.js.map +1 -1
- package/dist/node/axios.cjs +3 -9
- package/dist/node/axios.cjs.map +1 -1
- package/lib/axios.js +1 -9
- package/lib/env/data.js +1 -1
- package/package.json +1 -1
- package/rollup.config.js +2 -2
package/CHANGELOG.md
CHANGED
@@ -198,3 +198,23 @@
|
|
198
198
|
- [shingo.sasaki](https://github.com/s-sasaki-0529)
|
199
199
|
- [Ivan Pepelko](https://github.com/ivanpepelko)
|
200
200
|
- [Richard Kořínek](https://github.com/risa)
|
201
|
+
|
202
|
+
## [1.1.1] - 2022-10-07
|
203
|
+
|
204
|
+
### Fixed
|
205
|
+
|
206
|
+
- Fixed broken exports for common js. This fix breaks a prior fix, I will fix both issues ASAP but the commonJS use is more impactful.
|
207
|
+
|
208
|
+
### Contributors to this release
|
209
|
+
|
210
|
+
- [Jason Saayman](https://github.com/jasonsaayman)
|
211
|
+
|
212
|
+
## [1.1.2] - 2022-10-07
|
213
|
+
|
214
|
+
### Fixed
|
215
|
+
|
216
|
+
- Fixed broken exports for UMD builds.
|
217
|
+
|
218
|
+
### Contributors to this release
|
219
|
+
|
220
|
+
- [Jason Saayman](https://github.com/jasonsaayman)
|
package/dist/axios.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
// Axios v1.1.
|
1
|
+
// Axios v1.1.2 Copyright (c) 2022 Matt Zabriskie and contributors
|
2
2
|
(function (global, factory) {
|
3
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(
|
4
|
-
typeof define === 'function' && define.amd ? define(
|
5
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self,
|
6
|
-
})(this, (function (
|
3
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
4
|
+
typeof define === 'function' && define.amd ? define(factory) :
|
5
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.axios = factory());
|
6
|
+
})(this, (function () { 'use strict';
|
7
7
|
|
8
8
|
function _typeof(obj) {
|
9
9
|
"@babel/helpers - typeof";
|
@@ -2442,7 +2442,7 @@
|
|
2442
2442
|
return config;
|
2443
2443
|
}
|
2444
2444
|
|
2445
|
-
var VERSION = "1.1.
|
2445
|
+
var VERSION = "1.1.2";
|
2446
2446
|
|
2447
2447
|
var validators$1 = {}; // eslint-disable-next-line func-names
|
2448
2448
|
|
@@ -2915,13 +2915,7 @@
|
|
2915
2915
|
return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);
|
2916
2916
|
};
|
2917
2917
|
|
2918
|
-
|
2919
|
-
exports.AxiosError = AxiosError;
|
2920
|
-
exports.AxiosHeaders = AxiosHeaders;
|
2921
|
-
exports.CanceledError = CanceledError;
|
2922
|
-
exports["default"] = axios;
|
2923
|
-
|
2924
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
2918
|
+
return axios;
|
2925
2919
|
|
2926
2920
|
}));
|
2927
2921
|
//# sourceMappingURL=axios.js.map
|