axios 1.2.3 → 1.2.4
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 +14 -1
- package/dist/axios.js +2 -2
- package/dist/axios.js.map +1 -1
- package/dist/axios.min.js +1 -1
- package/dist/axios.min.js.map +1 -1
- package/dist/browser/axios.cjs +2 -2
- package/dist/browser/axios.cjs.map +1 -1
- package/dist/esm/axios.js +2 -2
- 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 +2 -2
- package/dist/node/axios.cjs.map +1 -1
- package/index.d.cts +56 -40
- package/index.d.ts +57 -41
- package/lib/env/data.js +1 -1
- package/package.json +1 -1
- package/lib/.DS_Store +0 -0
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.2.4](https://github.com/axios/axios/compare/v1.2.3...v1.2.4) (2023-01-22)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* **types:** renamed `RawAxiosRequestConfig` back to `AxiosRequestConfig`; ([#5486](https://github.com/axios/axios/issues/5486)) ([2a71f49](https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0))
|
9
|
+
* **types:** fix `AxiosRequestConfig` generic; ([#5478](https://github.com/axios/axios/issues/5478)) ([9bce81b](https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b))
|
10
|
+
|
11
|
+
### Contributors to this release
|
12
|
+
|
13
|
+
-  [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+242/-108 (#5486 #5482 )")
|
14
|
+
-  [Daniel Hillmann](https://github.com/hilleer "+1/-1 (#5478 )")
|
15
|
+
|
3
16
|
## [1.2.3](https://github.com/axios/axios/compare/1.2.2...1.2.3) (2023-01-10)
|
4
17
|
|
5
18
|
|
@@ -382,4 +395,4 @@
|
|
382
395
|
- [Marco Weber](https://github.com/mrcwbr)
|
383
396
|
- [Luca Pizzini](https://github.com/lpizzinidev)
|
384
397
|
- [Willian Agostini](https://github.com/WillianAgostini)
|
385
|
-
- [Huyen Nguyen](https://github.com/huyenltnguyen)
|
398
|
+
- [Huyen Nguyen](https://github.com/huyenltnguyen)
|
package/dist/axios.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
// Axios v1.2.
|
1
|
+
// Axios v1.2.4 Copyright (c) 2023 Matt Zabriskie and contributors
|
2
2
|
(function (global, factory) {
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
4
4
|
typeof define === 'function' && define.amd ? define(factory) :
|
@@ -2397,7 +2397,7 @@
|
|
2397
2397
|
return config;
|
2398
2398
|
}
|
2399
2399
|
|
2400
|
-
var VERSION = "1.2.
|
2400
|
+
var VERSION = "1.2.4";
|
2401
2401
|
|
2402
2402
|
var validators$1 = {};
|
2403
2403
|
|