Codey Oxley

Results 106 comments of Codey Oxley

Same exact thing here, though we're not using protobuf. (Though third-party dependencies use them, so maybe it doesn't matter)

@TapirLiu There's nothing to apologize for. :) External dependencies evolve with or without our say. Thanks for iterating on it so quickly! It still panics for one of my projects...

Aha! I've narrowed it down to the culprit dependency. It's actually a bit surprising since I've tested it working with (IMO) more complex generics code. Repo: https://github.com/orsinium-labs/enum Reproduction Steps: ```bash...

I've narrowed it down to the smallest set of types that trigger the panic: ```go package foo type Member[T comparable] struct { Value T } type Equaler[V comparable] interface {...

I assume @goccy is the best maintainer to review? Thanks in advanced!

I don’t have commit privileges, so my review benefit is low. :) That being said, it would help if the PR included reproducible before/after test instructions to make it easier...