You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
net.createConnection argument order under Perry — match Perry-stdlib's (port, host) signature (Node spec form). Perry-stdlib swapped from (host, port) → (port, host) in perry v0.5.501; the driver was authored against the old order and erred with EADDRNOTAVAIL on connect under perry ≥0.5.501. Surfaced from a drizzle + @perryts/postgres acceptance run on perry 0.5.684 (PerryTS/perry#488).
Compatibility
Perry ≥0.5.501: install 0.2.2.
Perry ≤0.5.500: pin 0.2.1.
Node / Bun: unchanged — both branches use the options-object form ({ host, port }) which has always been correct.