@small-tech/https 2.1.2 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.2.0] - 2022-06-07
8
+
9
+ Dependency update.
10
+
11
+ ### Changed
12
+
13
+ - Update Auto Encrypt to version 2.3.0. This updates the certificate signing request (CSR) signature algorithm from the obsolete SHA-1 to SHA-256. (Let’s Encrypt will beging to reject certificate requests signed with SHA-1 on September 15, 2022. See https://community.letsencrypt.org/t/rejecting-sha-1-csrs-and-validation-using-tls-1-0-1-1-urls/175144)
14
+
7
15
  ## [2.1.2] - 2021-03-08
8
16
 
9
17
  Update Auto Encrypt to version 2.2.0
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  A drop-in standard Node.js HTTPS module replacement with both automatic development-time (localhost) certificates via Auto Encrypt Localhost and automatic production certificates via Auto Encrypt.
4
4
 
5
+ __Note:__ This is the CommonJS (CJS) version of the library. For the ECMAScript Modules (ESM) version, please see the main branch.
6
+
5
7
  Simply replace Node’s `https` module with `@small-tech/https` and get:
6
8
 
7
9
  - Automatically-provisioned TLS certificates at localhost with no browser warnings.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@small-tech/https",
3
- "version": "2.1.2",
3
+ "version": "2.2.0",
4
4
  "description": "A drop-in standard Node.js HTTPS module replacement with both automatic development-time (localhost) certificates via Auto Encrypt Localhost and automatic production certificates via Auto Encrypt.",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "license": "AGPL-3.0-or-later",
39
39
  "dependencies": {
40
- "@small-tech/auto-encrypt": "^2.2.0",
40
+ "@small-tech/auto-encrypt": "^2.3.0",
41
41
  "@small-tech/auto-encrypt-localhost": "^6.1.0",
42
42
  "fs-extra": "^9.0.1"
43
43
  },
package/publish ADDED
@@ -0,0 +1,3 @@
1
+ #!/bin/bash
2
+
3
+ npm publish --tag=cjs