hanoman 0.1.35 → 0.1.36

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.35",
3
- "sha": "ea92c04",
4
- "builtAt": "2026-08-14T15:23:07.578Z"
2
+ "version": "0.1.36",
3
+ "sha": "367eb05",
4
+ "builtAt": "2026-08-14T16:01:32.161Z"
5
5
  }
package/dist/server.js CHANGED
@@ -12332,7 +12332,12 @@ async function pinnedRequest(input) {
12332
12332
  path: `${input.url.pathname}${input.url.search}`,
12333
12333
  headers: input.headers,
12334
12334
  servername: input.url.hostname,
12335
- lookup: (_host, _opts, callback) => callback(null, input.address, input.family),
12335
+ // Node >= 20 menyalakan `autoSelectFamily` secara default: socket memanggil `lookup` dengan
12336
+ // `all: true` dan membaca `addresses[0].address` dari hasilnya. Menjawab dalam bentuk skalar
12337
+ // di situ memberi `undefined` → ERR_INVALID_IP_ADDRESS sebelum satu paket pun keluar, dan
12338
+ // pemanggil (sync tick, webhook) menelannya sebagai "offline". Kedua bentuk dijawab supaya
12339
+ // pinning tetap benar apa pun setelan family-nya.
12340
+ lookup: (_host, opts, callback) => opts.all ? callback(null, [{ address: input.address, family: input.family }]) : callback(null, input.address, input.family),
12336
12341
  timeout: input.connectMs
12337
12342
  }, (response) => {
12338
12343
  const chunks = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hanoman",
3
- "version": "0.1.35",
3
+ "version": "0.1.36",
4
4
  "description": "Orchestrator + dashboard workflow docs-driven untuk sesi Claude Code / Codex",
5
5
  "type": "module",
6
6
  "repository": {