Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-03 | Remove usages of std.x | 7 | -98/+75 | ||
2023-01-03 | [streams] speed up `Readable` in some cases (#1708) | 3 | -14/+140 | ||
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 | Create readme.md | 1 | -0/+10 | ||
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) | 5 | -95/+143 | ||
assorted clean-ups & fixes | |||||
2023-01-02 | make it work with homebrew zig | 1 | -1/+9 | ||
2023-01-02 | [internal] allow using zig from more directories | 1 | -5/+34 | ||
2023-01-02 | fix double `resolve()` in test (#1707) | 1 | -6/+6 | ||
also clean up `reject()` values | |||||
2023-01-02 | Support any `ArrayBufferView` in StringDecoder | 2 | -12/+22 | ||
2023-01-02 | implement `net.Socket` (#1701) | 3 | -3/+432 | ||
- 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 | Add buffer creation snippet | 1 | -0/+32 | ||
2023-01-02 | update node echo bench | 1 | -13/+55 | ||
2023-01-02 | Upgrade simdutf | 2 | -518/+720 | ||
Thanks @lemire | |||||
2023-01-02 | More instructions | 1 | -0/+54 | ||
2023-01-02 | Update macOS instructions | 1 | -50/+21 | ||
2023-01-02 | Auto-install and link webkit | 6 | -15/+35 | ||
2023-01-02 | fix lingering process by dead sockets (#1700) | 3 | -67/+179 | ||
`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 | 2 | -31/+11 | ||
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 | Add a test for empty chunks | 1 | -0/+41 | ||
2023-01-01 | Workaround https://github.com/ziglang/zig/issues/14148 | 1 | -2/+3 | ||
2022-12-31 | Update ffi.d.ts (#1694) | 1 | -1/+3 | ||
* Update ffi.d.ts Add "usize" and "callback", which are used in `README` but not typed here. * Update packages/bun-types/ffi.d.ts Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> | |||||
2022-12-31 | [jest] fix and improve hooks (#1689) | 4 | -8/+189 | ||
- wait for async hooks to complete before running tests - add support for `done(err)` callbacks in hooks fixes #1688 | |||||
2022-12-30 | [internal] Add flag to build bun for editor error reporting | 2 | -1/+9 | ||
2022-12-30 | Make `NamesIterator` safer | 2 | -9/+24 | ||
2022-12-30 | Statically link libatomic | 1 | -1/+1 | ||
2022-12-30 | Upgrade WebKit | 10 | -32/+34 | ||
2022-12-30 | More assertions | 10 | -118/+186 | ||
2022-12-30 | Don't use zig's memcpy function | 2 | -2/+3 | ||
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 | Update globals.d.ts | 1 | -1/+1 | ||
2022-12-29 | [node:crypto] 50x faster `createHash` | 2 | -44/+72 | ||
2022-12-29 | Introduce `Bun.CryptoHasher` | 19 | -206/+1142 | ||
2022-12-29 | [node] Implement `process.uptime` and `process.umask` | 3 | -5/+66 | ||