Skip to content

Commit 59cd6b0

Browse files
chore(release): v1.7.5 (#6574)
Co-authored-by: DigitalBrainJS <[email protected]>
1 parent 6700a8a commit 59cd6b0

17 files changed

+110
-66
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [1.7.5](https://github.com/axios/axios/compare/v1.7.4...v1.7.5) (2024-08-23)
4+
5+
6+
### Bug Fixes
7+
8+
* **adapter:** fix undefined reference to hasBrowserEnv ([#6572](https://github.com/axios/axios/issues/6572)) ([7004707](https://github.com/axios/axios/commit/7004707c4180b416341863bd86913fe4fc2f1df1))
9+
* **core:** add the missed implementation of AxiosError#status property; ([#6573](https://github.com/axios/axios/issues/6573)) ([6700a8a](https://github.com/axios/axios/commit/6700a8adac06942205f6a7a21421ecb36c4e0852))
10+
* **core:** fix `ReferenceError: navigator is not defined` for custom environments; ([#6567](https://github.com/axios/axios/issues/6567)) ([fed1a4b](https://github.com/axios/axios/commit/fed1a4b2d78ed4a588c84e09d32749ed01dc2794))
11+
* **fetch:** fix credentials handling in Cloudflare workers ([#6533](https://github.com/axios/axios/issues/6533)) ([550d885](https://github.com/axios/axios/commit/550d885eb90fd156add7b93bbdc54d30d2f9a98d))
12+
13+
### Contributors to this release
14+
15+
- <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+187/-83 (#6573 #6567 #6566 #6564 #6563 #6557 #6556 #6555 #6554 #6552 )")
16+
- <img src="https://avatars.githubusercontent.com/u/2495809?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Antonin Bas](https://github.com/antoninbas "+6/-6 (#6572 )")
17+
- <img src="https://avatars.githubusercontent.com/u/5406212?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Hans Otto Wirtz](https://github.com/hansottowirtz "+4/-1 (#6533 )")
18+
319
## [1.7.4](https://github.com/axios/axios/compare/v1.7.3...v1.7.4) (2024-08-13)
420

521

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "axios",
33
"main": "./dist/axios.js",
4-
"version": "1.7.4",
4+
"version": "1.7.5",
55
"homepage": "https://axios-http.com",
66
"authors": [
77
"Matt Zabriskie"

dist/axios.js

+29-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/browser/axios.cjs

+17-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Axios v1.7.4 Copyright (c) 2024 Matt Zabriskie and contributors
1+
// Axios v1.7.5 Copyright (c) 2024 Matt Zabriskie and contributors
22
'use strict';
33

44
function bind(fn, thisArg) {
@@ -789,7 +789,10 @@ function AxiosError(message, code, config, request, response) {
789789
code && (this.code = code);
790790
config && (this.config = config);
791791
request && (this.request = request);
792-
response && (this.response = response);
792+
if (response) {
793+
this.response = response;
794+
this.status = response.status ? response.status : null;
795+
}
793796
}
794797

795798
utils$1.inherits(AxiosError, Error, {
@@ -809,7 +812,7 @@ utils$1.inherits(AxiosError, Error, {
809812
// Axios
810813
config: utils$1.toJSONObject(this.config),
811814
code: this.code,
812-
status: this.response && this.response.status ? this.response.status : null
815+
status: this.status
813816
};
814817
}
815818
});
@@ -1277,6 +1280,8 @@ var platform$1 = {
12771280

12781281
const hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'undefined';
12791282

1283+
const _navigator = typeof navigator === 'object' && navigator || undefined;
1284+
12801285
/**
12811286
* Determine if we're running in a standard browser environment
12821287
*
@@ -1294,10 +1299,8 @@ const hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'unde
12941299
*
12951300
* @returns {boolean}
12961301
*/
1297-
const hasStandardBrowserEnv = (
1298-
(product) => {
1299-
return hasBrowserEnv && ['ReactNative', 'NativeScript', 'NS'].indexOf(product) < 0
1300-
})(typeof navigator !== 'undefined' && navigator.product);
1302+
const hasStandardBrowserEnv = hasBrowserEnv &&
1303+
(!_navigator || ['ReactNative', 'NativeScript', 'NS'].indexOf(_navigator.product) < 0);
13011304

13021305
/**
13031306
* Determine if we're running in a standard browser webWorker environment
@@ -1324,6 +1327,7 @@ var utils = /*#__PURE__*/Object.freeze({
13241327
hasBrowserEnv: hasBrowserEnv,
13251328
hasStandardBrowserWebWorkerEnv: hasStandardBrowserWebWorkerEnv,
13261329
hasStandardBrowserEnv: hasStandardBrowserEnv,
1330+
navigator: _navigator,
13271331
origin: origin
13281332
});
13291333

@@ -2153,7 +2157,7 @@ var isURLSameOrigin = platform.hasStandardBrowserEnv ?
21532157
// Standard browser envs have full support of the APIs needed to test
21542158
// whether the request URL is of the same origin as current location.
21552159
(function standardBrowserEnv() {
2156-
const msie = /(msie|trident)/i.test(navigator.userAgent);
2160+
const msie = platform.navigator && /(msie|trident)/i.test(platform.navigator.userAgent);
21572161
const urlParsingNode = document.createElement('a');
21582162
let originURL;
21592163

@@ -2890,14 +2894,17 @@ var fetchAdapter = isFetchSupported && (async (config) => {
28902894
withCredentials = withCredentials ? 'include' : 'omit';
28912895
}
28922896

2897+
// Cloudflare Workers throws when credentials are defined
2898+
// see https://github.com/cloudflare/workerd/issues/902
2899+
const isCredentialsSupported = "credentials" in Request.prototype;
28932900
request = new Request(url, {
28942901
...fetchOptions,
28952902
signal: composedSignal,
28962903
method: method.toUpperCase(),
28972904
headers: headers.normalize().toJSON(),
28982905
body: data,
28992906
duplex: "half",
2900-
credentials: withCredentials
2907+
credentials: isCredentialsSupported ? withCredentials : undefined
29012908
});
29022909

29032910
let response = await fetch(request);
@@ -3108,7 +3115,7 @@ function dispatchRequest(config) {
31083115
});
31093116
}
31103117

3111-
const VERSION = "1.7.4";
3118+
const VERSION = "1.7.5";
31123119

31133120
const validators$1 = {};
31143121

dist/browser/axios.cjs.map

+1-1
Large diffs are not rendered by default.

dist/esm/axios.js

+17-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)