Releases: carvalhorr/protoc-gen-mock
Releases · carvalhorr/protoc-gen-mock
Match exact stubs before partial
v1.5.1 ISSUE-44 Return exact match before partial
Generate Dockerfile
Generates a 'Dockerfile` to start the mock service automatically.
Docker build:
docker build -t tag:version .
Run in default ports:
docker run -p 10010:10010 -p 1068:1068 tag:version
Run overriding ports:
docker run -e REST_PORT=1069 -e GRPC_PORT=50051 -p 10010:50051 -p 1010:1069 tag-version
v1.4.1
Publish unit tests for remote package
Add Client to Manage Stubs
v1.4.0 ISSUE-38 Add client to MockServer REST API - Delete All Stubs
v1.3.1
-
Fix recordings: allow recording repeated responses.
-
Separate interfaces for
RecordingsStore
andStubsStore
.
v1.3.0
Adds support to oneof
.
Adds forwarding and recording of gRPC
See forwarding documentation for details.
Fix stack overflow when messages have descendants of its own type
Now it is possible to have messages of the type:
message Request {
string name = 1;
repeated Request req = 2;
}
or
message Request {
string name = 1;
Request req = 2;
}
Add missing "fmt" in generated mock service for streaming RPCs
v1.1.12 ISSUE-23 Add missing "fmt" in generated mock service for streaming RPCs
ISSUE-17 Fix bug when request contains `repeated` elements
V1.1.11 ISSUE-10 Fix bug when request contains `repeated` elements