axios 1.7.0-beta.2 → 1.7.0

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.

@@ -164,7 +164,7 @@ export default isFetchSupported && (async (config) => {
164
164
 
165
165
  let response = await fetch(request);
166
166
 
167
- const isStreamResponse = responseType === 'stream' || responseType === 'response';
167
+ const isStreamResponse = supportsResponseStream && (responseType === 'stream' || responseType === 'response');
168
168
 
169
169
  if (supportsResponseStream && (onDownloadProgress || isStreamResponse)) {
170
170
  const options = {};
package/lib/env/data.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "1.7.0-beta.2";
1
+ export const VERSION = "1.7.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "axios",
3
- "version": "1.7.0-beta.2",
3
+ "version": "1.7.0",
4
4
  "description": "Promise based HTTP client for the browser and node.js",
5
5
  "main": "index.js",
6
6
  "exports": {