Skip to content

Releases: quii/mockingjay-server

Option to disable polling

05 Mar 11:42
Compare
Choose a tag to compare

Add some http timeouts to the server and handle panics better

03 Mar 13:28
Compare
Choose a tag to compare
1.11.4

add some timeouts, have a panic handler

1.11.3

31 Jul 15:37
Compare
Choose a tag to compare
close config file handles

Order of querystring values no longer matters

25 Jul 09:00
d60fc74
Compare
Choose a tag to compare

The order of querystring values should not matter. Now they dont.

This test shows the problem

func TestItIgnoresOrderOfQueryString(t *testing.T) {
	expectedRequest := Request{
		URI:    "?a=1&b=2",
		Method: "GET",
	}

	incomingRequest := Request{
		URI:    "?b=2&a=1",
		Method: "GET",
	}

	assert.True(t, requestMatches(expectedRequest, incomingRequest, endpointName, testLogger))
}

Fix paths with leading slash being seen as URLs

18 Jun 12:44
Compare
Choose a tag to compare

After the load by URL update file paths with a leading / were being interpreted as URLs, this is now fixed

Load config from URL

17 Jun 16:17
Compare
Choose a tag to compare

You can now load mockingjay from a URL as well as a file

Still uses the -config argument.

docker run -p 9090:9090 quii/mockingjay-server:1.11.1 -config=https://raw.githubusercontent.com/quii/mockingjay-server/master/examples/regex.yaml

That is a one-liner you can just run if you have docker installed. No need for volume mapping, just point at a URL!

This should make running CDCs from a producers perspective much easier as you no longer have to share config files between systems

mockingjay-server -config=http://my-consumer.com/cdc.yaml -realURL=http://myurl.com

Please use version 1.11.1, this version is broken for config file paths that start with /

Remove UI

08 Nov 16:01
Compare
Choose a tag to compare
1.10.7

1.10.7

Brett's release mk2

07 Nov 19:36
Compare
Choose a tag to compare

Hope the deployment works this time! This should bring in Brett's fix.

Better JSON handling in CDC mode

15 May 11:39
Compare
Choose a tag to compare

Fix header validation in response

17 Nov 17:04
Compare
Choose a tag to compare