Skip to content

v0.7.0

Choose a tag to compare

@Gerhut Gerhut released this 10 Mar 08:24
· 45 commits to master since this release
  • Drop supports of
    • node < 8 (boron)
    • axios < 0.17.0
  • Fix incorrect URL logging with config.baseURL, do not just log the config.url
    • Manually build and cache final URL in request interceptor
    • Use cached final URL in response interceptor
  • Drop esModule dependency in TypeScript typing, users are able choose either
    • import config, { addLogger } from 'axios-debug-log' with --esModuleInterop
    • import config = require('axios-debug-log'); const { addLogger } = config; without --esModuleInterop