@buildinternet/releases 0.72.0 → 0.73.1
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/README.md +12 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -133,6 +133,18 @@ Reader access requires nothing. Useful overrides:
|
|
|
133
133
|
|
|
134
134
|
See [`.env.example`](./.env.example) for the full list.
|
|
135
135
|
|
|
136
|
+
### Custom CA certificates (TLS-intercepting proxies)
|
|
137
|
+
|
|
138
|
+
The compiled binary ships with the standard Mozilla CA store. If your network re-terminates TLS with its own CA (corporate proxy, sandboxed agent environment), point the standard Node/OpenSSL variables at the proxy's CA certificate — the binary honors both:
|
|
139
|
+
|
|
140
|
+
```sh
|
|
141
|
+
NODE_EXTRA_CA_CERTS=/path/to/proxy-ca.pem releases search "bun"
|
|
142
|
+
# or
|
|
143
|
+
SSL_CERT_FILE=/path/to/proxy-ca.pem releases search "bun"
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
No `--ca-bundle` flag is needed; certificate errors from the CLI include this hint.
|
|
147
|
+
|
|
136
148
|
## Exit codes
|
|
137
149
|
|
|
138
150
|
| Code | Meaning |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildinternet/releases",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.73.1",
|
|
4
4
|
"description": "The changelog & release-notes registry for developers and AI agents",
|
|
5
5
|
"bin": {
|
|
6
6
|
"releases": "bin/releases"
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@buildinternet/releases-darwin-arm64": "0.
|
|
17
|
-
"@buildinternet/releases-darwin-x64": "0.
|
|
18
|
-
"@buildinternet/releases-linux-x64": "0.
|
|
19
|
-
"@buildinternet/releases-linux-arm64": "0.
|
|
20
|
-
"@buildinternet/releases-windows-x64": "0.
|
|
16
|
+
"@buildinternet/releases-darwin-arm64": "0.73.1",
|
|
17
|
+
"@buildinternet/releases-darwin-x64": "0.73.1",
|
|
18
|
+
"@buildinternet/releases-linux-x64": "0.73.1",
|
|
19
|
+
"@buildinternet/releases-linux-arm64": "0.73.1",
|
|
20
|
+
"@buildinternet/releases-windows-x64": "0.73.1"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"changelog",
|