All Versions
10
Latest Version
Avg Release Cycle
114 days
Latest Release
1484 days ago

Changelog History

  • v1.12.0 Changes

    March 05, 2020

    Thanks @ivoreis !

  • v1.11.4

    March 03, 2020
  • v1.11.3

    July 31, 2019
  • v1.11.2 Changes

    July 25, 2019

    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)) }
    
  • v1.11.1 Changes

    June 18, 2019

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

  • v1.11.0 Changes

    June 17, 2019

    🤡 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 /

  • v1.10.7

    November 08, 2018
  • v1.10.6 Changes

    November 07, 2018

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

  • v1.10.5

    November 06, 2018
  • v1.10.4 Changes

    May 15, 2017

    Thanks @gypsydave5