axios 1.7.8 → 1.7.9
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 +11 -0
- 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 +28 -33
- package/index.d.ts +568 -75
- package/lib/env/data.js +1 -1
- package/package.json +1 -1
package/dist/node/axios.cjs
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
// Axios v1.7.
|
1
|
+
// Axios v1.7.9 Copyright (c) 2024 Matt Zabriskie and contributors
|
2
2
|
'use strict';
|
3
3
|
|
4
4
|
const FormData$1 = require('form-data');
|
@@ -2078,7 +2078,7 @@ function buildFullPath(baseURL, requestedURL) {
|
|
2078
2078
|
return requestedURL;
|
2079
2079
|
}
|
2080
2080
|
|
2081
|
-
const VERSION = "1.7.
|
2081
|
+
const VERSION = "1.7.9";
|
2082
2082
|
|
2083
2083
|
function parseProtocol(url) {
|
2084
2084
|
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
|