Skip to content

Releases: googleapis/retry-request

v4.1.0

18 Jun 19:53
Compare
Choose a tag to compare

Features

  • (#24) Add debug support to monitor internal processes. (Thanks, @yihaozhadan!)

v4.0.0

11 Jun 17:17
Compare
Choose a tag to compare

Breaking Change!

You must now include request as a dependency of your project yourself:

$ npm install --save request retry-request

It will automatically be recognized by retry-request.

Or, you can be explicit:

const retryRequest = require('retry-request')

retryRequest('http://...', {
  request: require('request')
})