Skip to content

Commit 0e4f9fa

Browse files
chore(release): v1.7.2 (#6414)
Co-authored-by: DigitalBrainJS <[email protected]>
1 parent 4f79aef commit 0e4f9fa

17 files changed

+45
-34
lines changed

CHANGELOG.md

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

3+
## [1.7.2](https://github.com/axios/axios/compare/v1.7.1...v1.7.2) (2024-05-21)
4+
5+
6+
### Bug Fixes
7+
8+
* **fetch:** enhance fetch API detection; ([#6413](https://github.com/axios/axios/issues/6413)) ([4f79aef](https://github.com/axios/axios/commit/4f79aef81b7c4644328365bfc33acf0a9ef595bc))
9+
10+
### Contributors to this release
11+
12+
- <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 "+3/-3 (#6413 )")
13+
314
## [1.7.1](https://github.com/axios/axios/compare/v1.7.0...v1.7.1) (2024-05-20)
415

516

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.1",
4+
"version": "1.7.2",
55
"homepage": "https://axios-http.com",
66
"authors": [
77
"Matt Zabriskie"

dist/axios.js

+5-5
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

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

44
function bind(fn, thisArg) {
@@ -2678,11 +2678,11 @@ const fetchProgressDecorator = (total, fn) => {
26782678
}));
26792679
};
26802680

2681-
const isFetchSupported = typeof fetch !== 'undefined';
2682-
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream !== 'undefined';
2681+
const isFetchSupported = typeof fetch === 'function' && typeof Request === 'function' && typeof Response === 'function';
2682+
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream === 'function';
26832683

26842684
// used only inside the fetch adapter
2685-
const encodeText = isFetchSupported && (typeof TextEncoder !== 'undefined' ?
2685+
const encodeText = isFetchSupported && (typeof TextEncoder === 'function' ?
26862686
((encoder) => (str) => encoder.encode(str))(new TextEncoder()) :
26872687
async (str) => new Uint8Array(await new Response(str).arrayBuffer())
26882688
);
@@ -3032,7 +3032,7 @@ function dispatchRequest(config) {
30323032
});
30333033
}
30343034

3035-
const VERSION = "1.7.1";
3035+
const VERSION = "1.7.2";
30363036

30373037
const validators$1 = {};
30383038

dist/browser/axios.cjs.map

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

dist/esm/axios.js

+5-5
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.

dist/node/axios.cjs

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

44
const FormData$1 = require('form-data');
@@ -2035,7 +2035,7 @@ function buildFullPath(baseURL, requestedURL) {
20352035
return requestedURL;
20362036
}
20372037

2038-
const VERSION = "1.7.1";
2038+
const VERSION = "1.7.2";
20392039

20402040
function parseProtocol(url) {
20412041
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
@@ -3747,11 +3747,11 @@ const fetchProgressDecorator = (total, fn) => {
37473747
}));
37483748
};
37493749

3750-
const isFetchSupported = typeof fetch !== 'undefined';
3751-
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream !== 'undefined';
3750+
const isFetchSupported = typeof fetch === 'function' && typeof Request === 'function' && typeof Response === 'function';
3751+
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream === 'function';
37523752

37533753
// used only inside the fetch adapter
3754-
const encodeText = isFetchSupported && (typeof TextEncoder !== 'undefined' ?
3754+
const encodeText = isFetchSupported && (typeof TextEncoder === 'function' ?
37553755
((encoder) => (str) => encoder.encode(str))(new TextEncoder()) :
37563756
async (str) => new Uint8Array(await new Response(str).arrayBuffer())
37573757
);

dist/node/axios.cjs.map

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

lib/env/data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = "1.7.1";
1+
export const VERSION = "1.7.2";

package-lock.json

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

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "axios",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Promise based HTTP client for the browser and node.js",
55
"main": "index.js",
66
"exports": {
@@ -160,8 +160,8 @@
160160
"contributors": [
161161
"Matt Zabriskie (https://github.com/mzabriskie)",
162162
"Nick Uraltsev (https://github.com/nickuraltsev)",
163-
"Jay (https://github.com/jasonsaayman)",
164163
"Dmitriy Mozgovoy (https://github.com/DigitalBrainJS)",
164+
"Jay (https://github.com/jasonsaayman)",
165165
"Emily Morehouse (https://github.com/emilyemorehouse)",
166166
"Rubén Norte (https://github.com/rubennorte)",
167167
"Justin Beckwith (https://github.com/JustinBeckwith)",

0 commit comments

Comments
 (0)