Skip to content

Latest commit

 

History

History
128 lines (68 loc) · 4.14 KB

CHANGELOG.md

File metadata and controls

128 lines (68 loc) · 4.14 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[3.1.0] - 2022-06-07

Now with more SHA for the buck.

Changed

[3.0.1] - 2021-03-21

Fixes regression on Windows introduced in 3.x branch.

Fixed

  • Make __dirname declaration cross-platform (was previously failing on Windows). See nodejs/node#37845
  • Introduce small delay in request fail check test while certificate is being provisioned to ensure tests pass with Let’s Encrypt staging server.

[3.0.0] - 2021-03-08

Changed

  • Breaking change: Is now an ECMAScript Modules (ESM) project.
  • Now includes the latest Let’s Encrypt certificate authority root certificate for the staging environment. (This is automatically injected into your Node.js environment when running the server in staging mode and is used during testing.)
  • Dev: now using @small-tech/esm-tape-runner.
  • Dev: replaced tap-spec and tap-nyc with @small-tech/tap-monkey.

Fixed

  • No longer crashes when checking for certificate renewal. (#34)
  • Tests now run properly in staging mode.

Improved

  • npm package size is now 193.1kb (down from 345kb previously).

[2.1.0 and 2.1.1] - Do not use these versions.

These accidentally included the breaking change from 3.0.0 in a semver minor update.

The CommonJS version of Auto Encrypt now lives in the 2.x branch and the first release from it is version 2.2.0 which has the bug fix and the root certificate update from version 3.0.0 backported. For future 2.x release info, please see the changelog in the 2.x branch.

[2.0.6] - 2021-02-16

Fixed

  • Assignment to constant. This would have caused a crash when a Retry-After header was received from Let’s Encrypt.

Improved

  • Developer documentation. Now lists value to be added to hosts files to run local tests.

[2.0.5] - 2020-10-29

Improved

  • Update dependencies to remove npm vulnerability warnings.

[2.0.4] - 2020-07-10

Fixed

  • HTTP to HTTPS redirects now start up and work as they should (they weren’t previously).

[2.0.3] - 2020-07-10

Changed

  • Update source code repository in npm package to point to GitHub mirror. (The GitHub mirror is the public repository where we can accept issues and pull requests. The canonical repository is on our own server where we do not accept sign ups as we don’t want it to become yet another centralised host.)

[2.0.2] - 2020-07-10

Fixed

  • Links to developer documentation now work everywhere, not just on source code repository web interfaces.

Changed

  • Replaced outdated coverage message in readme and linked to developer documentation for information on tests and coverage.

[2.0.1] - 2020-07-03

Added

  • HTTP to HTTPS redirects are now logged.

[2.0.0] - 2020-07-03

Changed

  • Breaking change: you no longer have to call AutoEncrypt.shutdown() manually. Closing your server will do it automatically (#33).

Added

  • Automatic HTTP to HTTPS redirection. An HTTP server is now kept running for the lifetime of your HTTPS server and, when it is not responding to Let’s Encrypt challenges, it redirects HTTP calls on port 80 to your HTTPS server (#32).

[1.0.3] - 2020-06-20

Fixed

  • Carriage returns are now stripped from Certificate Signing Requests (CSRs) (#31).

[1.0.2] - 2020-06-16

Fixed

  • No longer crashes if OCSP request received before certificate created.
  • Cosmetic: format certificate details nicely in log message.
  • Minor: fix capitalisation in log message.

[1.0.1] - 2020-06-15

Changed

  • Update log format to match Site.js output.

Fixed

  • Remove debug output.

[1.0.0] - 2020-04-15

Initial release.