Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-05 | [socket] fix double-free in `finalize()` (#1731) | 3 | -53/+45 | ||
- tidy up `.isEmptyOrUndefinedOrNull()` usage | |||||
2023-01-05 | fix `onConnectError()` error propagation (#1730) | 1 | -2/+2 | ||
* fix `onConnectError()` error propagation suppress extraneous logging messages * Update src/bun.js/api/bun/socket.zig Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> | |||||
2023-01-05 | Really fix #1722 | 1 | -2/+40 | ||
2023-01-05 | improve `.toThrow()` compatibility with Jest (#1728) | 1 | -16/+32 | ||
2023-01-04 | implement `expect().toThrow()` (#1727) | 2 | -34/+106 | ||
- fix bugs in `JSBufferList` - add tests | |||||
2023-01-04 | Add `SharedBuffer` from WebKit to make it easier to import more WebCore stuff | 2 | -0/+1111 | ||
2023-01-04 | Fix default export for stream | 1 | -11/+4 | ||
cc @alexlamsl | |||||
2023-01-04 | Fixes #1722 | 1 | -1/+2 | ||
2023-01-04 | buffer list clean-ups (#1721) | 1 | -37/+68 | ||
2023-01-04 | Support non-classes in node:net (#1712) | 1 | -198/+216 | ||
* Support non-classes * Update net.exports.js * Make it less observable * Update net.exports.js Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-01-04 | Fixes #1716 | 1 | -2/+2 | ||
2023-01-04 | 10x faster `new Buffer` (#1717) | 16 | -444/+451 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-01-03 | Fixes https://github.com/oven-sh/bun/issues/1695 | 1 | -1/+1 | ||
2023-01-03 | Remove usages of std.x | 7 | -98/+75 | ||
2023-01-03 | [streams] speed up `Readable` in some cases (#1708) | 2 | -14/+29 | ||
If `encoding` is set, no `Buffer`s would be exposed thus `Uint8Array` can be used directly. - fix data corruption in `BufferList.concat()` - fix segfaults in `BufferList.join()` | |||||
2023-01-03 | Fix crash in BufferList | 1 | -2/+2 | ||
2023-01-03 | Implement `napi_make_callback` | 1 | -22/+47 | ||
2023-01-03 | Stub out missing napi functions and include error message | 4 | -7/+92 | ||
2023-01-03 | Fix spec issue with `napi_get_typedarray_info` | 1 | -3/+3 | ||
2023-01-02 | [socket] handle `connectError` (#1705) | 2 | -85/+89 | ||
assorted clean-ups & fixes | |||||
2023-01-02 | Support any `ArrayBufferView` in StringDecoder | 1 | -10/+20 | ||
2023-01-02 | implement `net.Socket` (#1701) | 2 | -3/+257 | ||
- 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 | Make the error message for unsupported dependency type a little clearer | 1 | -1/+1 | ||
2023-01-02 | Upgrade simdutf | 2 | -518/+720 | ||
Thanks @lemire | |||||
2023-01-02 | fix lingering process by dead sockets (#1700) | 1 | -67/+75 | ||
`Bun.listen()` and `Bun.connect()` would create sockets that under certain conditions with calls to `.end()` or `.stop`, prevents the process from exiting gracefully. | |||||
2023-01-01 | clean up `Promise` handling (#1697) | 14 | -162/+127 | ||
2023-01-01 | Fix `bun --cwd` after https://github.com/ziglang/zig/pull/13596 | 1 | -2/+8 | ||
2023-01-01 | Add workaround | 1 | -0/+5 | ||
2023-01-01 | Bump | 1 | -1/+1 | ||
2023-01-01 | test crypto.randomBytes returns a Buffer | 1 | -31/+3 | ||
2023-01-01 | Handle extremely unlikely edgecase | 1 | -10/+21 | ||
2023-01-01 | Fix linux build issue | 1 | -3/+7 | ||
2023-01-01 | Make asPromise() and asInternalPromise() safer, but slower | 1 | -2/+2 | ||
2023-01-01 | Update bindings.zig | 1 | -4/+0 | ||
2023-01-01 | [internal] Add more bindings | 9 | -13/+157 | ||
2023-01-01 | Workaround https://github.com/ziglang/zig/issues/14148 | 1 | -2/+3 | ||
2022-12-31 | [jest] fix and improve hooks (#1689) | 1 | -3/+49 | ||
- wait for async hooks to complete before running tests - add support for `done(err)` callbacks in hooks fixes #1688 | |||||
2022-12-30 | Make `NamesIterator` safer | 2 | -9/+24 | ||
2022-12-30 | Upgrade WebKit | 3 | -2/+2 | ||
2022-12-30 | More assertions | 10 | -118/+186 | ||
2022-12-30 | Don't use zig's memcpy function | 1 | -1/+2 | ||
It is very slow | |||||
2022-12-30 | Use ArrayBitSet that passes by reference instead of value | 3 | -62/+588 | ||
2022-12-30 | Fix crash with `bun install <foo>` | 1 | -18/+26 | ||
2022-12-29 | Set CLOXEC | 1 | -1/+1 | ||
2022-12-29 | Fix broken hardlink installs | 1 | -1/+1 | ||
2022-12-29 | Fix OOB when deinit'ing dir walker | 1 | -4/+7 | ||
2022-12-29 | [node:crypto] 50x faster `createHash` | 1 | -42/+70 | ||
2022-12-29 | Introduce `Bun.CryptoHasher` | 15 | -195/+974 | ||
2022-12-29 | [node] Implement `process.uptime` and `process.umask` | 1 | -5/+36 | ||
2022-12-28 | Expose the rest of RIPEMD160 | 2 | -0/+37 | ||