Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-02 | Draw the owljarred/pg | 1 | -0/+8 | ||
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 | ||
2022-12-29 | [bun-types] Add missing `performance.timeOrigin` type | 1 | -0/+9 | ||
2022-12-28 | Fix devcontainer (tested) (#1680) | 2 | -3/+4 | ||
zls changes may be imprecise. | |||||
2022-12-28 | Expose the rest of RIPEMD160 | 3 | -1/+52 | ||
2022-12-28 | Implement `Bun.RIPEMD160` | 12 | -15/+503 | ||
`RIPEMD160` is used by node:crypto. | |||||
2022-12-28 | Use BoringSSL with patches from Electron | 10 | -5/+372 | ||
2022-12-28 | :scissors: | 1 | -7/+0 | ||
2022-12-28 | [WebSocket] Allow `http:` and `https:` protocols | 1 | -0/+31 | ||
See https://github.com/whatwg/websockets/pull/37 | |||||
2022-12-28 | [WebSocket] Implement `headers` support | 8 | -23/+204 | ||
Fixes https://github.com/oven-sh/bun/issues/1676 | |||||
2022-12-28 | Fix devcontainer (probably) | 1 | -21/+28 | ||
2022-12-28 | Fixes https://github.com/oven-sh/bun/issues/1677 | 2 | -21/+25 | ||
2022-12-28 | Workaround https://github.com/ziglang/zig/issues/14099 | 2 | -3/+15 | ||
2022-12-28 | Add `crypto` module from browserify | 2 | -1/+27959 | ||
2022-12-28 | Statically link atomic | 1 | -0/+1 | ||
2022-12-28 | Always bundle compiler rt | 1 | -1/+1 | ||
2022-12-28 | Move some code up | 4 | -17/+11 | ||