Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-04 | [may revert later] Coerce Infinity to max int 64, -Infinity & NaN to min int64 | 1 | -2/+22 | ||
2022-12-03 | `process.stdout` and `process.stderr` | 2 | -9/+80 | ||
2022-12-02 | Add `AbortSignal.timeout` | 4 | -13/+29 | ||
2022-12-02 | matchers for less than and greater than (#1573) | 4 | -2/+65 | ||
* toBeGreaterThan with tests * toBeGreaterThanOrEqual and tests * toBeLessThan and toBeLessThanOrEqual with tests * expect types * switch expressions | |||||
2022-12-02 | Propagate reason in AbortSignal and reuse in ReadableStream.pipeTo | 6 | -12/+19 | ||
Similar to https://github.com/WebKit/WebKit/pull/7013 | |||||
2022-12-02 | Add some code I forgot to commit | 1 | -0/+4 | ||
2022-12-02 | Make cloning headers object faster | 3 | -38/+42 | ||
2022-12-02 | Make constructing headers from an existing headears faster | 1 | -0/+1 | ||
2022-12-02 | Throw if passing a header not named "set-cookie" to `getAll` | 1 | -1/+1 | ||
2022-12-02 | Remove `getSetCookie` | 1 | -1/+1 | ||
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-01 | Fix crash when macros return a Promise | 1 | -0/+14 | ||
2022-12-01 | Fix double free in .json() and optimize UTF16 -> json slightly | 1 | -0/+6 | ||
2022-12-01 | bun test `toStrictEqual` (#1568) | 6 | -45/+110 | ||
* 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 | Reduce memory usage in Bun.serve() by up to 3x (#1569) | 5 | -3/+35 | ||
* 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 | 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 | 9 | -14/+14 | ||
2022-11-28 | Make .toInt64 faster | 1 | -0/+8 | ||
2022-11-28 | toHaveProperty and tests (#1558) | 5 | -3/+128 | ||
* toHaveProperty and tests * emoji tests | |||||
2022-11-28 | Update JSEnvironmentVariableMap.cpp | 1 | -1/+1 | ||
2022-11-28 | Fix process.env and Bun.env object spread | 6 | -24/+107 | ||
Fixes https://github.com/oven-sh/bun/issues/1512 | |||||
2022-11-27 | Fix `console.log(process.env)` | 1 | -0/+6 | ||
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 | 1 | -22/+26 | ||
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 | 2 | -32/+27 | ||
2022-11-27 | remove leak | 1 | -5/+8 | ||
2022-11-27 | [console.log] Fix printing latin1 supplement characters at runtime | 4 | -15/+22 | ||
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 | 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 | 1 | -13/+15 | ||
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 | Faster UTF16 -> UTF8 and UTF8 -> UTF16 (#1552) | 4 | -0/+31063 | ||
* 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> |