Timo Stamm

Results 302 comments of Timo Stamm

It's very unfortunate that `AbortSignal.timeout` doesn't provide access to the remaining time. A gRPC / Connect deadline is typically set on the client and sent to the server in a...

Yes, we have to use code `canceled` for TimeoutError.

Implemented in https://github.com/connectrpc/connect-es/pull/1526.

I would find this very useful, and it would alleviate https://github.com/connectrpc/conformance/issues/887. A simple solution could be to print all test names after the line `Filtered tests to 123 test case...

Unfortunately this isn't possible with Playwright at this point. See https://github.com/microsoft/playwright/issues/33564 and https://github.com/microsoft/playwright/issues/17199.

Yes, we want to release [connect-es](https://github.com/connectrpc/connect-es), connect-query-es, and [connect-playwright-es](https://github.com/connectrpc/connect-playwright-es) with support for [protobuf-es](https://github.com/bufbuild/protobuf-es) v2, and update the [documentation](https://github.com/connectrpc/connectrpc.com) where necessary. We plan to release it at the same time to...

Release candidates are available: https://github.com/connectrpc/connect-query-es/releases Closing this in advance.

From a quick look at the [migration guide](https://fastify.dev/docs/latest/Guides/Migration-Guide-V5/), this should be simple. We can relax the peer dependency constraint to accept v5, and update conformance-fastify.yaml to only run in Node.js...

Hey @katevi, both forms will be supported in the near future. You can follow https://github.com/bufbuild/protovalidate-go/pull/202 to keep in the loop. For context, also see https://github.com/bufbuild/protovalidate/pull/320.

That's correct. Using `subarray` is conservative because it doesn't allocate more memory and doesn't copy. On the other hand, it will retain a reference to the entire input. Besides `bytes`...