Skip to content

Commit 3530133

Browse files
committed
Update Auto Encrypt to version 3.1.0
This updates the certificate signing request (CSR) signing algorithm from the obsolete SHA-1 to SHA-256.
1 parent 23d12cd commit 3530133

File tree

5 files changed

+31
-23
lines changed

5 files changed

+31
-23
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
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).
66

7+
## [3.1.0] - 2022-06-07
8+
9+
Dependency update.
10+
11+
### Changed
12+
13+
- Update Auto Encrypt to version 3.1.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+
715
## [3.0.3] - 2021-03-24
816

917
A hybrid approach to local certificates.
@@ -12,7 +20,7 @@ A hybrid approach to local certificates.
1220

1321
Upgrade Auto Encrypt Localhost to version 7.0.7.
1422

15-
This vresion implements a hybrid approach to mkcert installation and certificate authority and certificate creation that combines the best parts of the methods used in 6.x and 7.x.
23+
This version implements a hybrid approach to mkcert installation and certificate authority and certificate creation that combines the best parts of the methods used in 6.x and 7.x.
1624

1725
Specifically:
1826

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@small-tech/https
2-
Copyright ⓒ 2019-2021 Aral Balkan, Small Technology Foundation
2+
Copyright ⓒ 2019-present Aral Balkan, Small Technology Foundation
33

44
This program is free software: you can redistribute it and/or modify
55
it under the terms of the GNU Affero General Public License as published

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ A complete [small technology](https://small-tech.org/about/#small-technology) to
149149

150150
## Copyright
151151

152-
© 2020-2021 [Aral Balkan](https://ar.al), [Small Technology Foundation](https://small-tech.org).
152+
© 2019-present [Aral Balkan](https://ar.al), [Small Technology Foundation](https://small-tech.org).
153153

154154
Let’s Encrypt is a trademark of the Internet Security Research Group (ISRG). All rights reserved. Node.js is a trademark of Joyent, Inc. and is used with its permission. We are not endorsed by or affiliated with Joyent or ISRG.
155155

package-lock.json

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@small-tech/https",
3-
"version": "3.0.3",
3+
"version": "3.1.0",
44
"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.",
55
"main": "index.js",
66
"files": [
@@ -46,7 +46,7 @@
4646
},
4747
"license": "AGPL-3.0-or-later",
4848
"dependencies": {
49-
"@small-tech/auto-encrypt": "^3.0.1",
49+
"@small-tech/auto-encrypt": "^3.1.0",
5050
"@small-tech/auto-encrypt-localhost": "^7.0.7",
5151
"fs-extra": "^9.0.1"
5252
},

0 commit comments

Comments
 (0)