Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-02 | [fetch] Implement `Headers#getAll` and `Headers#getSetCookie()` | 7 | -73/+389 | ||
This matches Deno's behavior (get() combines, iterator preserves the order, set and append combine), but implements both the Cloudflare Workers `getAll()` and the potential standard `getSetCookie` function. The rationale for choosing both is to better support libraries which check for `getAll` and also because `getSetCookie` seems a little confusing (names are hard) This also makes `.toJSON` and JSON.stringify return an array for `Set-Cookie` | |||||
2022-12-02 | Add generic way to block on a promise | 3 | -18/+19 | ||
2022-12-02 | Close stdin earlier | 1 | -0/+9 | ||
2022-12-02 | Fix incorrect panic in spawnSync | 1 | -1/+1 | ||
2022-12-01 | Fix crash when macros return a Promise | 3 | -108/+145 | ||
2022-12-01 | Fix double free in .json() and optimize UTF16 -> json slightly | 2 | -30/+50 | ||
2022-12-01 | Remove file blob caching | 2 | -21/+1 | ||
2022-12-01 | [streams] Handle empty state | 1 | -0/+12 | ||
2022-12-01 | [bun bun] Fix crash in canary | 1 | -2/+2 | ||
2022-12-01 | [fetch] Implement `redirect: "manual"` | 1 | -0/+14 | ||
2022-12-01 | Fix timers keeping process alive unnecessarily | 1 | -6/+3 | ||
2022-12-01 | bun test `toStrictEqual` (#1568) | 7 | -46/+152 | ||
* toStrictEqual and bug fix in deepEqual * rebase Remove some dead bindings code * remove debugging test * canGetIndexQuickly for array holes * isStrict template Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-12-01 | [`bun:sqlite`] ~15% perf improvement to all() and get() | 1 | -79/+157 | ||
2022-12-01 | 3x faster `TextEncoder.prototype.encodeInto` | 3 | -23/+22 | ||
thanks to @Constellation for the tip | |||||
2022-12-01 | Include size of ArrayBuffer and others in GC timer scheduling | 1 | -1/+1 | ||
2022-12-01 | Increase sensitivity of GC timers | 1 | -2/+3 | ||
2022-12-01 | Reduce memory usage in Bun.serve() by up to 3x (#1569) | 10 | -8/+174 | ||
* Update WebKit * Use 5x less memory in Bun.serve() * Update Dockerfile.devcontainer * Update async-overhead.mjs Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-11-30 | formatting and remove comment | 1 | -13/+0 | ||
2022-11-30 | Fix console.log regression with emoji | 1 | -2/+2 | ||
2022-11-30 | Redirect imports to `"readable-stream"` -> `"node:stream"` | 1 | -1/+4 | ||
2022-11-30 | Accidentally deleted `prompt` as a result of the process.env changes | 2 | -7/+1 | ||
2022-11-29 | :scissors: | 5 | -626/+7 | ||
2022-11-29 | Remove some dead bindings code | 6 | -1394/+64 | ||
2022-11-29 | import everything from "bun" where possible | 42 | -288/+288 | ||
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 | 4 | -45/+206 | ||
cc @ThatOneBro | |||||
2022-11-28 | Fix hanging in FIFO streams | 1 | -1/+2 | ||
2022-11-28 | [internal] Add debug timer | 1 | -2/+3 | ||
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 | 2 | -28/+31 | ||
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 | fix extra indent | 1 | -0/+2 | ||