Releases: wiremock/wiremock-spring-boot
Releases · wiremock/wiremock-spring-boot
3.3.0
🚀 New features and improvements
- Add support for specifying extension factories via the configuration annotation (#67) @tomakehurst
- Use wiremock-jetty12 thin JAR instead of the standalone JAR (#66) @tomakehurst
✍ Other changes
- Upgraded the convention plugin version to avoid dependency scan failures (#69) @tomakehurst
New documentation page can be found here: https://wiremock.org/docs/spring-boot/
3.2.0
🚀 New features and improvements
- feat: HTTP and HTTPS in same mock (refs #62) (#64) @tomasbjerre
🐛 Bug fixes
- fix: give helpful error message when using same name in mocks (refs #62) (#63) @tomasbjerre
3.1.0
Optionally use HTTPS (refs #60) (#61) @tomasbjerre
3.0.3
✍ Other changes
- Update WireMock dependency to 3.9.2 (#59) @leeturner
3.0.2
✍ Fixes
- fix: wiremock default port was not always configured (#56) @tomasbjerre
- fix: only add default configured server if WireMock annotation applied to test class (#54) @tomasbjerre
3.0.1
- fix: removing default resource names on classpath (refs #49) (#53) @tomasbjerre
- fix: looking for mocks under directory before classpath (refs #49) (#52) @tomasbjerre
- feat: using 'wiremock' as default name on @InjectWireMock (refs #50) (#51) @tomasbjerre
- chore: cleanup after initial release (#47) @tomasbjerre
3.0.0
This is the first release within WireMock organization. There are many changes, hopefully these are all of them.
Breaking changes
- changing
groupId
fromcom.maciejwalkowiak.spring
toorg.wiremock.integrations
@ConfigureWireMock
no longer hasproperty
orproperties
, replaced bybaseUrlProperties
@ConfigureWireMock
no longer hasstubLocation
, replaced byfilesUnderClasspath
Features
- simplify usage, you just need to annotate test with
@EnableWireMock
, it only needs@ConfigureWireMock
when changing default behavior - default properties
wiremock.server.baseUrl
andwiremock.server.port
@ConfigureWireMock
now hasbaseUrlProperties
, a list of properties that should be populated with the url.@ConfigureWireMock
now hasportProperties
, a list of properties that should be populated with the port.@ConfigureWireMock
now hasusePortFromPredefinedPropertyIfFound
, it will set the port to value of any existing port property.@ConfigureWireMock
now hasfilesUnderClasspath
andfilesUnderDirectory
, both are lists of locations where it looks for mappings.@ConfigureWireMock
now has default namewiremock
- Each WireMock has its logging prefixed with its port number.
- When only one WireMock, it will be configured as a client for that server (
WireMock.configureFor(wireMockServer.port());
)
2.2.0
- Adapted build to WireMock's conventions
- Changed Maven group to
org.wiremock.integrations
v2.1.3
What's Changed
Full Changelog: v2.1.2...v2.1.3
v2.1.2
What's Changed
- Output WireMock logs through Slf4j by @maciejwalkowiak in #27
Full Changelog: v2.1.1...v2.1.2