This repository has been archived by the owner on May 11, 2021. It is now read-only.
Releases: 4finance/micro-infra-spring
Releases · 4finance/micro-infra-spring
0.8.10
0.8.9
0.8.8
- Added option to stub-runner-spring to download stub-definitions based on microservice-stubs jar.
By passingstubrunner.use-microservice-definitions
property to stub-runner-spring it's start looking for stub-definitions using microservice.json paths. Please refer to Boot-microservice and examples to see how to define new stub repository.
0.8.7
0.8.6
0.8.5
0.8.4
-
WireMock no longer binds to static port 8030, instead it chooses random available one. This will help when running tests in shared environments like Jenkins, but make sure you didn't hard-code that port in your tests. Instead use:
httpMockServer.port()
in classes extending
com.ofg.infrastructure.base.MvcWiremockIntegrationTest
. In case this port was hard-coded in your test configuration, try this:foo.service.url: "http://localhost:#{@httpMockServer.port()}/foo"
-
com.ofg.infrastructure.correlationid.CorrelationCallable
class was removed. Usecom.ofg.infrastructure.correlationid.CorrelationIdUpdater.wrapCallableWithId()
instead.