Dmitriy Mozgovoy

Results 106 comments of Dmitriy Mozgovoy

Yes, we forgot to mention that, and apparently, no one has encountered this issue in recent years to warrant attention. Few people use pre-built bundles, and much fewer use IE11....

`Object.getPrototypeOf` should be supported in IE11 (https://caniuse.com/mdn-javascript_builtins_object_getprototypeof). You can also add to import the polyfill.

Oh... Looks like that's not enough to make it work in IE11. I tried to run a test under IE11, and it looks like you'll encounter two bugs introduced in...

Unfortunately, we have a problem here, as this will introduce a hidden regression for #2609. This is why we avoided implementing features that require an asynchronous API before requesting with...

Yes, because at the time of the first 1.x release, the tests only covered the XHR adapter. The Fetch adapter was released later, it was a new feature and therefore...

Webpack is probably trying to import shim for mocking `process` global, which is incorrect since there is no actual usage of this variable in the code on the browser platform-...

> How to use Axios 1.6.8+ without global FormData? Well, obviously if you've disabled this API then you have to use [a spec-compliant polyfill](https://www.npmjs.com/package/formdata-node) or `form-data` package which works perfectly...

> Apparently, the fix does not yet work (at least for him) @bruets Seems it [works fine](https://codesandbox.io/p/devbox/axios-1-7-7-forked-8l4rp7) in a fork, but not in the original sandbox ¯\_(ツ)_/¯. Maybe there is...

> Axios Version > 1.7.2 I believe this was fixed in `1.7.3`, have you tried it?

Can you share the full log of the event? Is that the default `xhr` adapter or `fetch`? Is there additional information about the cause of the network error? ```js onUploadProgress(e)...