Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-30 | [wip internal] Introduce `bun.String` which wraps `WTF::String` and allows ↵jarred/make-strings-better | 19 | -118/+772 | ||
us to reuse them | |||||
2022-11-29 | :scissors: | 5 | -626/+7 | ||
2022-11-29 | Remove some dead bindings code | 7 | -1401/+69 | ||
2022-11-29 | import everything from "bun" where possible | 153 | -635/+594 | ||
2022-11-28 | Make .toInt64 faster | 1 | -0/+8 | ||
2022-11-28 | Handle when the process already exited immediately | 2 | -6/+7 | ||
2022-11-28 | toHaveProperty and tests (#1558) | 7 | -5/+200 | ||
* toHaveProperty and tests * emoji tests | |||||
2022-11-28 | Fix failing spawn() and spawnSync() tests | 5 | -47/+208 | ||
cc @ThatOneBro | |||||
2022-11-28 | Fix hanging in FIFO streams | 1 | -1/+2 | ||
2022-11-28 | [internal] Add debug timer | 2 | -2/+33 | ||
2022-11-28 | Ensure we report errors in controller.close | 1 | -1/+9 | ||
2022-11-28 | Update JSEnvironmentVariableMap.cpp | 1 | -1/+1 | ||
2022-11-28 | Allow overriding node:fs | 1 | -0/+9 | ||
2022-11-28 | Fix process.env and Bun.env object spread | 8 | -204/+127 | ||
Fixes https://github.com/oven-sh/bun/issues/1512 | |||||
2022-11-27 | Fix `console.log(process.env)` | 2 | -20/+27 | ||
2022-11-27 | Add missing v | 1 | -1/+1 | ||
Fixes https://github.com/oven-sh/bun/issues/1554 | |||||
2022-11-27 | Cleanup some of the encoding code | 3 | -35/+51 | ||
2022-11-27 | Fix handling `delete process.env.foo` | 1 | -1/+4 | ||
2022-11-27 | Don't make toJSON enumerable in process.env | 1 | -27/+2 | ||
2022-11-27 | Fix UTF16 bug in `await fetch().text()` | 1 | -11/+8 | ||
2022-11-27 | :scissors: dead code | 1 | -758/+0 | ||
2022-11-27 | Fix Buffer.toString("latin1") and make Buffer.toString("utf16le") faster | 1 | -3/+17 | ||
Fixes #455 Fixes #1016 | |||||
2022-11-27 | Fix failing buffer tests | 1 | -6/+12 | ||
2022-11-27 | Fix crash in console.log | 1 | -10/+13 | ||
2022-11-27 | Increase the max prototype count | 1 | -19/+30 | ||
2022-11-27 | Update bindings.cpp | 1 | -0/+2 | ||
2022-11-27 | [console.log] Remove extra indent | 1 | -1/+0 | ||
2022-11-27 | Handle more cases with printing objects | 5 | -35/+35 | ||
2022-11-27 | remove leak | 1 | -5/+8 | ||
2022-11-27 | don't start NetworkThread unless necessary | 2 | -3/+2 | ||
2022-11-27 | Fix `make headers` | 3 | -1/+4 | ||
2022-11-27 | fix extra indent | 1 | -0/+2 | ||
2022-11-27 | [console.log] Fix printing latin1 supplement characters at runtime | 6 | -37/+83 | ||
Fixes https://github.com/oven-sh/bun/issues/1031#issuecomment-1236092120 | |||||
2022-11-27 | [console.log] Improve Object formatting and error handling | 3 | -182/+399 | ||
2022-11-27 | `[console.log]` log Proxy objects | 1 | -0/+7 | ||
2022-11-27 | [console.log] Treat `GlobalObject` like `Object` | 1 | -1/+1 | ||
2022-11-27 | [console.log] Treat `ArrayBuffer` like `Uint8Array` | 1 | -0/+1 | ||
2022-11-27 | [console.log] Fix logging `Symbol` values | 1 | -3/+2 | ||
2022-11-27 | Now that utf16 is fast we can just count the length instead of re-allocating | 1 | -5/+1 | ||
2022-11-27 | Remove extra indent | 1 | -2/+0 | ||
2022-11-27 | Fix strangeness with Bun.env keys | 1 | -9/+10 | ||
2022-11-27 | Fix crash in Headers.prototype.count | 1 | -2/+5 | ||
2022-11-27 | Fix crash in OnigurumaRegExp getters | 1 | -0/+6 | ||
2022-11-26 | Fix build issue | 2 | -15/+17 | ||
2022-11-26 | [bun:sqlite] Fix bug with latin1 supplemental characters | 1 | -2/+5 | ||
Fixes https://github.com/oven-sh/bun/issues/1553 | |||||
2022-11-26 | Update mimalloc | 1 | -0/+0 | ||
2022-11-26 | Update string_immutable.zig | 1 | -1/+1 | ||
2022-11-26 | Faster UTF16 -> UTF8 and UTF8 -> UTF16 (#1552) | 7 | -1/+31138 | ||
* Fix freezing test * Add SIMDUTF * More micro bench snippets * Update .gitattributes * Update .gitattributes Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-26 | Make HTTP status text more consistent with other HTTP servers | 1 | -2/+73 | ||
2022-11-26 | Fix 0 | 1 | -2/+4 | ||