Michael Solomon
Michael Solomon
I succeeded in reproducing it 🎉
Thanks for opening this issue and for the workaround. I'm wondering what the best approach would be here. One option is to expose `NockAgent` as Undici does, but then it...
Does `node` support the LIST method? From what I see, it supports only [some custom methods](https://github.com/nodejs/llhttp/blob/main/src/llhttp/constants.ts#L266). For example, this is not working for me (v22.16.0) ```js import http from 'http';...
@aqemi The implementation in v13 was generally good; however, there are some discrepancies with `node`, which could lead to errors in production. It appears that Node itself does not support...
Seems like I was wrong https://github.com/nodejs/node/issues/59303
@kettanaito, I'm wondering what the appropriate behavior for `interceptors` here. The issue is that during request parsing, we don't check if the `HTTPParser` encounters an error. As a result, the...
Sounds good. PR is welcome. Which API do you have in mind?
@tamlyn can you create a minimal reproduce of the problem? One of the breaking changes in v14, is that the http get/request are no longer sync (which is compatible with...
Found the root cause. Hope to fix it soon,
Help would be great! It's in the [@mswjs/interceptors](https://github.com/mswjs/interceptors/) repo > After investigation, the root cause is that we don't [set the http version on the IncomingMessage](https://github.com/mswjs/interceptors/blob/main/src/interceptors/ClientRequest/MockHttpSocket.ts#L343), ServerResponse [automatically ](https://github.com/nodejs/node/blob/main/lib/_http_server.js#L213-L216) set...