tjhiggins
tjhiggins
@metcoder95 @mcollina could we add onBodySent back? What was the rationale for removing in the first place?
@metcoder95 both of those hooks would be great and make it a lot easier to build interceptors. I'm going to hold off on upgrading to v7 until they are added.
Ran into this issue on WSL2. Fix was to not use the default docker network=host ```bash act --network="bridge" --artifact-server-addr="host.docker.internal" --cache-server-addr="host.docker.internal" ... ``` .wslconfig ``` [wsl2] localhostForwarding=true networkingMode=mirrored dnsTunneling=true autoProxy=true ```
Found a fix from https://github.com/unjs/nitro/issues/1137 `export NODE_OPTIONS='--no-experimental-fetch'` It seems the experimental fetch doesn't like `content-length: 0` for deletes.
Would like this for `useDate()` as well
Same issue. Started happening because of this pr: https://github.com/typeorm/typeorm/pull/7296. Specifically with find - querybuilder works as expected.
@luiseariass would you be able to take a look?
@luiseariass Thanks for the quick response. We can try that, but it would require a lot of changes on our end. Unfortunately, we use eager loading for most of our...
Last piece for this to work for me with fetch. Fetch does some sort of back pressuring. ```ts const wrappedResume = () => { if (this.#inputStream) { this.#inputStream.resume(); } return...
> @tjhiggins Do you want to collaborate on this PR with me? I can give you commit access to the base branch. > > I think the interceptor interface has...