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 | 22 | -118/+800 | ||
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 | 161 | -739/+621 | ||
2022-11-28 | Make .toInt64 faster | 1 | -0/+8 | ||
2022-11-28 | Handle when the process already exited immediately | 3 | -38/+47 | ||
2022-11-28 | toHaveProperty and tests (#1558) | 8 | -118/+532 | ||
* toHaveProperty and tests * emoji tests | |||||
2022-11-28 | Fix failing spawn() and spawnSync() tests | 7 | -143/+317 | ||
cc @ThatOneBro | |||||
2022-11-28 | Update README.md | 1 | -1/+26 | ||
2022-11-28 | Update README.md | 1 | -5/+5 | ||
2022-11-28 | Add small section about profiling bun | 1 | -0/+171 | ||
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 | Add test for process | 1 | -3/+14 | ||
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 google fixture | 1 | -0/+16 | ||
2022-11-27 | Add missing v | 2 | -1/+5 | ||
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 | 2 | -3/+44 | ||
Fixes #455 Fixes #1016 | |||||
2022-11-27 | Fix failing buffer tests | 2 | -8/+14 | ||
2022-11-27 | Fix crash in console.log | 4 | -41/+88 | ||
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 | Add microbenchmark for console log | 1 | -0/+53 | ||
2022-11-27 | Add tests for latin1 supplemental chars | 1 | -13/+56 | ||
2022-11-27 | fix hanging test | 1 | -8/+13 | ||
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 | ||