Mikhail Mazurskiy

Results 145 comments of Mikhail Mazurskiy

I'm getting similar errors without `-mod=vendor`. This started with v0.3.0. It cannot find one of the application packages: ``` prog.go:14:2: no required module provides package gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/cmd/agentk/agentkapp: go.mod file not found...

I think it was a somewhat unrelated issue. I tried upgrading 0.2.0 -> 0.3.0 and at the same time adding `-typed`. It doesn't work this way, at least didn't work...

Yes. There may also be tests that pass but don't actually test what the author thinks they are testing.

Without going into details, my code emulates a unary RPC over a streaming RPC. That's probably why you cannot reproduce the issue. > when sending message with the client stream,...

Go version support is documented here: https://github.com/grpc-ecosystem/go-grpc-middleware?tab=readme-ov-file#prerequisites I've just bumped the minimum version to 1.21 and added 1.22 and 1.23 to CI in https://github.com/grpc-ecosystem/go-grpc-middleware/pull/721. Did I miss something or we...

I think reflect mode needs to be updated to use the new API added in Go 1.22: https://github.com/golang/go/issues/63223

I think the fix in reflect mode is via the new API, see https://github.com/uber-go/mock/issues/186#issuecomment-2259706052. I'm using source mode, presumably the fix is different.

I'm just trying to make it work with 0.5.1 and it seems it does not. Input types: From grpc-go: ```go type ClientStream interface { // methods here } type ServerStreamingClient[Res...