Aleksandr Tulskiy
Aleksandr Tulskiy
When is the first rc planned?
Hello, @jcupitt. Thanks for the reply. For my purposes (efficient storage of original images for the possibility of subsequent resizing) I went to the trick and reduced the too large...
+1 Option `showThresholdLabels` does not work now for the same reason.
Hi @pavleprica . This has already been implemented and is working. ### Example from a real project: #### Interface: ```go type Storage[V any] interface { Set(ctx context.Context, item V, rowVersion...
I see three use cases: 1. Generate public mocks for all interfaces. 2. Generate private mocks for all interfaces 3. Generate public mocks for public interfaces, private for private ones....
Maybe it's worth excluding the return values from the function passed to Do? It's about the case when we pass the `-typed` flag to mockgen. Example: ```go type SomeInterface{ Action(value...
> Please bump to v0.4.1 I think that v0.5.0 would be more correct because this PR contains new features.
This change will break the existing code that does the model import. It will force to raise the major version.
@abhinav I'm talking about this. https://github.com/golang/mock/blob/main/README.md?plain=1#L275 The old code might have retained imports that do nothing today after replacing reflect with package mode. However, if you delete the package now,...
Here is a simple example why this does not work: [example.zip](https://github.com/user-attachments/files/17234409/example.zip) TL;DR: // compilation error // Type HumanMock does not implement Human // need the method: Call(dog Dog) // have...