Timo Stamm

Results 302 comments of Timo Stamm

Hey Gryphon, the error message is not about actual HTTP trailers. Since browsers do not expose headers to JavaScript, gRPC-web encodes the trailers that gRPC uses into the response body....

> evidence online indicating that this is a quirk of the nginx implementation of grpc-web Okay, I'm starting to see what's going on, thanks for the link to grpc-web discussion....

We will not add an option to bypass the check. It will look like a solution, but it will completely discard all errors reported by the server, and we cannot...

We've been waiting for [resizable ArrayBuffers](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/resizable) - there's potential for a significant boost in write performance. They aren't widely enough available yet, though. I think that conditional imports like they...

We're using Snyk now, closing.

Looks great! Keeping the scaffolded files up-to-date is super helpful for users setting up a project, and it gives us confidence that we're compatible. I don't think we should use...

Nice, let's release the upstream update and get this merged.

The lint rule is neat, I only became aware of this behavior because of it. But I didn't connect the dots to `PlainMessage` - great find. I think this should...

This is fixed with [version 2](https://github.com/bufbuild/protobuf-es/releases/tag/v2.0.0): ```ts import type { Empty } from "./gen/example_pb"; const empty: Empty = 42; // TS2322: Type number is not assignable to type Message ```

Hey @biziosan, thanks for giving the alpha a try! `google.protobuf.Any` stores arbitrary messages in it's fields `string type_url` (for the type name) and `bytes value` (for the serialized content). In...