James Wyatt Cready-Pyle

Results 79 comments of James Wyatt Cready-Pyle

Have you actually run into this issue? The window of time for something like that to occur must be a few milliseconds at most. Switching to the method you suggest...

What's the word on this?

Sorry, for some reason my example link wasn't the correct one. You should be able to see the issue if you go to this sandbox https://codesandbox.io/s/new-water-4pii9 Open the console tab...

@hwillson `clearPreviousDataOnLoad` makes it sound like you would only clear the previous data once the network call finished. I think many people want the previous data cleared the moment their...

@felixge a multipart/byteranges response would look something like this (taken from [RFC 7233](https://tools.ietf.org/html/rfc7233#page-11)): ``` HTTP/1.1 206 Partial Content Date: Wed, 15 Nov 1995 06:25:24 GMT Last-Modified: Wed, 15 Nov 1995...

@krisztianb I have made a few [utility types and functions](https://github.com/timostamm/protobuf-ts/issues/143#issuecomment-1193158192) which should allow you to effectively convert between the the two oneof representations (i.e. the existing oneof style and the...

@krisztianb FWIW [ts-proto has the same (`oneof=unions`) or worse (default) oneof representation](https://github.com/stephenh/ts-proto/blob/main/README.markdown#oneof-handling) as what currently exists in protobuf-ts v2. If you're looking for an actively maintained protobuf code generator/runtime for...

Until this is fixed it should be mentioned in the docs that snapshot preprocessing is fundamentally broken and shouldn't be used.

Protons appears to use protobuf.js's UTF-8 decoder/encoder [which has correctness bugs](https://github.com/protobufjs/protobuf.js/issues/1473) and likely the reason protobuf-es uses the native TextEncoder/Decoder. If you're using the NodeJS runtime for your benchmarks you...