Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.09 KB

CHANGELOG.md

File metadata and controls

51 lines (36 loc) · 1.09 KB

v1.2.2

  • Wait on captcha instead of throwing error. Fix #11
  • Fixed hang on multiple requests at once
  • Added debug logging, enable with environment variable HOOMAN_DEBUG=true
  • Handle large requests to same site when challenge solving in progress

v1.2.1

  • Fixed #9
  • Fixed proxy issue #10
  • Added support for rucaptcha
  • Refactored captcha code

v1.2.0

  • Refactored code
  • Added 2captcha support

v1.1.1

  • Faster and better sandbox code execution
  • Added the ability to specify custom retry limit for Cloudflare challenges
// Example
const { body } = await got(url, {
  cloudflareRetry: 8, // default 5
});

v1.1.1

  • Faster and better sandbox code execution
  • Added the ability to specify custom retry limit for Cloudflare challenges
// Example
const { body } = await got(url, {
  cloudflareRetry: 8, // default 5
});

v1.1.0

  • Added vm2 to run code safely
  • got as peer dependencies

v1.0.0

  • Initial commit