axios 1.1.0 → 1.1.1
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 +10 -0
- package/dist/axios.js +2 -6
- 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 +1 -1
package/CHANGELOG.md
CHANGED
@@ -198,3 +198,13 @@
|
|
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)
|
package/dist/axios.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
// Axios v1.1.
|
1
|
+
// Axios v1.1.1 Copyright (c) 2022 Matt Zabriskie and contributors
|
2
2
|
(function (global, factory) {
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
4
4
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
@@ -2442,7 +2442,7 @@
|
|
2442
2442
|
return config;
|
2443
2443
|
}
|
2444
2444
|
|
2445
|
-
var VERSION = "1.1.
|
2445
|
+
var VERSION = "1.1.1";
|
2446
2446
|
|
2447
2447
|
var validators$1 = {}; // eslint-disable-next-line func-names
|
2448
2448
|
|
@@ -2915,10 +2915,6 @@
|
|
2915
2915
|
return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);
|
2916
2916
|
};
|
2917
2917
|
|
2918
|
-
exports.Axios = Axios;
|
2919
|
-
exports.AxiosError = AxiosError;
|
2920
|
-
exports.AxiosHeaders = AxiosHeaders;
|
2921
|
-
exports.CanceledError = CanceledError;
|
2922
2918
|
exports["default"] = axios;
|
2923
2919
|
|
2924
2920
|
Object.defineProperty(exports, '__esModule', { value: true });
|