Conduitry

Results 524 comments of Conduitry

I think the latest round of failures may indicate a bug in my implementation here. In the test that navigates to `/errors/error-in-layout`, the _layout_ is making a `load` `fetch` to...

Ah. Nope. It's a bad test. In that particular case, since the (synthetic) call to `respond()` can't find the route in the manifest, so it makes a _real_ network call....

Okay, the tests should be good to go now. I gave up on trying to detect whether a prerendering request has `isSyntheticRequest` set correctly, because that seemed to be too...

I've renamed the feature from `isSyntheticRequest` to `isSubRequest` in fdc1af24c6b65afc10c3f52e927e69cbbc5fdd89.

Whee tests are failing. It looks like it's the `VERSION` thing you mentioned in Discord?

I've merged master in, but I don't know what "increase the bug version by one" means.

If we don't do that, any rejecting promise that's unhandled will (in recent versions of Node) crash the whole server. I don't know that we have another option than to...

I don't know what we could reasonably do about this besides document it. I don't think SvelteKit should drop down its maximum size of this header because you might have...

Would shipping adapter-node unbundled help with this? (We had previously tried doing that so that we could update the undici version people were using simply by updating the dependency in...

@benmccann The error looks to be getting thrown by the dev-only check in: https://github.com/sveltejs/kit/blob/26477cf9e76c636bad2a3fc46cd2deaf203d6f1c/packages/kit/src/runtime/client/client.js#L1772-L1780 Should this just be removed entirely? What might we miss out on by doing that? I'm...