@aion0/forge 0.10.81 → 0.10.82

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/RELEASE_NOTES.md CHANGED
@@ -1,11 +1,8 @@
1
- # Forge v0.10.81
1
+ # Forge v0.10.82
2
2
 
3
- Released: 2026-06-14
3
+ Released: 2026-06-15
4
4
 
5
- ## Changes since v0.10.80
5
+ ## Changes since v0.10.81
6
6
 
7
- ### Other
8
- - feat(ui): URL deep-linking + Automation/History default + Pipeline History page
9
7
 
10
-
11
- **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.80...v0.10.81
8
+ **Full Changelog**: https://github.com/aiwatching/forge/compare/v0.10.81...v0.10.82
@@ -130,7 +130,16 @@ async function runHttpProbe(
130
130
  const t0 = Date.now();
131
131
  let res: Response;
132
132
  try {
133
- res = await fetch(url, { method, headers, body, signal: ctrl.signal });
133
+ // Honour connector-level http.verify_tls self-signed appliances (Jenkins,
134
+ // NAC, ESXi …) need undici with rejectUnauthorized:false, same as http.ts.
135
+ const fetchInit = { method, headers, body, signal: ctrl.signal };
136
+ if (def.http?.verify_tls === false) {
137
+ const { fetch: undiciFetch, Agent } = await import('undici');
138
+ const dispatcher = new Agent({ connect: { rejectUnauthorized: false } });
139
+ res = await undiciFetch(url, { ...fetchInit, dispatcher } as any) as unknown as Response;
140
+ } else {
141
+ res = await fetch(url, fetchInit);
142
+ }
134
143
  } catch (e) {
135
144
  clearTimeout(timer);
136
145
  const err = e as Error & { cause?: unknown };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aion0/forge",
3
- "version": "0.10.81",
3
+ "version": "0.10.82",
4
4
  "description": "Unified AI workflow platform — multi-model task orchestration, persistent sessions, web terminal, remote access",
5
5
  "type": "module",
6
6
  "scripts": {