Skip to content

Releases: carvalhorr/protoc-gen-mock

Match exact stubs before partial

15 Mar 20:24
Compare
Choose a tag to compare
v1.5.1

ISSUE-44 Return exact match before partial

Generate Dockerfile

25 Feb 20:20
Compare
Choose a tag to compare

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

16 Feb 22:22
Compare
Choose a tag to compare

Publish unit tests for remote package

Add Client to Manage Stubs

04 Feb 20:51
Compare
Choose a tag to compare
v1.4.0

ISSUE-38 Add client to MockServer REST API - Delete All Stubs

v1.3.1

29 Oct 20:01
Compare
Choose a tag to compare
  • Fix recordings: allow recording repeated responses.

  • Separate interfaces for RecordingsStore and StubsStore.

v1.3.0

27 Oct 21:00
Compare
Choose a tag to compare

Adds support to oneof.

Adds forwarding and recording of gRPC

26 Oct 15:07
Compare
Choose a tag to compare

Fix stack overflow when messages have descendants of its own type

14 Jul 20:24
Compare
Choose a tag to compare

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

13 Jul 19:23
Compare
Choose a tag to compare
v1.1.12

ISSUE-23 Add missing "fmt" in generated mock service for streaming RPCs

ISSUE-17 Fix bug when request contains `repeated` elements

29 Jun 20:22
Compare
Choose a tag to compare
V1.1.11

ISSUE-10 Fix bug when request contains `repeated` elements