Skip to content

Commit 5b8a826

Browse files
chore(release): v1.7.7 (#6585)
Co-authored-by: DigitalBrainJS <[email protected]>
1 parent 364993f commit 5b8a826

17 files changed

+211
-109
lines changed

CHANGELOG.md

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

3+
## [1.7.7](https://github.com/axios/axios/compare/v1.7.6...v1.7.7) (2024-08-31)
4+
5+
6+
### Bug Fixes
7+
8+
* **fetch:** fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; ([#6584](https://github.com/axios/axios/issues/6584)) ([d198085](https://github.com/axios/axios/commit/d1980854fee1765cd02fa0787adf5d6e34dd9dcf))
9+
* **http:** fixed support for IPv6 literal strings in url ([#5731](https://github.com/axios/axios/issues/5731)) ([364993f](https://github.com/axios/axios/commit/364993f0d8bc6e0e06f76b8a35d2d0a35cab054c))
10+
11+
### Contributors to this release
12+
13+
- <img src="https://avatars.githubusercontent.com/u/10539109?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Rishi556](https://github.com/Rishi556 "+39/-1 (#5731 )")
14+
- <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 "+27/-7 (#6584 )")
15+
316
## [1.7.6](https://github.com/axios/axios/compare/v1.7.5...v1.7.6) (2024-08-30)
417

518

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

dist/axios.js

+97-68
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

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

44
function bind(fn, thisArg) {
@@ -2699,14 +2699,34 @@ const streamChunk = function* (chunk, chunkSize) {
26992699
}
27002700
};
27012701

2702-
const readBytes = async function* (iterable, chunkSize, encode) {
2703-
for await (const chunk of iterable) {
2704-
yield* streamChunk(ArrayBuffer.isView(chunk) ? chunk : (await encode(String(chunk))), chunkSize);
2702+
const readBytes = async function* (iterable, chunkSize) {
2703+
for await (const chunk of readStream(iterable)) {
2704+
yield* streamChunk(chunk, chunkSize);
27052705
}
27062706
};
27072707

2708-
const trackStream = (stream, chunkSize, onProgress, onFinish, encode) => {
2709-
const iterator = readBytes(stream, chunkSize, encode);
2708+
const readStream = async function* (stream) {
2709+
if (stream[Symbol.asyncIterator]) {
2710+
yield* stream;
2711+
return;
2712+
}
2713+
2714+
const reader = stream.getReader();
2715+
try {
2716+
for (;;) {
2717+
const {done, value} = await reader.read();
2718+
if (done) {
2719+
break;
2720+
}
2721+
yield value;
2722+
}
2723+
} finally {
2724+
await reader.cancel();
2725+
}
2726+
};
2727+
2728+
const trackStream = (stream, chunkSize, onProgress, onFinish) => {
2729+
const iterator = readBytes(stream, chunkSize);
27102730

27112731
let bytes = 0;
27122732
let done;
@@ -2886,7 +2906,7 @@ var fetchAdapter = isFetchSupported && (async (config) => {
28862906
progressEventReducer(asyncDecorator(onUploadProgress))
28872907
);
28882908

2889-
data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush, encodeText);
2909+
data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush);
28902910
}
28912911
}
28922912

@@ -2929,7 +2949,7 @@ var fetchAdapter = isFetchSupported && (async (config) => {
29292949
trackStream(response.body, DEFAULT_CHUNK_SIZE, onProgress, () => {
29302950
flush && flush();
29312951
unsubscribe && unsubscribe();
2932-
}, encodeText),
2952+
}),
29332953
options
29342954
);
29352955
}
@@ -3113,7 +3133,7 @@ function dispatchRequest(config) {
31133133
});
31143134
}
31153135

3116-
const VERSION = "1.7.6";
3136+
const VERSION = "1.7.7";
31173137

31183138
const validators$1 = {};
31193139

dist/browser/axios.cjs.map

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

0 commit comments

Comments
 (0)