Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-18 | Don't report end() because it is inherently flaky | 1 | -4/+4 | ||
2023-01-18 | Update node-net.test.ts | 1 | -1/+1 | ||
2023-01-16 | Don't need to skip these now | 1 | -3/+3 | ||
2023-01-16 | remove onClose | 1 | -11/+8 | ||
2023-01-13 | Skip failing tests | 1 | -134/+222 | ||
2023-01-12 | Update socket.test.ts | 1 | -6/+1 | ||
2023-01-09 | Add test for Bun.listen throwing | 1 | -0/+17 | ||
2023-01-07 | Workaround macOS issue | 2 | -19/+25 | ||
2023-01-07 | [Bun.connect] Fix bug where connect() Promise wouldn't reject on a ↵ | 1 | -12/+58 | ||
connection error | |||||
2023-01-02 | [socket] handle `connectError` (#1705) | 2 | -2/+51 | ||
assorted clean-ups & fixes | |||||
2023-01-02 | implement `net.Socket` (#1701) | 1 | -0/+175 | ||
- support TCP sockets for now, i.e. no IPC - extra features like keep-alive, no-delay etc. are absent due to limitations of uSockets - fix `jest` to treat `done(nullish)` as success | |||||
2023-01-02 | fix lingering process by dead sockets (#1700) | 2 | -0/+104 | ||
`Bun.listen()` and `Bun.connect()` would create sockets that under certain conditions with calls to `.end()` or `.stop`, prevents the process from exiting gracefully. |