v8.0.0
- feat: Add matcher feature to http module, closes #254 in a6ab70b and ce3c0d6.
- fix: Remove case-sensitive from
silentApis
, closes #283 in 32da22c. - refactor: Change
zoom
totransform: scale
, closes #275 in c78dff6. - Added unit tests
Breaking changes
Before:
silentApis
used to check the url usingurl.startsWith()
After:
silentApis
checks the url usingurl.includes()
When silentApis
is used along with matcher
regex, it will check if the URL matches both cases, learn more at wiki page.