Skip to content

1.1.0

Choose a tag to compare

@msimerson msimerson released this 07 Apr 21:56
· 42 commits to master since this release

Modernization, Function Testing, and Dependency Thinning

  • node >= 20
  • getResponses is now async
  • chore: fully qualify node modules (eg. http -> node:http)
  • style(es6/7): replace forEach with for...of
    • function -> () (arrow functions)
    • || -> ?? (nullish coalescing)
  • fix: skip OCSP validation when cert has no OCSP URL (e.g. LE certs)
  • added caCert option to ocsp.Server.create() (separate CA from server cert)
  • ci: replace Travis with GitHub Actions
  • dep(async): refactored away with Promise.all
  • deps: refactored test setup to remove all dev dependencies
  • deps: bump dependency versions
  • test: replace mocha with node:test
  • test fixes due to tests running concurrently