@knapsack/https 4.81.0--canary.5939.dac66dd.0 → 4.81.0--canary.6107.535ae4e.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 +20 -0
- package/dist/lib/auto-encrypt-localhost.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# v4.80.3 (Thu May 08 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Merge branch 'latest' into feature/ksp-6388-archive-opisnet-after-51 ([@freneticpixel](https://github.com/freneticpixel))
|
|
6
|
+
- Merge branch 'latest' into feature/ksp-6271-fix-batch-logging-on-github-provider ([@freneticpixel](https://github.com/freneticpixel))
|
|
7
|
+
|
|
8
|
+
#### 🏠 Internal
|
|
9
|
+
|
|
10
|
+
- (some of) Matt Pocock's cursor rules [#6086](https://github.com/knapsack-labs/app-monorepo/pull/6086) ([@illepic](https://github.com/illepic))
|
|
11
|
+
- Removes opis SSO connection and custom page resources [#6091](https://github.com/knapsack-labs/app-monorepo/pull/6091) ([@freneticpixel](https://github.com/freneticpixel))
|
|
12
|
+
- Fix batch commit number bug in GitHub provider [#6092](https://github.com/knapsack-labs/app-monorepo/pull/6092) ([@freneticpixel](https://github.com/freneticpixel))
|
|
13
|
+
|
|
14
|
+
#### Authors: 2
|
|
15
|
+
|
|
16
|
+
- Christopher Bloom ([@illepic](https://github.com/illepic))
|
|
17
|
+
- Jim Frenette ([@freneticpixel](https://github.com/freneticpixel))
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
1
21
|
# v4.80.2 (Wed May 07 2025)
|
|
2
22
|
|
|
3
23
|
#### 🐛 Bug Fix
|
|
@@ -39,7 +39,7 @@ async function setupAndGetCert() {
|
|
|
39
39
|
if (!allOK()) {
|
|
40
40
|
log_1.log.info(' 📜 ❨auto-encrypt-localhost❩ Setting up…');
|
|
41
41
|
// On Linux and on macOS, mkcert uses the Mozilla nss library.
|
|
42
|
-
// Try to install this automatically and warn the person if we can
|
|
42
|
+
// Try to install this automatically and warn the person if we can’t so
|
|
43
43
|
// that they can do it manually themselves.
|
|
44
44
|
await (0, install_cert_util_1.installCertutil)();
|
|
45
45
|
// Create the local certificate.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/https",
|
|
3
3
|
"description": "Automatically provisions and installs locally-trusted TLS certificates for Node.js https servers (including Express.js, etc.) using mkcert.",
|
|
4
|
-
"version": "4.81.0--canary.
|
|
4
|
+
"version": "4.81.0--canary.6107.535ae4e.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"start": "tsc --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@knapsack/utils": "4.81.0--canary.
|
|
24
|
+
"@knapsack/utils": "4.81.0--canary.6107.535ae4e.0",
|
|
25
25
|
"chalk": "^4.1.2",
|
|
26
26
|
"fs-extra": "^11.3.0",
|
|
27
27
|
"internal-ip": "^6.2.0",
|
|
28
28
|
"syswide-cas": "^5.3.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@knapsack/eslint-config-starter": "4.81.0--canary.
|
|
32
|
-
"@knapsack/typescript-config-starter": "4.81.0--canary.
|
|
31
|
+
"@knapsack/eslint-config-starter": "4.81.0--canary.6107.535ae4e.0",
|
|
32
|
+
"@knapsack/typescript-config-starter": "4.81.0--canary.6107.535ae4e.0",
|
|
33
33
|
"@types/fs-extra": "^11.0.4",
|
|
34
34
|
"@types/node": "^20.17.24",
|
|
35
35
|
"eslint": "^8.57.0",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"directory": "libs/https",
|
|
53
53
|
"type": "git"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "535ae4eb4ff41e677deea42698a9eeb2c6c68869"
|
|
56
56
|
}
|