Skip to content

Releases: dyaa/ssl-checker

v3.0.1

23 Apr 20:42

Choose a tag to compare

What's Changed

  • Fixes #593
  • build(deps): bump vite from 8.0.3 to 8.0.5 in the npm_and_yarn group across 1 directory by @dependabot[bot] in #584

Full Changelog: v3.0.0...v3.0.1

v3.0.0

04 Apr 18:55

Choose a tag to compare

What's Changed

  • build(deps-dev): bump rollup from 3.17.2 to 3.23.0 by @dependabot[bot] in #477
  • build(deps-dev): bump pretty-quick from 3.1.3 to 3.3.1 by @dependabot[bot] in #488
  • build(deps-dev): bump vitest from 0.28.5 to 1.3.1 by @dependabot[bot] in #491
  • build(deps-dev): bump @babel/traverse from 7.20.13 to 7.23.9 by @dependabot[bot] in #481
  • feature: remove subjectaltname check by @khpeet in #539
  • build(deps-dev): bump vite from 4.5.2 to 4.5.3 by @dependabot[bot] in #513

New Contributors

Full Changelog: v2.0.9...v3.0.0

ssl-checker v3.0.0-rc

03 Apr 21:17

Choose a tag to compare

ssl-checker v3.0.0-rc Pre-release
Pre-release

A complete rewrite, still zero dependencies.

Fixes

  • valid field now based on actual TLS validation errors (#131, #400)
  • Named export for ESM/CJS interop (#188)
  • validationError explains why certs fail (#381)
  • Better error messages for unreachable hosts (#350)
  • IDN domain support (#55)
  • servername option for checking certs behind CDNs (#217)
  • IP address support (#14)
  • Proxy support via custom agent (#224)
  • Meaningful errors on non-TLS ports (#97)

Breaking Changes

  • Requires Node.js >= 20
  • valid semantics changed — now based on authorizationError, not socket.authorized
  • Response includes new required fields (validationError, issuer, subject, chain, etc.)

What's Changed

  • build(deps-dev): bump rollup from 3.17.2 to 3.23.0 by @dependabot[bot] in #477
  • build(deps-dev): bump pretty-quick from 3.1.3 to 3.3.1 by @dependabot[bot] in #488
  • build(deps-dev): bump vitest from 0.28.5 to 1.3.1 by @dependabot[bot] in #491
  • build(deps-dev): bump @babel/traverse from 7.20.13 to 7.23.9 by @dependabot[bot] in #481
  • feature: remove subjectaltname check by @khpeet in #539
  • build(deps-dev): bump vite from 4.5.2 to 4.5.3 by @dependabot[bot] in #513
  • v3 TLS grading, STARTTLS, chain inspection by @dyaa in #576

New Contributors

Full Changelog: v2.0.9...v3.0.0-rc

v2.0.9

15 Feb 23:29

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.5...v2.0.9

v2.0.5

16 Apr 17:40

Choose a tag to compare

Fixed module has no default export error

A revamp with typescript

04 Oct 20:47

Choose a tag to compare

ssl-checker@2.0.3

Breaking changes

  • Options is an object now & can be provided as a second parameter - Check README
  • Response object keys are changed to cameCase
    • days_remaining => daysRemaining
    • valid_from => validFrom
    • valid_to => validTo
    • valid => valid :trollface:
  • Fixed issue #20, Thanks to @DesignyourCode for reporting
  • Rewrote the module using typescript