Releases: spring-cloud/spring-cloud-contract
Releases · spring-cloud/spring-cloud-contract
4.1.0-M1
🐞 Bug Fixes
- fix missing 'failOnNoStubs' property configuration #1928
❤️ Contributors
Thank you to all the contributors who worked on this release:
4.0.4
3.1.8
🐞 Bug Fixes
❤️ Contributors
Thank you to all the contributors who worked on this release:
4.0.3
v2.2.3.RELEASE
Gradle wrapper version has been upgraded to 6.4
. Groovy version has been upgraded to 2.5.10
. Kotlin version has been upgraded to 1.3.72
.
As a result, this release contains a small change in the Spring Cloud Contract Gradle Plugin publishStubsToScm
task API. The customize{}
closure has been removed and the properties set within that closure now need to be set directly within the publishStubsToScm
closure. For example, the following setup:
publishStubsToScm {
customize {
contractDependency {
stringNotation = "${project.group}:${project.name}:${project.version}"
}
contractsMode = "LOCAL"
}
}
needs to be changed to:
publishStubsToScm {
contractDependency {
stringNotation = "${project.group}:${project.name}:${project.version}"
}
contractsMode = "LOCAL"
}