axios 1.13.0 → 1.13.1

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.
@@ -737,7 +737,7 @@ export default isHttpAdapterSupported && function httpAdapter(config) {
737
737
 
738
738
  if (responseType === 'stream') {
739
739
  response.data = responseStream;
740
- settle(resolve, abort, response);
740
+ settle(resolve, reject, response);
741
741
  } else {
742
742
  const responseBuffer = [];
743
743
  let totalResponseBytes = 0;
package/lib/env/data.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "1.13.0";
1
+ export const VERSION = "1.13.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "axios",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "description": "Promise based HTTP client for the browser and node.js",
5
5
  "main": "index.js",
6
6
  "exports": {