v0.15.1
Capture all then selectively export
hoverctl
now lets you selectively export simulations, instead of exporting everything into one big JSON file. You can use —url-pattern
flag with a plain text string or regex string to do the filtering. It can filter on hostname(destination) and path.
$ hoverctl export echo.json --url-pattern "echo.jsontest.com" // export simulations for echo.jsontest.com only
$ hoverctl export api.json --url-pattern "(.+).jsontest.com" // export simulations for all jsontest.com subdomains
GetJournal API paging and filtering
The Get Journal API is default to return the last 25 journal logs only, and you can control the paging using offset
and limit
query parameters. You can also query the requests made within a time window using from
and to
query parameters. The time queries support Unix timestamp.
Bug fix and improvements
- Includes the latest Hoverfly Dashboard, with Spy mode toggle and some optimisation and security fix.
- Hoverfly running in Docker is now set to listen on all interface by default, solving the issue (eg. #686) some users experienced since the release of v0.15.0